/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;


}

/* Impede o cursor de texto (barrinha piscando) em toda a página */
body,
* {

    caret-color: transparent;
    /* esconde a barrinha piscando */
}



/* === HEADER === */
header {

    position: relative;
    height: 100vh;
    background-color: #bead91;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

/* Balão branco */


/* Barra de navegação */
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff81;
    gap: 35px;
    height: 50px;
    width: 1030px;
    border-radius: 30px;
    font-size: 20px;
    backdrop-filter: blur(8px);
    margin-top: 20px;
}

/* Links */
a {
    position: relative;
    font-family: "Lato", sans-serif;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

a:hover {
    color: #444;
}

.nav-bar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    /* altura da linha */
    width: 0;
    /* começa escondida */
    background-color: #444;
    /* cor da linha */
    transition: width 0.3s ease, bottom 0.3s ease;
    /* animação */
}

.nav-bar a:hover::after {
    width: 100%;
    /* expande a linha inteira */
    bottom: 0px;
    /* sobe do fundo para baixo do texto */
}

/* Logo */
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo img {
    width: 400px;
}

/* Seta */
.seta-img {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
}

/* === MENU HAMBÚRGUER === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1200;
    position: relative;
    /* NÃO fixed por padrão */
}

.hamburger.fixed {
    position: fixed;
    top: 30px;
    right: 40px;
}


.hamburger span {
    display: block;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}


/* Menu lateral (offcanvas) */

.menu-lateral {
    position: fixed;
    top: 0;
    right: -100%;
    /* inicia fora da tela */
    width: 70%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.875);
    box-shadow: -2px 0 15px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 70px;
    padding-left: 40px;
    /* margem da esquerda */
    gap: 20px;
    transition: right .36s cubic-bezier(.2, .8, .2, 1);
    z-index: 1100;
}

.menu-lateral a {
    font-size: 15px;
    font-family: "Lato", sans-serif;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.menu-lateral a:hover {
    color: #444;
}

/* Menu aberto */
.menu-lateral.active {
    right: 0;
}



/* === RESPONSIVIDADE === */
@media (max-width: 1114px) {
    header {
        height: auto;
        padding-bottom: 60px;
    }

    .logo {
        position: relative;
        top: unset;
        left: unset;
        transform: none;
        margin: 40px 0;
    }

    .seta-img {
        position: relative;
        bottom: unset;
        left: unset;
        transform: none;
        margin-top: 20px;
    }

    .nav-bar {
        font-size: 14px;
        gap: 20px;
        width: 700px;
    }


}




/* === MENU HAMBÚRGUER ATÉ 767PX === */
@media (max-width: 767px) {
    .nav-bar {
        display: none;
    }

    .header-container {
        background: none;
        padding: 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 30px;
        right: 40px;
    }

    .logo img {
        width: 250px;
    }

    .seta-img {
        width: 25px;
    }
}


/* === NOVA SEÇÃO QUEM SOMOS === */

.quem-somos {
    background: #f0e5d1;
    padding: 100px 8%;
    
    font-family: "Montserrat", sans-serif;
}



.qs-container {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1300px;
    width: 100%;
}

/* IMAGEM */
.qs-imagem img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* TEXTO */
.qs-texto {
    flex: 1;
    color: #222;
}

/* TAG PEQUENA */
.qs-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
    display: inline-block;
    margin-bottom: 12px;
}

/* TÍTULO */
.qs-texto h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* PARÁGRAFOS */
.qs-texto p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ASSINATURA */
.qs-assinatura {
    margin-top: 25px;
}

.qs-assinatura .nome {
    font-family: "Mrs Saint Delafield", cursive;
    font-size: 32px;
    margin-bottom: -5px;
    color: #000;
    font-weight: 500;
}

.qs-assinatura .cargo {
    font-size: 15px;
    color: #444;
}

/* RESPONSIVO */
@media (max-width: 950px) {
    .qs-container {
        flex-direction: column;
        text-align: center;
    }

    .qs-texto h2 {
        font-size: 30px;
    }

    .qs-texto p {
        font-size: 17px;
    }

    .qs-imagem img {
        max-width: 400px;
    }
}

@media (max-width: 520px) {
    .qs-texto h2 {
        font-size: 26px;
    }

    .qs-texto p {
        font-size: 16px;
    }

    .qs-imagem img {
        max-width: 330px;
    }
}





/* ===== missão ===== */
.missao-clean {
    background-color: #bead91;
    /* a cor que você já usa */
    padding: 70px 20px;
    text-align: center;
}

/* TÍTULO DESTACADO */
.titulo-missao {
    font-family: "Josefin Sans", sans-serif;
   font-size: 48px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 55px;
    position: relative;
    display: inline-block;
}

/* Linha minimalista embaixo do título */
.titulo-missao::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60%;
    height: 3px;
    background-color: #2d2d2d;
    border-radius: 2px;
}

/* TEXTO */
.texto-missao {
    max-width: 900px;
    margin: 0 auto;
}

.texto-missao p {
    margin-top: 18px;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #2d2d2d;
    text-align: justify;
    margin-bottom: 22px;
}


/* ===== RESPONSIVO ===== */
@media (max-width: 1115px) {

    .titulo-missao {
    font-family: "Josefin Sans", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

/* Linha minimalista embaixo do título */
.titulo-missao::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60%;
    height: 3px;
    background-color: #2d2d2d;
    border-radius: 2px;
}

   

    .texto-missao p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
   .titulo-missao {
    font-family: "Josefin Sans", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

/* Linha minimalista embaixo do título */
.titulo-missao::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60%;
    height: 3px;
    background-color: #2d2d2d;
    border-radius: 2px;
}
    .titulo-missao::after {
        width: 85%;
    }

    .texto-missao p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .titulo-missao {
    font-family: "Josefin Sans", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

/* Linha minimalista embaixo do título */
.titulo-missao::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60%;
    height: 3px;
    background-color: #2d2d2d;
    border-radius: 2px;
}
    

    .texto-missao p {
        font-size: 14.5px;
    }
}




/* === SEÇÃO NOSSA CASA === */

/* FOTO GRANDE */

.nossa-casa {
    display: flex;
    flex-direction: column;

}


.nossa-casa-imagem {
    width: 100%;
    max-width: 600px; /* ajuste se quiser maior */
    aspect-ratio: 16 / 9; /* força formato YouTube */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.video-nossa-casa {
    width: 100%;
    height: 100%;
    object-fit: cover; /* corta o topo e o fundo */
}



/* CONTÊINER DO CARROSSEL – ocupa o mesmo espaço da imagem antiga */
.carousel-nossa-casa {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Faixa que desliza */
.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* Cada slide */
.carousel-item {
    min-width: 100%;
}

/* Imagens do carrossel – mesmo estilo que a sua imagem original */
.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.05);
}

.prev-casa {
    left: 12px;
}

.next-casa {
    right: 12px;
}

/* Responsivo: nada muda de tamanho além do que você já tem na .nossa-casa-imagem */
@media (max-width: 900px) {
    .carousel-nossa-casa {
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    }
}


.nossa-casa {
    background-color: #f0e5d1;
    padding: 80px 8%;
    display: flex;
    justify-content: center;

}

.nossa-casa-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    width: 100%;
}

/* FOTO GRANDE */
.nossa-casa-imagem {
    flex: 2;
}

.nossa-casa-imagem img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

/* TEXTO PEQUENO */
.nossa-casa- {
    flex: 1;
    color: #000;
}

.nossa-casa- h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nossa-casa- p {
    font-family: "Lato", sans-serif;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 380px;
}

/* BOTÃO */
.btn-visite {
  
    font-family: "Lato", sans-serif;
    display: inline-block;
    margin-top: 20px;
    background: #000;
    color: #fff;
    padding: 12px 26px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;

    /* Animações */
    transition:
        transform 0.2s ease,
        box-shadow 0.3s ease;
    animation: floatBtn 3s ease-in-out infinite;

    /* Para animação ficar mais suave */
    will-change: transform;
}

/* Hover – cresce um tiquinho */
.btn-visite:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Active – quando clica */
.btn-visite:active {
    transform: scale(0.97);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}

/* Floating (sobe e desce suave) */
@keyframes floatBtn {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.loop-cards-container {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}

.loop-cards-track {
    display: flex;
    gap: 15px;
    width: calc(120px * 12);
    animation: scrollLoop 18s linear infinite;
}

.loop-card {
    margin-top: 30px;
    width: 220px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}




/* RESPONSIVO */



/* 1114px */
@media (max-width: 1114px) {
    .nossa-casa- h2 {
        font-size: 38px;
    }

    .nossa-casa- p {
        font-size: 15px;
    }
}

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

    .nossa-casa h2 {
        font-family: "Josefin Sans", sans-serif;
        font-size: 38px;
        font-weight: 700;
        color: #2d2d2d;
        margin-bottom: 35px;
        position: relative;
        display: inline-block;
    }

    .nossa-casa h2::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        width: 60%;
        height: 3px;
        background-color: #2d2d2d;
        border-radius: 2px;
    }

    .nossa-casa {
        padding: 30px 8%;
    }

    .nossa-casa- p {
        color: #666363;
        max-width: 100%;
    }

    .nossa-casa-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nossa-casa-imagem img {
        max-width: 100%;
    }
}

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

    .loop-card {
    margin-top: 30px;
    width: 160px;
    
    object-fit: cover;
    border-radius: 10px;
}
   

    .nossa-casa h2 {
        font-family: "Josefin Sans", sans-serif;
        font-size: 30px;
        font-weight: 700;
        color: #2d2d2d;
        margin-bottom: 35px;
        position: relative;
        display: inline-block;
    }

    .nossa-casa h2::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        width: 60%;
        height: 3px;
        background-color: #2d2d2d;
        border-radius: 2px;
    }



    .nossa-casa- p {
        font-size: 14px;
    }
}

/* 480px */
@media (max-width: 480px) {
       .nossa-casa h2 {
        font-family: "Josefin Sans", sans-serif;
        font-size: 26px;
        font-weight: 700;
        color: #2d2d2d;
        margin-bottom: 35px;
        position: relative;
        display: inline-block;
    }

    .nossa-casa h2::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        width: 60%;
        height: 3px;
        background-color: #2d2d2d;
        border-radius: 2px;
    }

    .nossa-casa- p {
        font-size: 13px;
    }
}






/* === SEÇÃO ESTRUTURA === */
.estrutura {
    width: 100%;
    padding: 80px 0;
    background-color: #bead91;
    text-align: center;
}

/* Título */
.titulo-estrutura {
    font-family: "Josefin Sans", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.titulo-estrutura::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 60%;
    height: 3px;
    background-color: #2d2d2d;
    border-radius: 2px;
}

/* ÍCONES LADO A LADO */
.estrutura-icones {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* permite quebrar */
    gap: 60px;
}

/* ITEM */
.icone-item {
    width: 160px;
    text-align: center;
}

/* ÍCONES */
.icone-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px auto;
}

/* TEXTO */
.icone-item p {
    font-family: "Lato", sans-serif;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* === RESPONSIVIDADE === */

/* ---- AQUI ESTÁ SUA REGRA ---- */
/* Abaixo de 728px -> 2 por linha */
@media (max-width: 728px) {
    .estrutura-icones {
        gap: 20px;
    }

    .icone-item {
        width: calc(50% - 40px);
        /* 50% da linha menos margem */
    }

    .icone-item img {
        width: 80px;
        height: 80px;
    }

    .icone-item p {
        font-size: 16px;
    }
}

/* Telas muito pequenas */
@media (max-width: 450px) {
    .icone-item {
        width: calc(50% - 20px);
    }

    .icone-item img {
        width: 65px;
        height: 65px;
    }

    .icone-item p {
        font-size: 14px;
    }
}



@media (max-width: 1114px) {




    .titulo-estrutura {
        font-size: 38px;
    }


}


@media (max-width: 768px) {


    .estrutura-icones {
        gap: 20px;
    }



    .titulo-estrutura {
        font-size: 30px;
    }




}


@media (max-width: 480px) {


    .estrutura-icones {
        gap: 20px;
    }



    .titulo-estrutura {
        font-size: 26px;
    }



}







/* SEÇÃO */
.beneficios {
    background-color: #f0e5d1;
    padding: 80px 0;
    text-align: center;
}

/* TÍTULO */
.titulo-beneficios {
    font-family: "Josefin Sans", sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.titulo-beneficios::after {
    content: "";
    height: 3px;
    width: 60%;
    background: #2d2d2d;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ÁREA DO LOOP */
.beneficios-wrapper {
    overflow: hidden;
    width: 100%;
}

/* LINHA QUE ANDA */
.beneficios-loop {
    display: flex;
    gap: 40px;
    animation: slideLoop 10s linear infinite;
}

/* ANIMAÇÃO */
@keyframes slideLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* CARD PREMIUM */
.beneficio-card {
    background: white;
    padding: 25px;
    width: 280px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    flex-shrink: 0;
    transition: transform .25s ease, box-shadow .25s ease;
}



/* TÍTULO DO CARD */
.beneficio-card h3 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

/* TEXTO DO CARD */
.beneficio-card p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 1114px) {

    .titulo-beneficios {
        font-size: 38px;
    }

    

}


@media (max-width: 768px) {

    .titulo-beneficios {
        font-size: 30px;
    }

}


@media (max-width: 480px) {


    .titulo-beneficios {
        font-size: 26px;
    }

}











/* === SEÇÃO DEPOIMENTOS === */
.depoimentos {
    background-color:   #bead91;
    padding: 100px 8%;
    text-align: center;


}

.depoimentos h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;

}

.depoimentos h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60%;
    height: 3px;
    background-color: #2d2d2d;
    border-radius: 2px;
}

/* CARROSSEL */
.slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
    animation: fade 0.6s ease-in-out;
}

.slide.active {
    display: block;
}

.stars-svg img {
    width: 22px;
    margin: 0px 4px;
    margin-top: 20px;
}



/* CARD DO DEPOIMENTO */
.card-depoimento {
    margin-top: 30px;
    font-family: "Lato", sans-serif;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    padding: 35px 40px;
    border-radius: 22px;

    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
}


/* CONTROLES DO CARROSSEL */
.controles {
    margin-top: 30px;
}

.seta {
    font-size: 2.4rem;
    cursor: pointer;
    margin: 0 15px;
    color: #000;
    transition: 0.3s ease;
    user-select: none;
}

.seta:hover {
    opacity: 0.7;
}

/* ANIMAÇÃO */
@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 1115px) {
    .seta {
        display: none;
    }
}


@media (max-width: 714px) {
    .depoimento-card {
        width: 90%;
        max-width: 380px;
        margin: 0 auto;

        padding: 1px 1px;
        /* menos padding, mais espaço útil */
        border-radius: 14px;
        /* reduz bordas pra não ficar “bola” */

        font-size: 1rem;
        /* texto mais legível */
        line-height: 1.4;

        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
        /* mantém elegante */
    }

    .stars,
    .stars-svg img {
        transform: scale(0.9);
        /* ajusta sem estrangular o card */
    }

    .carousel-container {
        padding: 0 10px;
        /* tira bordas exageradas na lateral */
    }
}

@media (max-width: 1114px) {

    .depoimentos {

        padding: 80px 8%;


    }

    .depoimentos h2 {
        font-size: 38px;
    }

    .card-depoimento p {
        font-size: 15px;

    }

}


@media (max-width: 768px) {

    .depoimentos {

        padding: 80px 8%;


    }

    .depoimentos h2 {
        font-size: 30px;
    }


    .card-depoimento p {
        font-size: 14px;
    }

}


@media (max-width: 480px) {

    .depoimentos {

        padding: 80px 8%;


    }


    .depoimentos h2 {
        font-size: 26px;
    }

    .card-depoimentos p {
        font-size: 1px;
    }

}




/* ===== FAQ ===== */
.faq-section {
    background: #f0e5d1;
    /* ajuste se quiser outra cor */
    padding: 80px 8%;

}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif;
}

/* Item */
.faq-item {
    max-width: 800px;
    margin: 0 auto 20px auto;
    border-bottom: 1px solid #707070;
    padding-bottom: 15px;
}

/* Pergunta */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;

    -webkit-tap-highlight-color: transparent;
    /* remove efeito azul no mobile */

}





/* Setinha */
.faq-question .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

/* Resposta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    font-size: 1rem;
    color: #303030;
    line-height: 1.5;
    margin-top: 10px;
    font-family: "Lato", sans-serif;
}

/* Quando abre */
.faq-item.active .faq-answer {
    max-height: 10000px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

@media (max-width: 974px) {

    .faq-question .arrow {
        font-size: 1.1rem;
        /* setinha menor */
    }

    .faq-answer p {
        font-size: 0.9rem;
        /* resposta menor */
    }

    .faq-item {
        padding-bottom: 12px;
    }
}

@media (max-width: 1114px) {

    .faq-section h2 {
        font-size: 38px;
    }

    .faq-question {
        font-size: 17px;
    }

    .faq-answer p {
        font-size: 15px;
    }

}


@media (max-width: 768px) {

    .faq-section h2 {
        font-size: 30px;
    }


    .faq-question {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

}


@media (max-width: 480px) {


    .faq-section h2 {
        font-size: 26px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }

}







/* ===== FOOTER ===== */
.footer {
    background: #bead91;
    padding: 40px 20px 20px;
    width: 100%;

}

/* Contêiner principal */
.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* deixa TODO o bloco centralizado na tela */
    gap: 50px;
    flex-wrap: wrap;
    /* ajuda na responsividade */
}

/* LOGO — agora fica à esquerda */
.footer-right {
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
    /* inverte a ordem da logo sem mexer no HTML */
}

.footer-logo {
    width: 140px;
    height: auto;
}

/* Informações (endereço, tel, email) */
.footer-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.footer-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

/* Ícones das redes sociais */
.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.footer-social img {
    width: 26px;
    height: 26px;
    transition: 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

/* Copyright */
.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 30px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-left {
        text-align: center;
    }

    .footer-info p {
        font-size: 14px;
    }

    .footer-logo {
        width: 120px;
    }
}




/* === ANIMAÇÕES AO ROLAR === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* ÍCONE FIXO DO WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: float 2.5s ease-in-out infinite;
    cursor: pointer;
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* ÍCONE */
.whatsapp-float img {
    width: 40px;
}

/* ANIMAÇÃO DE SUBIR E DESCER */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


html {
    scroll-behavior: smooth;
}