/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    display:block;
    max-width:100%;
}



/* =====================================================
   VARIÁVEIS
===================================================== */

:root{

    --white:#FFFFFF;
    --black:#000000;

    --overlay:rgba(0,0,0,.43);

    --transition:.35s ease;

    --container:1400px;

}


/* =====================================================
   HEADER
===================================================== */

header{

    position:absolute; /*position:fixed; <-para menu ficar sempre ou -> scrollou saiu position:absolute;  */

    top:0;
    left:0;

    width:100%;

    z-index:999;

    display:flex;

    flex-direction:column;

    align-items:center;

    padding-top:40px;

    transition:.4s;

}

/* classe usada futuramente no JS */

header.scrolled{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(15px);

    padding:18px 0;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

header.scrolled a{

    color:#222;

}

header.scrolled img{

    filter:invert(1);

}


/* =====================================================
   LOGO
===================================================== */

.logo{

    margin-bottom:28px;

}

.logo img{

    width:185px;

    transition:.4s;

}


/* =====================================================
   MENU
===================================================== */

nav ul{

    display:flex;
    
    gap:42px;

}

nav a{

    color:rgb(255, 255, 255);

    font-size:15px;

    font-weight:400;

    letter-spacing:.5px;

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:1px;

    background:white;

    transition:.35s;

}

nav a:hover{

    opacity:.8;

}

nav a:hover::after{

    width:100%;

}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* =====================================================
   CARROSSEL DE FUNDO (SLIDER)
===================================================== */

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeSlider 25s infinite;
}

.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 5s; }
.hero-slider .slide:nth-child(3) { animation-delay: 10s; }
.hero-slider .slide:nth-child(4) { animation-delay: 15s; }
.hero-slider .slide:nth-child(5) { animation-delay: 20s; }

@keyframes fadeSlider {
    0% { opacity: 0; }
    8% { opacity: 1; }
    20% { opacity: 1; }
    28% { opacity: 0; }
    100% { opacity: 0; }
}

/* =====================================================
   OVERLAY
===================================================== */

.overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
    z-index: 2;
}

/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 130px;
    animation: fadeUp 1.2s ease;
}

/* =====================================================
   TITULO
===================================================== */

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    color: white;
    font-size: 102px;
    font-weight: 500;
    line-height: .95;
    margin-bottom: 28px;
}

/* =====================================================
   SUBTITULO
===================================================== */

.hero p {
    color: white;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .5px;
    line-height: 1.4;
    margin-bottom: 42px;
}

/* =====================================================
   BOTÃO
===================================================== */

.btn-principal {
    width: 290px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, .95);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: white;
    transition: .35s;
    margin-bottom: 30px;
}

.btn-principal:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

/* =====================================================
   DESTAQUES INFERIORES (COM ÍCONES BOOTSTRAP)
===================================================== */

.hero-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-highlights span {
    color: white;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-highlights i {
    font-size: 15px;
}

.hero-highlights .separator {
    opacity: 0.6;
}

/* Oculta os pontos separadores no celular para evitar quebras ruins */
@media (max-width: 768px) {
    .hero-highlights .separator {
        display: none;
    }
}


/* =====================================================
   SECTIONS
===================================================== */

section{

    width:100%;

}

#experiencia,
#aulas,
#comunidade,
#depoimentos,
#contato{

    min-height:100vh;

}


/* =====================================================
   ANIMAÇÕES
===================================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:#8a8a8a;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#666;

}


/* =====================================================
   SELEÇÃO
===================================================== */

::selection{

    background:#D9C2A4;

    color:white;

}


/* =====================================================
   PREPARAÇÃO PARA O RESTANTE DO SITE
===================================================== */

.container{

    width:92%;

    max-width:1400px;

    margin:auto;

}

.titulo{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    font-weight:500;

}

.subtitulo{

    font-size:18px;

    font-weight:300;

    line-height:1.8;

}

/* =====================================================
   EXPERIÊNCIA
===================================================== */

.experiencia{

    position:relative;

    z-index:10;

    background:#f4f2ef;

    margin-top:-80px;

    border-top-left-radius:70px;
    border-top-right-radius:70px;

    min-height:900px;

    display:flex;

    justify-content:center;

    padding-top:120px;

}


/* =====================================================
   CONTAINER EXPERIÊNCIA
===================================================== */

.experiencia .container{

    max-width:1200px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}


/* =====================================================
   TÍTULO
===================================================== */

.experiencia h2{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    font-weight:500;

    color:#1f1717;

    max-width:1100px;

    line-height:1.1;

    margin-bottom:25px;

}


/* =====================================================
   TEXTO
===================================================== */

.experiencia p{

    max-width:1040px;

    font-size:18px;

    line-height:1.4;

    font-weight:300;

    color:#766f6f;

    margin-bottom:65px;

}


/* =====================================================
   BOTÃO
===================================================== */

.btn-dark{

    width:340px;

    height:64px;

    border:3px solid #1d1414;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    color:#1d1414;

    transition:.35s;

}


.btn-dark:hover{

    background:#1d1414;

    color:white;

    transform:translateY(-2px);

}

/* =====================================================
                    RESULTADOS
===================================================== */

.resultados{

    background:#F4F2EF;

    padding:120px 0;

}

.resultados h2{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:74px;

    font-weight:500;

    color:#1F1717;

    margin-bottom:25px;

}

.resultados .descricao{

    text-align:center;

    color:#6f6969;

    font-size:19px;

    line-height:1.7;

    margin-bottom:70px;

}

/* ================= CARDS ================= */

.cards-resultados{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:32px;

}

/* ================= CARD ================= */

.resultado-card{

    display:flex;

    flex-direction:column;

}

/* ================= IMAGEM ================= */

.card-image{

    width:100%;

    height:230px;

    background:#000;

    border-radius:2px;

    margin-bottom:25px;

}

.card-imageForca {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 25px;
}

/* ================= INFORMAÇÕES ================= */

.info{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

/* ================= ÍCONES ================= */

.icone{

    width:62px;

    height:62px;

    border-radius:50%;

    background:#DDD3C8;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.icone i {
    font-size: 28px;
    color: #000;
}

.icone img{

    width:64px;

    opacity:.82;

}

/* ================= TÍTULO ================= */

.info h3{

    font-family:'Cormorant Garamond',serif;

    font-size:24px;

    font-weight:500;

    color:#231b1b;

    margin-bottom:8px;

}

/* ================= TEXTO ================= */

.info p{

    color:#6F6969;

    line-height:1.7;

    font-size:16px;

}

/* =====================================================
                    DIFERENCIAIS
===================================================== */

.diferenciais{

    background:#F4F2EF;

    padding:120px 0 150px;

    border-bottom-left-radius:70px;
    border-bottom-right-radius:70px;

}

.diferenciais h2{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:76px;

    font-weight:500;

    color:#1F1717;

    line-height:1.05;

}

/* ================= LINHA ================= */

.linha-titulo{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    margin:28px 0 70px;

}

.linha-titulo span{

    width:95px;

    height:1px;

    background:#CFC5B8;

}

.ponto{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#CFC5B8;

}

/* ================= GRID ================= */

.cards-diferenciais{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/* ================= CARD ================= */

.diferencial-card{

    background:white;

    border-radius:10px;

    overflow:visible;

    position:relative;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.diferencial-card:hover{

    transform:translateY(-8px);

}

/* ================= ÍCONE ================= */

.icone-topo{

    position:absolute;

    left:50%;

    top:-58px;

    transform:translateX(-50%);

    width:108px;

    height:108px;

    border-radius:50%;

    background:#B8AB9B;

    display:flex;

    align-items:center;

    justify-content:center;

    border:6px solid #F4F2EF;

}

.icone-topo i {
    font-size: 32px;
    color: #ffffff;
}

.icone-topo img{

    width:48px;

}

/* ================= IMAGEM ================= */

.diferencial-card .card-imageDiferencial{

    margin-top:58px;

    width:100%;

    object-fit: cover;

    height:240px;


}

/* ================= TEXTO ================= */

.texto{

    padding:28px;

}

.texto h3{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    font-weight:500;

    color:#231B1B;

    margin-bottom:12px;

}

.texto p{

    font-size:16px;

    line-height:1.7;

    color:#6F6969;

}

/* =====================================================
                    CAMILA
===================================================== */

.camila{

    display:grid;
    grid-template-columns:40% 60%;

    background:#F4F2EF;

    height:620px;

    overflow:hidden;

}

/* ===================================================== */

.camila-left{

    display:flex;
    justify-content:center;
    align-items:center;

    padding:55px 50px;

}

/* ===================================================== */

.conteudo-camila{

    max-width:430px;

}

/* ===================================================== */

.conteudo-camila h2{

    font-family:'Cormorant Garamond', serif;

    font-size:58px;

    font-weight:500;

    color:#1F1717;

    line-height:1.05;

    margin-bottom:18px;

}

/* ===================================================== */

.linha{

    width:55px;
    height:2px;

    background:#D3C7B9;

    margin-bottom:28px;

}

/* ===================================================== */

.conteudo-camila p{

    font-size:16px;

    line-height:1.8;

    color:#3F3F3F;

    font-weight:300;

    margin-bottom:22px;

}

/* ===================================================== */

.btn-historia{

    margin-top:25px;

    width:320px;

    height:54px;

    border-radius:10px;

    background:#D8C9B8;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:18px;

    font-size:18px;

    color:#2B2522;

    transition:.35s;

}

.btn-historia:hover{

    background:#CDB8A2;

    transform:translateY(-2px);

}

.btn-historia span{

    font-size:28px;

    transition:.35s;

}

.btn-historia:hover span{

    transform:translateX(6px);

}

/* ===================================================== */

.camila-right{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    overflow:hidden;

}

/* ===================================================== */

.foto-camila{

    width:100%;
    height:620px;

    object-fit:cover;

    object-position:center center;

    display:block;

}

/* =====================================================
                    AULAS
===================================================== */

.aulas{

    background:#F4F2EF;

    padding:90px 0;

}

.subtitulo-aulas{

    display:block;

    text-align:center;

    color:#A68F78;

    font-size:16px;

    letter-spacing:4px;

}

.linha-pequena{

    width:55px;

    height:2px;

    background:#D8C9B8;

    margin:18px auto 28px;

}

.aulas h2{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    font-weight:500;

    color:#1F1717;

    margin-bottom:25px;

}

.descricao-aulas{

    text-align:center;

    color:#4D4D4D;

    font-size:18px;

    line-height:1.8;

    margin-bottom:60px;

}

/* ===================================================== */

.cards-aulas{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

/* ===================================================== */

.card-aula{

    background:#FAF9F7;

    border-radius:14px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

/* ===================================================== */

.numero{

    width:48px;

    height:48px;

    border:2px solid #BBA995;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    color:#A68F78;

    font-size:22px;

    font-family:'Cormorant Garamond',serif;

}

.card-aula h3{

    text-align:center;

    margin-top:24px;

    font-family:'Cormorant Garamond',serif;

    font-size:50px;

    font-weight:500;

    color:#1F1717;

}

.linha-card{

    width:50px;

    height:2px;

    background:#CDB8A2;

    margin:18px auto;

}

.texto-card{

    text-align:center;

    font-size:17px;

    color:#555;

    margin-bottom:30px;

    line-height:1.7;

}

/* ===================================================== */

.card-aula ul{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.card-aula li{

    position:relative;

    padding-left:34px;

    color:#555;

    line-height:1.6;

    font-size:17px;

}

.card-aula li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:1px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#B8AB9B;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

}

.rodape-aulas{

    text-align:center;

    margin-top:45px;

    color:#555;

    font-size:17px;

    line-height:1.8;

}

/* =====================================================
                    DEPOIMENTOS
===================================================== */

.depoimentos{

    background:#F4F2EF;

    padding:90px 0 110px;

    overflow:hidden;

}

.depoimentos h2{

    text-align:center;

    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    font-weight:500;

    color:#1F1717;

    margin-bottom:20px;

}

.texto-depoimentos{

    text-align:center;

    color:#565656;

    font-size:18px;

    line-height:1.7;

    margin-top:30px;

    margin-bottom:55px;

}

/* ===================================================== */

.carousel-wrapper{

    position:relative;

    display:flex;

    align-items:center;

}

.carousel{

    display:flex;

    gap:18px;

    overflow:hidden;

    scroll-behavior:smooth;

    width:100%;

}

/* ===================================================== */

.depoimento-card{

    flex:0 0 250px;

    background:#FAF9F7;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

}

.depoimento-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

/* ===================================================== */

.video-container{

    position:relative;

    width:100%;

    height:195px;

    background:#000;

}

.video-container video{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/* ===================================================== */

.play-btn{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:56px;

    height:56px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.9);

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(5px);

    color:white;

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}

.play-btn:hover{

    transform:translate(-50%,-50%) scale(1.1);

    background:rgba(255,255,255,.25);

}

/* ===================================================== */

.avaliacao{

    text-align:center;

    color:#BCA68E;

    font-size:22px;

    margin-top:18px;

    letter-spacing:2px;

}

.frase{

    padding:18px 20px;

    text-align:center;

    font-size:16px;

    color:#444;

    line-height:1.7;

    min-height:120px;

    font-style:italic;

}

/* ===================================================== */

.linha-card{

    width:40px;

    height:2px;

    background:#D6C6B6;

    margin:0 auto 18px;

}

.depoimento-card h4{

    text-align:center;

    font-size:18px;

    font-weight:500;

    color:#222;

    margin-bottom:5px;

}

.depoimento-card span{

    display:block;

    text-align:center;

    color:#777;

    font-size:14px;

    margin-bottom:22px;

}

/* ===================================================== */

.seta{

    position:absolute;

    top:38%;

    transform:translateY(-50%);

    width:52px;

    height:52px;

    border-radius:50%;

    border:none;

    background:#F2ECE5;

    color:#7A6C60;

    font-size:26px;

    cursor:pointer;

    z-index:20;

    transition:.3s;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.seta:hover{

    background:#D9CABA;

    color:#222;

}

.seta-esquerda{

    left:-25px;

}

.seta-direita{

    right:-25px;

}

/* ===================================================== */

.carousel::-webkit-scrollbar{

    display:none;

}

/* =====================================================
            RESPONSIVIDADE
===================================================== */

@media(max-width:1200px){

    .depoimentos h2{

        font-size:60px;

    }

    .depoimento-card{

        flex:0 0 280px;

    }

}

@media(max-width:768px){

    .depoimentos{

        padding:70px 0;

    }

    .depoimentos h2{

        font-size:44px;

    }

    .texto-depoimentos{

        font-size:16px;

        padding:0 20px;

    }

    .depoimento-card{

        flex:0 0 85%;

    }

    .seta{

        display:none;

    }

}

/* =====================================================
                    COMUNIDADE
===================================================== */

.comunidade{

    background:#F4F2EF;

    padding:90px 0;

}

.comunidade-content{

    display:grid;

    grid-template-columns:360px 1fr;

    gap:45px;

    align-items:start;

}

/* ========================================= */

.comunidade-info{

    position:sticky;

    top:120px;

}

.comunidade-top{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:18px;

}

.comunidade-top i{

    font-size:38px;

    color:#B8A48C;

}

.comunidade-top span{

    font-size:15px;

    letter-spacing:3px;

    color:#AE9B86;

    font-weight:500;

}

.linha-pequena{

    width:60px;

    height:2px;

    background:#D8C9B8;

    margin:22px 0 30px;

}

.comunidade-info h2{

    font-family:'Cormorant Garamond',serif;

    font-size:78px;

    line-height:0.95;

    font-weight:500;

    color:#1E1717;

    margin-bottom:35px;

}

.comunidade-info p{

    font-size:18px;

    line-height:2;

    color:#505050;

    max-width:320px;

}

/* ========================================= */

.linha-central{

    display:flex;

    align-items:center;

    gap:12px;

    margin:45px 0;

}

.linha-central span{

    width:80px;

    height:2px;

    background:#D8C9B8;

}

.bolinha{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#B8A48C;

}

/* ========================================= */

.lista-comunidade{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:28px;

}

.lista-comunidade li{

    display:flex;

    align-items:center;

    gap:18px;

}

.lista-comunidade i{

    font-size:28px;

    color:#B8A48C;

    width:30px;

}

.lista-comunidade span{

    font-size:19px;

    color:#4A4A4A;

}

/* ========================================= */
/* GALERIA */
/* ========================================= */

.galeria-comunidade{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:14px;

}

/* primeira linha */

.foto1{

    grid-column:1 / 3;

    height:280px;

}

.foto2{

    height:280px;

}

/* segunda linha */

.foto3{

    height:245px;

}

.foto4{

    height:245px;

}

.foto5{

    height:245px;

}

/* terceira linha */

.foto6{

    height:245px;

}

.foto7{

    height:245px;

}

.foto8{

    height:245px;

}

/* ========================================= */

.foto{

    overflow:hidden;

    border-radius:14px;

    background:#000;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.foto img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.foto:hover img{

    transform:scale(1.05);

}

/* ========================================= */

.foto1 img{

    object-position:center;

}

.foto2 img{

    object-position:center;

}

.foto3 img{

    object-position:center;

}

.foto4 img{

    object-position:center;

}

.foto5 img{

    object-position:center;

}

.foto6 img{

    object-position:center;

}

.foto7 img{

    object-position:center;

}

.foto8 img{

    object-position:center;

}

/* ========================================= */

.comunidade .container{

    max-width:1400px;

}

/* =====================================================
                    DIFERENCIAL
===================================================== */

.diferencial{

    padding:110px 0;

    background:#F7F3EE;

}

.titulo-diferencial{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;

}

.titulo-diferencial span{

    font-size:14px;

    font-weight:500;

    letter-spacing:5px;

    color:#B5A28C;

}

.titulo-diferencial h2{

    margin-top:18px;

    font-family:'Cormorant Garamond',serif;

    font-size:82px;

    font-weight:400;

    color:#1E1717;

    line-height:1.05;

}

.titulo-diferencial p{

    margin-top:35px;

    font-size:20px;

    color:#555;

    line-height:1.7;

}

.diferencial .linha-central{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin:25px auto;

}

.diferencial .linha-central span{

    width:70px;

    height:2px;

    background:#D8C9B8;

    display:block;

}

.diferencial .bolinha{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#C7B299;

    flex-shrink:0;

}



/* =====================================================
                        GRID
===================================================== */

.cards-diferencial{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:26px;

}



/* =====================================================
                        CARD
===================================================== */

.card-diferencial{

    background:#FBF9F6;

    border-radius:22px;

    padding:55px 40px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.04);

}

.card-diferencial:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}



/* =====================================================
                        ICONE
===================================================== */

.icone-card{

    width:82px;

    height:82px;

    border-radius:50%;

    background:#D8C9B8;

    color:#FFF;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 30px;

}

.icone-card i{

    font-size:36px;

}



/* =====================================================
                        TITULO
===================================================== */

.card-diferencial h3{

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    font-weight:500;

    color:#1E1717;

    margin-bottom:18px;

    line-height:1.2;

}



/* pequena linha */

.card-diferencial h3::after{

    content:"";

    display:block;

    width:55px;

    height:2px;

    background:#D8C9B8;

    margin:14px auto 0;

}



/* =====================================================
                        TEXTO
===================================================== */

.card-diferencial p{

    margin-top:22px;

    color:#555;

    font-size:18px;

    line-height:1.7;

}



/* =====================================================
                    ANIMAÇÃO HOVER
===================================================== */

.card-diferencial:hover .icone-card{

    transform:scale(1.08);

    transition:.35s;

}

.card-diferencial:hover .icone-card i{

    transform:rotate(-8deg);

    transition:.35s;

}

/* =====================================================
                        FAQ
===================================================== */

.faq{

    padding:110px 0 80px;

    background:#F7F3EE;

    position:relative;

    z-index:20;

    margin-bottom:-70px;

    padding-bottom:150px;

    border-bottom-left-radius:70px;
    border-bottom-right-radius:70px;

}

.faq-titulo{

    text-align:center;

    margin-bottom:55px;

}

.faq-titulo h2{

    font-family:'Cormorant Garamond',serif;

    font-size:82px;

    font-weight:400;

    color:#1E1717;

}



/* =====================================================
                    CONTAINER
===================================================== */

.faq-container{

    max-width:980px;

    margin:auto;

}



/* =====================================================
                        ITEM
===================================================== */

.faq-item{

    background:#FBF9F6;

    border-radius:16px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 8px 30px rgba(0,0,0,.04);

    transition:.35s;

}

.faq-item:hover{

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}



/* =====================================================
                    PERGUNTA
===================================================== */

.faq-question{

    width:100%;

    border:none;

    background:transparent;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 38px;

    font-family:'Cormorant Garamond',serif;

    font-size:24px;

    color:#1E1717;

}

.faq-question span{

    text-align:left;

}

.faq-question i{

    color:#C8B49A;

    font-size:28px;

    transition:.35s;

}



/* =====================================================
                    RESPOSTA
===================================================== */

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 38px 30px;

    font-size:17px;

    color:#555;

    line-height:1.8;

}



/* =====================================================
                    ABERTO
===================================================== */

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active{

    box-shadow:0 14px 40px rgba(0,0,0,.05);

}



/* =====================================================
                BLOCO FINAL
===================================================== */

.faq-final{

    margin-top:70px;

    text-align:center;

}

.faq-final h3{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    font-weight:400;

    color:#1E1717;

    margin-bottom:10px;

}

.faq-final p{

    font-size:20px;

    color:#666;

    margin-bottom:28px;

}



/* =====================================================
                BOTÃO WHATSAPP
===================================================== */

.btn-whatsapp{

    width:280px;

    height:58px;

    margin:auto;

    border-radius:12px;

    background:#D8C9B8;

    color:#2B2522;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    font-size:20px;

    font-weight:500;

    transition:.35s;

}

.btn-whatsapp:hover{

    background:#CDB8A2;

    transform:translateY(-3px);

}

.btn-whatsapp i{

    font-size:28px;

}



/* =====================================================
                LINHA DIVISÓRIA
===================================================== */

.faq-item.active .faq-question{

    border-bottom:1px solid rgba(0,0,0,.06);

}

/* =====================================================
                TOUR ESTÚDIO
===================================================== */

.tour-estudio{

    position:relative;

    z-index:1;

    padding-top:140px;


    border-radius:0;

    width:100%;

    height:110vh;

    min-height:900px;

    overflow:hidden;


    background:
    linear-gradient(
        90deg,
        rgba(247,243,238,.98) 0%,
        rgba(247,243,238,.95) 15%,
        rgba(247,243,238,.88) 28%,
        rgba(247,243,238,.72) 40%,
        rgba(247,243,238,.42) 55%,
        rgba(247,243,238,.10) 72%,
        rgba(247,243,238,0) 100%
    ),

    url("https://res.cloudinary.com/d4y3cz55/image/upload/f_auto,q_auto,w_1200,c_limit/v1785905231/estudio-background_iobwvx.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}



/* =====================================================
                    OVERLAY
===================================================== */

.tour-overlay{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;

}



/* =====================================================
                    CONTEÚDO
===================================================== */

.tour-content{

    width:100%;

    max-width:640px;

    margin-left:70px;

}



/* =====================================================
                        LOGO
===================================================== */

.tour-logo{

    width:165px;

    margin-bottom:45px;

}



/* =====================================================
                        TÍTULO
===================================================== */

.tour-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:86px;

    font-weight:400;

    color:#1C1817;

    line-height:.95;

    margin-bottom:34px;

    letter-spacing:-1px;

}



/* =====================================================
                        LINHA
===================================================== */

.tour-linha{

    justify-content:flex-start;

    margin-bottom:38px;

}

.tour-linha span{

    width:56px;

}



/* =====================================================
                        TEXTO
===================================================== */

.tour-content p{

    font-size:20px;

    line-height:1.8;

    color:#4A4A4A;

    font-weight:300;

    margin-bottom:46px;

}



/* =====================================================
                        BOTÃO
===================================================== */

.btn-tour{

    width:390px;
    height:62px;

    background:#D9C8B5;

    border-radius:10px;

    display:flex;

    justify-content:center;
    align-items:center;

    color:#FFF;

    font-size:20px;

    font-weight:500;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    padding:0 26px;

}

.btn-tour:hover{

    background:#CDB59D;

    transform:translateY(-3px);

}

.btn-tour i{

    font-size:21px;

    margin-right:16px;

    flex-shrink:0;

}



/* =====================================================
                ANIMAÇÃO
===================================================== */

.tour-content{

    width:100%;

    max-width:620px;

    margin-left:6.5vw;

}

@keyframes fadeTour{

    from{

        opacity:0;

        transform:translateX(-50px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}



/* =====================================================
            MELHORIA VISUAL
===================================================== */

.tour-estudio::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.04),

        transparent 18%

    );

    pointer-events:none;

}

/* =====================================================
                    FOOTER
===================================================== */

.footer{

    background:#F4F2EF;

    padding:70px 0 35px;

}

.footer-container{

    width:92%;
    max-width:1350px;

    margin:auto;

    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1fr;

    gap:55px;

}

.footer-col{

    display:flex;
    flex-direction:column;

}

.footer-logo img{

    width:145px;

    margin-bottom:35px;

}

.footer-logo p{

    font-size:19px;

    color:#494949;

    line-height:1.8;

    font-weight:300;

}

.footer-line{

    width:95px;
    height:2px;

    background:#D5C6B5;

    margin-top:28px;

}

/* ===================================== */

.footer-col h4{

    font-size:24px;

    color:#B39D87;

    font-weight:500;

    letter-spacing:2px;

    margin-bottom:35px;

}

/* ===================================== */

.footer-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:35px;

}

.footer-item i{

    font-size:28px;

    color:#1E1E1E;

    margin-top:3px;

    width:28px;

    text-align:center;

}

.footer-item div{

    font-size:20px;

    color:#474747;

    line-height:1.8;

    font-weight:300;

}

.footer-item strong{

    font-weight:500;

}

.footer-item a{

    color:#474747;

    text-decoration:none;

    transition:.3s;

}

.footer-item a:hover{

    color:#B39D87;

}

/* ===================================== */

.mapa{
    width:100%;
    max-width:200px;   /* antes era 250px */
    height:170px;      /* antes era 220px */

    overflow:hidden;
    border-radius:12px;

    transition:.35s;
}

.mapa iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

.mapa:hover{
    transform:scale(1.03);
}

/* ===================================== */

.horario{

    margin-left:46px;

}

/* ===================================== */

.footer-bottom{

    width:92%;
    max-width:1350px;

    margin:70px auto 0;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:35px;

}

.footer-bottom span{

    font-size:18px;

    color:#6D6D6D;

    white-space:nowrap;

}

.linha-footer{

    flex:1;

    height:1px;

    background:#D9CDBE;

}

/* ===================================== */
/* Linhas verticais iguais ao layout */
/* ===================================== */

.footer-col:not(:last-child){

    border-right:1px solid rgba(214,201,183,.45);

    padding-right:40px;

}

/* ===================================== */

.footer-item:last-child{

    margin-bottom:0;

}

/* ===================================== */
/* Hover */
/* ===================================== */

.footer-col a:hover{

    color:#B39D87;

}

.footer-logo img{
    transition: .35s;
    width: 300px;
    height: 300px;

    margin-left: -60px;
}

.footer-logo img:hover{

    transform:scale(1.03);

}

/* ===================================== */

.footer{

    position:relative;

    overflow:hidden;

}

/* brilho bem suave */

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:
    radial-gradient(circle at center,
    rgba(255,255,255,.35),
    transparent 65%);

}

/* CSS SOBRE O VIDEO DE DEPOIMENTO CARROSSEL */
/* Estilização do Player Falso (Thumbnail) nos Cards */
.video-thumb-placeholder {
    width: 100%;
    height: 200px; /* Ajuste a altura para o tamanho que preferir no seu design */
    background-color: #1a1a1a; /* Fundo reserva caso a imagem falhe ao carregar */
    
    /* ESSAS TRÊS LINHAS DIZEM RESPEITO À THUMBNAIL: */
    background-size: cover;       /* Faz a imagem cobrir todo o espaço sem distorcer */
    background-position: center;  /* Centraliza a imagem na horizontal e vertical */
    background-repeat: no-repeat; /* Evita que a imagem fique se repetindo */
    
    position: relative;
    cursor: pointer;
    border-radius: 8px; /* Deixa as bordinhas da foto arredondadas e elegantes */
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Garante que o ícone fique centralizado e com um tamanho profissional */
.play-overlay i {
    font-size: 20px; 
    margin-left: 4px; /* Esse truque empurra o triângulo ligeiramente para a direita para alinhar perfeitamente no centro geométrico do círculo */
}

.depoimento-card:hover .play-overlay {
    background: #ff0000; 
    transform: translate(-50%, -50%) scale(1.1);
}

/* ESTILIZAÇÃO DO MODAL (TELA CHEIA) */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999; /* Garante que fica por cima de tudo */
    display: none; /* Começa escondido */
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Fundo preto semi-transparente */
    backdrop-filter: blur(5px); /* Efeito borrado de cinema no fundo */
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: #ff0000;
}

/* Mantém a proporção do vídeo em 16:9 (Cinema/YouTube) */
.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =====================================================
                    COMO COMEÇAR
===================================================== */

.como-comecar{

    background:#F4F2EF;

    padding:120px 0;

}

.como-comecar .container{

    width:92%;
    max-width:1280px;

    margin:auto;

    text-align:center;

}

/* ===================================== */

.secao-mini{

    display:block;

    font-size:15px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#B39D87;

    margin-bottom:18px;

    font-weight:500;

}

/* ===================================== */

.como-comecar h2{

    font-family:'Cormorant Garamond',serif;

    font-size:64px;

    font-weight:500;

    color:#1E1717;

    line-height:1.05;

}

/* ===================================== */

.como-comecar .linha-central{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    margin:38px auto;

}

.como-comecar .linha-central span{

    width:70px;
    height:2px;

    background:#D6C8B7;

}

.como-comecar .linha-central .bolinha{

    width:14px;
    height:14px;

    border-radius:50%;

    background:#D6C8B7;

}

/* ===================================== */

.subtitulo-comecar{

    max-width:760px;

    margin:0 auto 70px;

    font-size:18px;

    line-height:1.9;

    color:#575757;

    font-weight:300;

}

/* ===================================== */

.cards-comecar{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/* ===================================== */

.card-comecar{

    background:#FFFFFF;

    border-radius:18px;

    padding:45px 38px;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s;

    position:relative;

}

.card-comecar:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 55px rgba(0,0,0,.08);

}

/* ===================================== */

.numero-card{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    color:#D8C9B8;

    line-height:1;

    margin-bottom:25px;

}

/* ===================================== */

.card-comecar h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    font-weight:500;

    color:#1E1717;

    line-height:1.2;

    margin-bottom:22px;

}

/* ===================================== */

.card-comecar p{

    font-size:16px;

    line-height:2;

    color:#555;

    font-weight:300;

}

/* ===================================== */

.btn-comecar{

    width:370px;
    height:62px;

    margin:75px auto 0;

    background:#D8C9B8;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:16px;

    text-decoration:none;

    color:#2C2522;

    font-size:18px;

    font-weight:500;

    transition:.35s;

}

.btn-comecar:hover{

    background:#CDB8A2;

    transform:translateY(-3px);

}

.btn-comecar i{

    font-size:24px;

}

/* =====================================================
                    NOSSA EQUIPE
===================================================== */

.equipe{

    background:#F4F2EF;

    padding:120px 0;

}

.equipe-container{

    width:92%;
    max-width:1280px;

    margin:auto;

}


/* =====================================================
                    CABEÇALHO
===================================================== */

.equipe-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 75px;

}

.equipe-header .secao-mini{

    display:block;

    font-size:15px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#B39D87;

    font-weight:500;

    margin-bottom:18px;

}

.equipe-header h2{

    font-family:'Cormorant Garamond',serif;

    font-size:64px;

    font-weight:500;

    color:#1E1717;

    line-height:1.05;

    margin:0;

}


/* =====================================================
                    LINHA CENTRAL
===================================================== */

.equipe-header .linha-central{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    margin:38px auto;

}

.equipe-header .linha-central span{

    width:70px;

    height:2px;

    background:#D6C8B7;

}

.equipe-header .linha-central .bolinha{

    width:14px;

    height:14px;

    border-radius:50%;

    background:#D6C8B7;

    flex-shrink:0;

}

.equipe-header > p{

    max-width:720px;

    margin:0 auto;

    font-size:18px;

    line-height:1.9;

    color:#575757;

    font-weight:300;

}


/* =====================================================
                    GRID DA EQUIPE
===================================================== */

.equipe-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:38px;

}


/* =====================================================
                    CARD PROFISSIONAL
===================================================== */

.profissional{

    background:#FFFFFF;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s;

}

.profissional:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 55px rgba(0,0,0,.08);

}


/* =====================================================
                    FOTO
===================================================== */

.foto-profissional{

    width:100%;

    height:420px;

    overflow:hidden;

    background:#000;

}

.foto-profissional img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    object-position:center;

    transition:.5s;

}

.profissional:hover .foto-profissional img{

    transform:scale(1.03);

}


/* =====================================================
                    INFORMAÇÕES
===================================================== */

.info-profissional{

    padding:35px 32px 38px;

    text-align:center;

}

.info-profissional h3{

    font-family:'Cormorant Garamond',serif;

    font-size:38px;

    font-weight:500;

    color:#1E1717;

    line-height:1.1;

    margin:0 0 12px;

}

.formacao{

    display:block;

    font-size:16px;

    color:#B39D87;

    line-height:1.6;

    font-weight:500;

    margin-bottom:20px;

}

.info-profissional p{

    font-size:15px;

    line-height:1.9;

    color:#555;

    font-weight:300;

    margin:0;

}


/* =====================================================
                    FINAL DA SEÇÃO
===================================================== */

.equipe-final{

    text-align:center;

    margin-top:75px;

}

.equipe-final p{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#1E1717;

    font-weight:500;

    margin-bottom:28px;

}


/* =====================================================
                    BOTÃO
===================================================== */

.btn-equipe{

    width:360px;

    height:60px;

    margin:0 auto;

    border-radius:14px;

    background:#D8C9B8;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:16px;

    color:#2B2522;

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    transition:.35s;

}

.btn-equipe:hover{

    background:#CDB8A2;

    transform:translateY(-3px);

}

.btn-equipe i{

    font-size:24px;

}

/* Estilização Geral dos Carrosséis */
.carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */
}

.carousel::-webkit-scrollbar {
    display: none; /* Esconde a barra de rolagem no Chrome/Safari */
}

.carousel .depoimento-card {
    flex: 0 0 300px; /* Ajuste para o carrossel de texto padrão */
    scroll-snap-align: start;
}

/* Ajustes específicos para o carrossel de vídeos */
.video-carousel-wrapper .carousel {
    gap: 0;
}

.video-destaque-wrapper {
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* Estilização das Setas */
.seta {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background-color 0.3s;
}

.seta:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.seta-esquerda {
    left: -25px;
}

.seta-direita {
    right: -25px;
}