* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0e27;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    line-height: 1.6;
}
 /* ==== HEADER / NAVEGAÇÃO ===*/

header{
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1428 100%);
    padding: 0;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.logo{
    font-size: 2rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
.nav-links{
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.5rem;
}

.nav-links a:hover {
    color: #ff0000;
    border-bottom-color: #ff0000;
}
 /* ==== HEADER / NAVEGAÇÃO ===*/

 .hero{
    background-image: url('banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
 }

 .hero-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
 }

 .hero h2{
    font-size: 3rem;
    color: #fff;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }

 .hero p{
    font-size: 1.3rem;
    color: #fff;
    max-width: 500px;
 }

 .btn {
    background-color: #000;
    color: #ff0000;
    padding: 1rem 2.5rem;
    border: 2px solid #ff0000;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
 }

 .btn:hover {
    background-color: #ff0000;
    color: #000;
    transform: scale(1.05);
}

/* === HEROS SESSION === */

.personagens{
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
 .personagens h2{
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff0000;
 }

 .cards-container{
    display: flex;
     flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
 }

 .card{
    background: #1a1f3a;
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #000;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card-info h3 {
    font-size: 1.4rem;
    color: #ff0000;
}

.personagem-tipo {
    font-size: 0.9rem;
    color: #888;
    font-weight: bold;
}

.descricao {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

/* ===SESSAO SOBRE=== */

.sobre{
    background:linear-gradient(135deg, #1a1f3a 0%, #0f1428 100%) ;
    padding: 4rem 2rem;
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.sobre-text {
    flex: 1;
    min-width: 300px;
}

.sobre-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ff0000;
}

.sobre-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.8;
}

.sobre-stats {
    display: flex;
    gap: 2rem;
    flex: 1;
    min-width: 300px;
    justify-content: space-around;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff0000;
    font-weight: bold;
}

.stat p {
    font-size: 0.95rem;
    color: #999;
}

/* ===== FOOTER ===== */

footer {
    background-color: #000;
    text-align: center;
    padding: 2rem;
    color: #999;
    border-top: 2px solid #ff0000;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .personagens h2 {
        font-size: 1.8rem;
    }

    .cards-container {
        gap: 1.5rem;
    }

    .card {
        width: 100%;
        max-width: 300px;
    }

    .sobre-container {
        flex-direction: column;
        gap: 2rem;
    }

    .sobre-stats {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
        min-height: 40vh;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .personagens {
        padding: 2rem 1rem;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .sobre-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
