*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
}



:root{

    --primary:#E63946;
    --secondary:#0D1B2A;

    --dark:#0B0B0B;
    --dark-light:#121212;

    --white:#FFFFFF;
    --gray:#A0A0A0;

}



.container{
    width:min(1200px,90%);
    margin:auto;
}



.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(15px);

    background:rgba(0,0,0,.4);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

    width:100%;
}


.logo{

    display:flex;

    align-items:center;

    gap:15px;

    flex-shrink:0;

    margin-right:60px;

    text-decoration:none;

    color:white;
}


.logo img{

    width:50px;
    height:50px;

    object-fit:contain;
}

.logo-text h2{

    font-size:1.2rem;

    color:white;

    font-weight:800;
}

.logo-text span{

    font-size:.8rem;

    color:#cfcfcf;
}



.nav-links{

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:2.2rem;

    list-style:none;

    margin-left:auto;

    transform:translateX(-25px);
}

.nav-links a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

    display:flex;

    z-index:9999;
}

.nav-links a:hover{

    color:var(--primary);
}



.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    padding-top:120px;

    background:
    linear-gradient(
        135deg,
        #0b0b0b,
        #151515
    );
}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;
}



.hero-text{

    max-width:600px;
}

.hero-tag{

    display:inline-flex;

    align-items:center;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.1);

    margin-bottom:25px;
}

.hero-text h1{

    font-size:clamp(3rem,6vw,5.5rem);

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;
}

.hero-text h1 span{

    color:var(--primary);
}

.hero-text p{

    color:#d0d0d0;

    font-size:1.1rem;

    line-height:1.8;

    margin-bottom:35px;
}


.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:15px;
}

.btn{

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;
}

.btn-primary{

    background:var(--primary);

    color:white;

    box-shadow:
    0 10px 30px rgba(230,57,70,.35);
}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 40px rgba(230,57,70,.45);
}

.btn-outline{

    border:1px solid white;

    color:white;
}

.btn-outline:hover{

    background:white;

    color:black;
}


.hero-image{

    display:flex;

    justify-content:center;
}

.hero-image img{

    width:100%;

    max-width:550px;

    border-radius:30px;

    object-fit:cover;

    box-shadow:
    0 25px 70px rgba(0,0,0,.5);

    animation:
    heroFloat 5s ease-in-out infinite;
}


.hero-stats{

    display:flex;

    gap:50px;

    margin-top:50px;
}

.stat h3{

    color:var(--primary);

    font-size:2rem;

    margin-bottom:5px;
}

.stat span{

    color:#cfcfcf;
}


@keyframes heroFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }
}


.sobre{

    min-height:100vh;

    padding:120px 0;

    background:#111;
}

.sobre h2{

    text-align:center;

    font-size:3rem;

    margin-bottom:20px;
}

.sobre p{

    text-align:center;

    color:#d0d0d0;

    max-width:700px;

    margin:auto;
}


.about{

    padding:120px 0;

    background:#111;
}

.section-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 80px;
}

.section-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(230,57,70,.1);

    border:1px solid rgba(230,57,70,.2);

    color:var(--primary);

    margin-bottom:20px;
}

.section-header h2{

    font-size:clamp(2rem,5vw,3.5rem);

    line-height:1.2;
}


.about-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}


.about-image img{

    width:100%;

    border-radius:25px;

    object-fit:cover;

    box-shadow:
    0 20px 60px rgba(0,0,0,.4);
}


.about-text p{

    color:#d0d0d0;

    line-height:1.9;

    margin-bottom:35px;
}


.about-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:40px;
}

.item{

    background:#181818;

    padding:18px;

    border-radius:15px;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s;
}

.item:hover{

    transform:translateY(-5px);

    border-color:var(--primary);
}


.about-stats{

    margin-top:100px;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.about-stat{

    background:#181818;

    padding:35px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);
}

.about-stat h3{

    color:var(--primary);

    font-size:2.5rem;

    margin-bottom:10px;
}

.about-stat span{

    color:#cfcfcf;
}

.card-icon{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        rgba(230,57,70,.15),
        rgba(230,57,70,.05)
    );

    border:
    1px solid rgba(230,57,70,.2);

    margin-bottom:25px;
}

.card-icon i{

    font-size:2rem;

    color:var(--primary);

    transition:.4s;
}

.modalidade-card:hover .card-icon i{

    transform:scale(1.15);
}


.modalidades{

    padding:120px 0;

    background:#0f0f0f;
}

.modalidades-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:70px;
}

.modalidade-card{

    background:#181818;

    padding:35px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.05);

    transition:.4s;

    overflow:hidden;
}

.modalidade-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:
    0 20px 50px rgba(0,0,0,.4);
}

.modalidade-card h3{

    margin-bottom:15px;

    font-size:1.5rem;

    font-weight:700;
}

.modalidade-card p{

    color:#cfcfcf;

    line-height:1.7;
}


.toggle-btn{

    margin-top:25px;

    padding:12px 24px;

    border:none;

    border-radius:50px;

    background:var(--primary);

    color:white;

    cursor:pointer;

    font-weight:600;

    transition:.3s;
}

.toggle-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(230,57,70,.3);
}


.card-details{

    max-height:0;

    overflow:hidden;

    transition:.5s ease;

    margin-top:15px;
}

.card-details.active{

    max-height:250px;
}


.estrutura{

    padding:120px 0;

    background:#111;
}

.estrutura-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:25px;
}

.estrutura-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    height:350px;

    cursor:pointer;
}

.estrutura-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.7s;
}

.estrutura-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );

    transition:.4s;
}

.estrutura-overlay h3{

    font-size:1.5rem;

    margin-bottom:10px;
}

.estrutura-overlay p{

    color:#d0d0d0;
}

.estrutura-card:hover img{

    transform:scale(1.1);
}

.estrutura-card:hover .estrutura-overlay{

    background:
    linear-gradient(
        transparent,
        rgba(230,57,70,.8)
    );
}


.planos{

    padding:120px 0;

    background:#0b0b0b;
}

.planos-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.plano-card{

    background:#181818;

    padding:45px 35px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.05);

    text-align:center;

    transition:.4s;

    position:relative;
}

.plano-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);
}

.plano-card h3{

    margin-bottom:20px;

    font-size:1.8rem;
}

.preco{

    font-size:4rem;

    font-weight:800;

    color:var(--primary);

    margin-bottom:10px;
}

.preco span{

    font-size:1.5rem;
}

.plano-card p{

    color:#cfcfcf;

    margin-bottom:30px;
}

.plano-card ul{

    list-style:none;

    text-align:left;

    margin-bottom:35px;
}

.plano-card ul li{

    margin-bottom:15px;

    color:#d0d0d0;
}

.plano-card ul i{

    color:var(--primary);

    margin-right:10px;
}

.destaque{

    border:2px solid var(--primary);

    transform:scale(1.05);
}

.badge{

    position:absolute;

    top:-15px;
    left:50%;

    transform:translateX(-50%);

    background:var(--primary);

    color:white;

    padding:10px 18px;

    border-radius:50px;

    font-size:.8rem;

    font-weight:700;
}


.beneficios{

    padding:120px 0;

    background:#111;
}

.beneficios-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:25px;
}

.beneficio-card{

    background:#181818;

    padding:35px;

    border-radius:25px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.4s;
}

.beneficio-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:
    0 20px 50px rgba(0,0,0,.3);
}

.beneficio-card i{

    font-size:2.5rem;

    color:var(--primary);

    margin-bottom:20px;
}

.beneficio-card h3{

    margin-bottom:15px;

    font-size:1.3rem;
}

.beneficio-card p{

    color:#cfcfcf;

    line-height:1.7;
}


.depoimentos{

    padding:120px 0;

    background:#0b0b0b;
}

.depoimentos-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:30px;
}

.depoimento-card{

    background:#181818;

    padding:35px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.05);

    transition:.4s;
}

.depoimento-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);
}

.aluno{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;
}

.aluno img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--primary);
}

.aluno h3{

    margin-bottom:5px;
}

.aluno span{

    color:#cfcfcf;

    font-size:.9rem;
}

.stars{

    display:flex;

    gap:5px;

    margin-bottom:20px;
}

.stars i{

    color:#FFD700;
}

.depoimento-card p{

    color:#d0d0d0;

    line-height:1.8;

    font-style:italic;
}


.equipe{

    padding:120px 0;

    background:#111;
}

.equipe .section-header p{

    max-width:700px;

    margin:20px auto 0;

    color:#cfcfcf;

    line-height:1.8;
}

.equipe-banner{

    position:relative;

    margin-top:60px;

    border-radius:30px;

    overflow:hidden;

    height:600px;
}

.equipe-banner img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.8s;
}

.equipe-banner:hover img{

    transform:scale(1.05);
}

.equipe-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:50px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.overlay-content{

    max-width:600px;
}

.overlay-content h3{

    font-size:2rem;

    margin-bottom:15px;

    color:white;
}

.overlay-content p{

    color:#d0d0d0;

    line-height:1.8;
}


.agendamento{

    padding:120px 0;

    background:#0b0b0b;
}

.agendamento-wrapper{

    max-width:900px;

    margin:auto;
}

#agendamentoForm{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;
}

.input-group{

    width:100%;
}

.input-group.full{

    grid-column:1 / -1;
}

#agendamentoForm input,
#agendamentoForm select,
#agendamentoForm textarea{

    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:#181818;

    color:white;

    font-size:1rem;

    outline:none;

    border:1px solid transparent;

    transition:.3s;
}

#agendamentoForm input:focus,
#agendamentoForm select:focus,
#agendamentoForm textarea:focus{

    border-color:var(--primary);
}

#agendamentoForm button{

    grid-column:1 / -1;

    justify-self:center;

    margin-top:20px;
}


.localizacao{

    padding:120px 0;

    background:#111;
}

.localizacao-content{

    display:grid;

    grid-template-columns:400px 1fr;

    gap:40px;

    align-items:stretch;
}

.localizacao-info{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.info-card{

    background:#181818;

    padding:25px;

    border-radius:20px;

    display:flex;

    align-items:flex-start;

    gap:20px;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s;
}

.info-card:hover{

    border-color:var(--primary);

    transform:translateY(-5px);
}

.info-card i{

    font-size:1.8rem;

    color:var(--primary);

    min-width:30px;
}

.info-card h3{

    margin-bottom:8px;
}

.info-card p{

    color:#cfcfcf;

    line-height:1.7;
}

.mapa{

    border-radius:25px;

    overflow:hidden;

    min-height:500px;

    border:1px solid rgba(255,255,255,.05);
}

.mapa iframe{

    width:100%;
    height:100%;

    border:none;

    min-height:500px;
}


.contato{

    padding:120px 0;

    background:#0b0b0b;
}

.contato-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.contato-card{

    background:#181818;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.4s;
}

.contato-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:
    0 20px 50px rgba(0,0,0,.3);
}

.contato-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        rgba(230,57,70,.15),
        rgba(230,57,70,.05)
    );

    border:1px solid rgba(230,57,70,.2);
}

.contato-icon i{

    font-size:2rem;

    color:var(--primary);
}

.contato-card h3{

    margin-bottom:12px;

    font-size:1.4rem;
}

.contato-card p{

    color:#cfcfcf;

    margin-bottom:20px;

    line-height:1.6;
}

.contato-card a{

    color:var(--primary);

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.contato-card a:hover{

    opacity:.8;
}


.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    width:70px;
    height:70px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#25D366;

    color:white;

    font-size:2rem;

    text-decoration:none;

    z-index:999;

    box-shadow:
    0 10px 30px rgba(37,211,102,.4);

    transition:.4s;
}


.whatsapp-float::before{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    background:#25D366;

    z-index:-1;

    animation:
    pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover{

    transform:
    translateY(-8px)
    scale(1.05);
}

@keyframes pulseWhatsapp{

    0%{

        transform:scale(1);

        opacity:.7;
    }

    70%{

        transform:scale(1.6);

        opacity:0;
    }

    100%{

        opacity:0;
    }
}


.footer{

    background:#080808;

    border-top:1px solid rgba(255,255,255,.05);

    padding-top:80px;
}

.footer-content{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:50px;
}


.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;
}

.footer-logo img{

    width:60px;

    height:60px;

    object-fit:contain;
}

.footer-logo h3{

    color:white;

    margin-bottom:5px;
}

.footer-logo span{

    color:#cfcfcf;

    font-size:.9rem;
}

.footer-column p{

    color:#bdbdbd;

    line-height:1.8;
}


.footer-column h4{

    margin-bottom:20px;

    color:white;
}


.footer-column ul{

    list-style:none;
}

.footer-column ul li{

    margin-bottom:12px;

    color:#cfcfcf;
}

.footer-column ul li a{

    text-decoration:none;

    color:#cfcfcf;

    transition:.3s;
}

.footer-column ul li a:hover{

    color:var(--primary);
}


.footer-social{

    display:flex;

    gap:12px;
}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#181818;

    color:white;

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-5px);
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.05);

    padding:25px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;
}

.footer-bottom p{

    color:#a0a0a0;
}

.developer-link{

    display:flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    color:var(--primary);

    font-weight:700;

    transition:.3s;
}

.dev-icon{

    font-size:1.1rem;

    font-weight:800;
    
}

.developer-link:hover{

    transform:translateY(-2px);

    opacity:.85;
}


.hamburger{

    display:none;

    flex-direction:column;

    cursor:pointer;

    gap:6px;

    margin-right:20px;
}

.hamburger span{

    width:28px;

    height:3px;

    background:white;

    border-radius:10px;

    transition:.3s;
}

.hamburger.open span:nth-child(1){

    transform:
    rotate(45deg)
    translate(6px,6px);

}

.hamburger.open span:nth-child(2){

    opacity:0;

}

.hamburger.open span:nth-child(3){

    transform:
    rotate(-45deg)
    translate(6px,-6px);

}