.hero-capoeira {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

#video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
}

.hero-capoeira::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content-capoeira h1 {
    font-size: 4.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-content-capoeira p {
    font-size: 1.6em;
    font-weight: 300;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* --- Estilos Gerais de Seção --- */
.titulo-secao {
    text-align: center;
    font-size: 2.5em;
    font-weight: 600;
    color: #145A32;
    margin-bottom: 50px;
}

/* --- Seção de Introdução --- */
.intro-bale {
    padding: 80px 5%;
    background-color: #F9F5EC;
}
.container-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.container-intro h2 {
    font-size: 2.2em;
    color: #4E342E;
    margin-bottom: 20px;
}
.container-intro p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

/* --- Seção de Benefícios --- */
.beneficios-bale {
    padding: 80px 5%;
    background-color: #F9F5EC;
}
.container-beneficios {
    max-width: 1200px;
    margin: 0 auto;
}
.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.card-beneficio {
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-beneficio:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.card-beneficio i {
    font-size: 3em;
    color: #E67E22;
    margin-bottom: 20px;
}
.card-beneficio h3 {
    font-size: 1.4em;
    color: #4E342E;
    margin-bottom: 10px;
}
.card-beneficio p {
    color: #333;
    line-height: 1.6;
}

/* --- Galeria com Efeito 3D --- */
.galeria-bale {
    padding: 80px 5%;
    background-color: #fff;
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.foto-galeria {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.foto-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.foto-galeria:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) scale(1.05);
}

/* --- Seção de Informações --- */
.info-bale {
    padding: 80px 5%;
    background: linear-gradient(to right, #F9F5EC, #fdf6f9);
    color: #000;
}
.container-info {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.info-texto {
    flex: 2;
}
.info-texto h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #145A32;
}
.info-texto p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 10px;
}
.info-cta {
    flex: 1;
    text-align: center;
}
.botao-principal {
    background-color: #F1C40F;
    color: #000; 
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    display: inline-block;
}
.botao-principal:hover {
    background-color: #E67E22;
    color: #fff;
    transform: translateY(-3px);
}

/* --- Animação de Fade-in --- */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =======================================
   RESPONSIVIDADE
======================================= */

/* Notebook */
@media (max-width: 1200px) {

    .hero-content-capoeira h1 {
        font-size: 3.8rem;
    }

    .hero-content-capoeira p {
        font-size: 1.4rem;
    }

    .container-info {
        max-width: 95%;
    }

}

/* Tablet */
@media (max-width: 992px) {

    /* Hero */

    .hero-capoeira {
        height: 65vh;
        padding: 20px;
    }

    .hero-content-capoeira h1 {
        font-size: 3rem;
    }

    .hero-content-capoeira p {
        font-size: 1.3rem;
    }

    /* Títulos */

    .titulo-secao {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .container-intro h2,
    .info-texto h2 {
        font-size: 2rem;
    }

    /* Espaçamentos */

    .intro-bale,
    .beneficios-bale,
    .galeria-bale,
    .info-bale {
        padding: 60px 5%;
    }

    /* Informações */

    .container-info {
        flex-direction: column;
        text-align: center;
    }

    .info-texto {
        width: 100%;
    }

    .info-cta {
        width: 100%;
    }

}

/* Celular */
@media (max-width: 768px) {

    /* Hero */

    .hero-capoeira {
        height: 55vh;
    }

    .hero-content-capoeira h1 {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .hero-content-capoeira p {
        font-size: 1.1rem;
        margin-top: 10px;
    }

    /* Títulos */

    .titulo-secao {
        font-size: 1.9rem;
    }

    .container-intro h2,
    .info-texto h2 {
        font-size: 1.8rem;
    }

    /* Textos */

    .container-intro p,
    .info-texto p,
    .card-beneficio p {
        font-size: 1rem;
    }

    /* Benefícios */

    .grid-beneficios {
        grid-template-columns: 1fr;
    }

    .card-beneficio {
        padding: 30px 20px;
    }

    /* Galeria */

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .foto-galeria:hover {
        transform: scale(1.03);
    }

    /* Botão */

    .botao-principal {
        padding: 14px 30px;
        font-size: 1rem;
    }

}

/* Celulares pequenos */
@media (max-width: 480px) {

    .hero-capoeira {
        height: 50vh;
    }

    .hero-content-capoeira h1 {
        font-size: 1.8rem;
    }

    .hero-content-capoeira p {
        font-size: 1rem;
    }

    .titulo-secao {
        font-size: 1.6rem;
    }

    .container-intro h2,
    .info-texto h2 {
        font-size: 1.5rem;
    }

    .container-intro p,
    .info-texto p,
    .card-beneficio p {
        font-size: .95rem;
        line-height: 1.7;
    }

    .card-beneficio {
        padding: 25px 18px;
    }

    .card-beneficio i {
        font-size: 2.5rem;
    }

    .card-beneficio h3 {
        font-size: 1.2rem;
    }

    .botao-principal {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
    }

}