@charset "UTF-8";

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

/* ================= VARIÁVEIS ================= */
:root {
    --verde-principal: #A1E6AD;
    --verde-secundario: #6BCF9B;
    --cinza-claro: #F7F9F8;
    --cinza-texto: #6B6B6B;
    --span: #4d9959;
    --preto: #1F1F1F;
    --branco: #FFFFFF;

    --fonte-titulo: "DM Sans", sans-serif;
    --fonte-elegante: "Playfair Display", serif;
    --fonte-texto: "Quicksand", sans-serif;

    --header-height: 270px;
}

html,
body {
    max-width: 100% !important;
    overflow-x: hidden;
}

/* ================= BODY ================= */
body {
    font-family: var(--fonte-texto);
    background-color: var(--branco);
    color: var(--preto);
    line-height: 1.6;
}

/* ========  ANIMAÇÃO SUAVE ===========*/

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

.reveal-title {
    transform: translateY(60px);
    transition-duration: 1s;
}

.cards-grid .reveal-card {
    opacity: 0;
    transform: translateY(100px);
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cards-grid .reveal-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay progressivo */
.cards-grid .reveal-card:nth-child(1) {
    transition-delay: 0.1s;
}

.cards-grid .reveal-card:nth-child(2) {
    transition-delay: 0.2s;
}

.cards-grid .reveal-card:nth-child(3) {
    transition-delay: 0.3s;
}

.cards-grid .reveal-card:nth-child(4) {
    transition-delay: 0.4s;
}

.cards-grid .reveal-card:nth-child(5) {
    transition-delay: 0.1s;
}

.cards-grid .reveal-card:nth-child(6) {
    transition-delay: 0.2s;
}

.cards-grid .reveal-card:nth-child(7) {
    transition-delay: 0.3s;
}

.cards-grid .reveal-card:nth-child(8) {
    transition-delay: 0.4s;
}


.reveal-fade {
    transform: none;
}


/* ================= HEADER ================= */
.header {
    position: fixed;
    width: 100%;
    background-color: var(--cinza-claro);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Header visível */
.header.is-visible {
    transform: translateY(0);
}

/* Header escondido */
.header.is-hidden {
    transform: translateY(-100%);
}

/* Header fixo após scroll */
.header.is-fixed {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 24px;

    display: flex;
    align-items: center;
}

/* LOGO */
.header-logo {
    flex: 1;
}

.header-logo img {
    width: 130px;
}

/* MENU */
.header-nav {
    flex: 2;
    display: flex;
    justify-content: center;
}

.header-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
}

.header-nav a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--preto);
    position: relative;
    transition: color 0.3s ease;
}

.header-nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--verde-secundario);
    transition: width 0.3s ease;
}

.header-nav a:hover {
    color: var(--verde-secundario);

}

.header-nav a:hover::after {
    width: 100%;
}

/* CTA HEADER */
.header-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* ===== DROPDOWN HEADER ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

/* Desktop (hover) */
@media (min-width: 1024px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li a {
        font-size: 0.35rem;
        /* ↓ menor */
        padding: 6px 0;
        font-weight: 400;
        opacity: 0.9;
    }

    .dropdown-menu {
        padding: 4px 0 4px 12px;
        /* ↓ menos espaço */
    }

    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    padding: 15px 20px;
    min-width: 220px;
    max-width: 95vw;
    /* nunca passa da tela */

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}


.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--preto);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.dropdown-menu li a:hover {
    background: var(--cinza-claro);
    color: var(--span);
}

/* Mobile (abre por clique) */
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: static;
    box-shadow: none;
}

.menu-footer {
    display: none;
}

.menu-close {
    display: none;
}

.icon-menu {
    display: none;
}

/* ===============================
   BOTÃO MENU HAMBÚRGUER — PREMIUM OTIMIZADO
================================ */

/* Botão Hambúrguer Estilizado */
.menu-toggle {
    display: none;
    /* Desktop esconde */
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    cursor: pointer;
    z-index: 1200;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background-color: var(--preto);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    /* Efeito elástico */
}

/* Design assimétrico moderno */
.menu-toggle span:nth-child(1) {
    width: 30px;
}

.menu-toggle span:nth-child(2) {
    width: 22px;
}

.menu-toggle span:nth-child(3) {
    width: 30px;
}

/* Animação para virar "X" quando o menu abrir */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 30px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 30px;
}

/* ===============================
   ESTADO ATIVO (Animação para X)
   Nota: Para funcionar, seu JS deve dar toggle em 'active' 
   também no container do botão ou no pai comum.
================================ */

/* Se o seu JS adiciona .active no .header-nav, vamos garantir que o botão mude. 
   Dica: No seu JS, adicione: menuToggle.classList.toggle("active"); */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 32px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 32px;
}

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

    .icon-menu {
        display: flex;

        justify-content: center;
        margin-top: 30px;
    }

    .icon-menu p {

        width: 100%;
        background-color: var(--preto);
        color: #fff;
        text-align: center;
        margin-bottom: 10px;
    }

    .img {

        display: flex;
        justify-content: space-around;
        gap: 30px;
        margin-top: 30px;
    }

    .img img {
        width: 40px;
    }

    /* Header */
    .header-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
        justify-self: start;
    }

    .header-logo {
        grid-column: 2;
        display: flex;
        justify-content: center;
    }

    .header-logo img {
        width: 125px;
    }

    .header-cta {
        display: none;
    }

    /* ===============================
       MENU LATERAL
    ================================ */
    .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        max-width: 340px;
        height: 100vh;
        background: linear-gradient(180deg,
                var(--branco) 0%,
                #f9f9f9 100%);
        padding: 100px 26px;
        z-index: 1100;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* força tudo para cima */

        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 12px 0 35px rgba(0, 0, 0, 0.12);
    }

    .header-nav.active {
        left: 0;
    }

    /* ===============================
       LISTA DO MENU
    ================================ */
    .header-nav ul {
        margin-top: 24px;
        padding: 0;
        display: flex;
        flex-direction: column;
    }


    .header-nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .header-nav ul li a {
        display: flex;
        align-items: center;


        padding: 20px 4px;
        font-size: 1.6rem;
        font-weight: 500;
        font-family: var(--fonte-texto);
        color: var(--preto);
        text-decoration: none;

        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .header-nav ul li a:hover {
        color: var(--verde-secundario);
        padding-left: 12px;
    }

    .header-nav a::after {
        display: none;
    }

    /* ===============================
   DROPDOWN MOBILE — FINAL
================================ */

    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;
        padding-left: 12px;

        background: transparent;

        max-height: 0;
        overflow: hidden;
        opacity: 0;

        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .dropdown-menu li {
        background-color: #e0e0e083;
        padding: 5px
    }

    /* Abre sem empurrar pra cima */
    .nav-dropdown.dropdown-active .dropdown-menu {
        max-height: 280px;
        opacity: 1;
    }

    /* Reserva espaço só quando aberto */
    .nav-dropdown.dropdown-active {
        padding-bottom: 20px;
    }

    .nav-dropdown.dropdown-active .dropdown-arrow {
        transform: rotate(180deg);
    }


    /* ===============================
       OVERLAY PREMIUM
    ================================ */
    .menu-overlay {
        position: fixed;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease;
        z-index: 1000;
    }

    .menu-overlay.active {
        opacity: 1;

    }
}

/* ===============================
   TABLET (768px até 1024px)
================================ */
@media (min-width: 768px) and (max-width: 1024px) {

    /* MENU LATERAL */
    .header-nav {
        width: 60%;
        max-width: 420px;
        padding: 110px 32px;
    }

    /* LISTA */
    .header-nav ul {
        margin-top: 32px;
    }

    .header-nav ul li a {
        font-size: 1.8rem;
        padding: 0px 8px;
    }

    /* DROPDOWN */
    .dropdown-menu {
        position: relative;
        max-height: 0;
        opacity: 0;
        padding-left: 18px;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .nav-dropdown.dropdown-active .dropdown-menu {
        max-height: 500px;
        opacity: 1;
    }

    .dropdown-menu li {
        padding: 0;
        border-radius: 6px;
        margin: 0;
    }

    .dropdown-menu li a {
        padding: 4px 8px;
        /* 🔽 antes estava grande */
        font-size: 2rem;
        /* mais equilibrado */
        line-height: 1.2;
        /* 🔥 isso resolve o “respiro” exagerado */
    }

    /* ÍCONES */
    .icon-menu {
        margin-top: 40px;
    }

    .icon-menu p {
        font-size: 1.4em;
    }

    .img {
        gap: 40px;
    }

    .img img {
        width: 56px;
    }

    /* BOTÃO HAMBÚRGUER */
    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .menu-toggle span:nth-child(1),
    .menu-toggle span:nth-child(3) {
        width: 34px;
    }

    .menu-toggle span:nth-child(2) {
        width: 26px;
    }
}


/* ================= CTA BUTTON ================= */
.cta-button {
    background-color: var(--verde-secundario);
    color: var(--preto);

    padding: 10px 26px;
    border-radius: 999px;
    text-decoration: none;

    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--verde-principal);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ================= CHATBOT ================= */
body.chat-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    touch-action: none;
}

.chat-body,
.chat-options {
    overscroll-behavior: contain;
}

/* BOTÃO FLOANTE */
.chat-float {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--verde-secundario), var(--span));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    z-index: 990;
    transition: all 0.3s ease;
}

.chat-float img {
    margin-right: 4px;
    width: 50px;
    height: 50px;
}

.chat-float:hover {

    background: var(--verde-principal);
}

.chat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    z-index: 9998;
}


.chat-float span {
    margin-top: 8px;
    font-size: 22px;
}

/* ===== TOOLTIP DO CHATBOT ===== */
.chatbot-tooltip {
    position: fixed;
    bottom: 90px;
    right: 20px;

    background: #ffffff;
    color: #333;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;

    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

/* Tooltip visível */
.chatbot-tooltip.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Setinha */
.chatbot-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 22px;
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}


/*==================== FIM TOOLIP *=======================*/


@keyframes pulse-light {
    0% {
        box-shadow: 0 0 0 0 rgba(81, 166, 81, 0.7);
        /* Use a cor da sua variável --detalhes aqui */
    }

    70% {
        box-shadow: 0 0 0 15px rgba(166, 115, 81, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(166, 115, 81, 0);
    }
}

/* 3. Aplicando a animação ao botão flutuante */
.chat-float {
    /* Mantém suas propriedades originais e adiciona a linha abaixo */
    animation: pulse-light 2s infinite;
}

/* CHAT */
.chatbot {
    position: fixed;
    bottom: 100px;
    right: 26px;
    width: 320px;
    background: rgba(247, 249, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    z-index: 999;
    animation: fadeUp .35s ease;
}

.hidden {
    display: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HEADER */
.chat-header {
    color: #292929;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-secundario));
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header strong {
    font-family: var(--fonte-titulo);
    font-size: 14px;
    font-weight: 600;
}

.chat-header span {
    display: block;
    font-size: 17px;
    opacity: .7;
}

.chat-header button {
    background: none;
    border: none;
    color: #000000;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
}

/* CORPO */
.chat-body {
    padding: 14px;
    max-height: 260px;
    overflow-y: auto;
}

/* ========= MENSAGENS =========*/
.bot {
    background: linear-gradient(135deg, #2f2f2f, #3f3f3f);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 16px 16px 16px 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 14px;

}

.user {
    background: linear-gradient(135deg, var(--span), var(--verde-secundario));
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    margin-bottom: 10px;
    text-align: right;
}

/* OPÇÕES */
.chat-options {
    padding: 12px;
    border-top: 1px solid #eee;
}

.chat-options button {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: #ffffff;
    color: var(--preto);
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all .25s ease;
}

.chat-options button:hover {
    background: var(--verde-principal);
    color: var(--preto);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.chat-options {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 6px;
}

/* Scroll premium */
.chat-options::-webkit-scrollbar {
    width: 6px;
}

.chat-options::-webkit-scrollbar-track {
    background: transparent;
}

.chat-options::-webkit-scrollbar-thumb {
    background-color: var(--span);
    border-radius: 10px;
}

/* ===============================
   INPUT DE CONVERSA – CHATBOT
=============================== */

.chat-input-area {
    display: flex;
    gap: 8px;
}

.chat-input-area input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

.chat-input-area input:focus {
    border-color: var(--verde-secundario);
    box-shadow: 0 0 0 3px rgba(107, 207, 155, 0.25);
}

.chat-input-area input::placeholder {
    color: #999;
}

.chat-input-area input:focus {
    border-color: var(--detalhes);
    box-shadow: 0 0 0 2px rgba(209, 159, 109, 0.2);
}

/* BOTÃO ENVIAR */
.chat-input-area button {
    padding: 10px 16px;
    border-radius: 12px;
    border: none;
    background: var(--span);
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.chat-input-area button:hover {
    background: var(--verde-secundario);
    transform: translateY(-1px);
}

.chat-input-area button:active {
    transform: scale(0.96);
}

.chat-actions {
    display: flex;
    gap: 8px;
}

#clearChat {
    background: rgba(255, 255, 255, 0.562);
    border: 1px solid rgba(248, 248, 248, 0.493);
    color: #000000;
    font-size: 14px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 0.70rem;
    cursor: pointer;
    z-index: 10001;
    transition: background .25s ease;
}

#clearChat:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    z-index: 9998;
}

.chatbot {
    z-index: 10000;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;

    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;

    padding-left: 6%;
    padding-top: calc(var(--header-height) - 10px);

    background-image:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.1)),
        radial-gradient(circle at 78% 32%, rgba(173, 221, 182, 0.45), transparent 18%),
        radial-gradient(circle at 72% 48%, rgba(109, 179, 126, 0.3), transparent 24%),
        linear-gradient(135deg, #839f82 0%, #a5b99a 28%, #c8b197 56%, #6b7c63 100%);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #7f8e79;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("imgs/bg-hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s ease, transform 1s ease;
    z-index: 0;
}

.hero-section.loaded::after {
    opacity: 1;
    transform: scale(1);
}

/* Overlay escuro premium */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.575),
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.15));

    z-index: 1;
}

/* HERO CONTENT */
.hero-content {
    margin-top: 0px;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--fonte-titulo);
    font-size: 4rem;
    font-weight: 500;
    color: var(--branco);
    line-height: 1.5;
}

.hero-content h1 span {
    color: var(--verde-principal);
}

.hero-content p {
    margin-top: 14px;
    font-size: 2rem;
    font-weight: 200;
    font-family: var(--fonte-titulo);
    color: rgba(255, 255, 255, 0.9);
}

/* LINHA */
.linha-hero {
    width: 100%;
    height: 3px;
    margin: 15px auto 00px;
    background: linear-gradient(90deg,
            transparent,
            var(--verde-secundario),
            transparent);
    border: none;
    border-radius: 4px;
}

/* ================= HERO BUTTON ================= */
.hero-button {
    position: relative;
    overflow: hidden;

    display: inline-block;

    background-color: var(--verde-secundario);
    border: 2px solid var(--verde-principal);
    color: var(--branco);

    padding: 14px 48px;
    border-radius: 999px;
    margin-bottom: 100px;


    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

/* Brilho deslizante */
.hero-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.35),
            transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}

/* Efeito pulsar */
.hero-button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: box-shadow 0.4s ease;
}

.hero-button:hover {
    background-color: var(--verde-principal);
    color: var(--preto);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Brilho animado no hover */
.hero-button:hover::before {
    transform: translateX(50%);
}

/* Pulsar leve no hover */
.hero-button:hover::after {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
}

/* Animação contínua de brilho */
@keyframes shine {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

.hero-button::before {
    animation: shine 2s infinite;
}


/* ==== SEÇÃO DE PARA QUEM É? ====*/
.container-box {
    padding: 80px 6%;
    background: linear-gradient(180deg,
            rgba(107, 207, 155, 0.08) 0%,
            rgba(107, 207, 155, 0.18) 45%,
            rgba(107, 207, 155, 0.08) 100%);
}

/* ===== HEADER ===== */
.quem-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.quem-header h2 {
    font-size: 3rem;
    font-family: var(--fonte-titulo);
    color: var(--preto);
    margin-bottom: 12px;
}

.quem-header span {
    color: var(--span);
}

.quem-header p {
    font-size: 2rem;
    color: var(--cinza-texto);
}

.linha-quem {
    width: 70%;
    height: 3px;
    margin: 24px auto 40px;
    background: linear-gradient(90deg,
            transparent,
            var(--verde-secundario),
            transparent);
    border: none;
    border-radius: 4px;
}

.ver-todos-btn {
    display: none;
}

/* ===== GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1280px;
    /* trava a largura máxima */
    margin: 0 auto;
    /* centraliza */
    padding: 0 24px;
    /* respiro lateral */
}

.card-quem {
    background: #35cf4f56;
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    text-align: center;
}


.card-quem:hover {
    transform: translateY(-6px);
    border-color: var(--cinza-texto);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.05);
}


/* ===== ÍCONE ===== */
.card-quem .icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;
    /* centraliza o bloco e dá espaçamento */
    transition: transform 0.3s ease;
}

.card-quem:hover .icon {
    transform: scale(1.08);
}

.card-quem .icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

/* ===== TEXTO ===== */
.card-quem h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1f1f;
}

.card-quem p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.65;
}

/* ==== BOTÃO QUEM ====*/
.cta-quem {
    display: flex;
    justify-content: center;
    margin-top: 40px;

}

.button-quem {
    width: fit-content;
    padding: 16px 40px;

    background-color: var(--verde-secundario);
    color: var(--preto);

    font-family: var(--fonte-titulo);
    font-weight: 600;
    text-decoration: none;
    text-align: center;

    border-radius: 999px;
    display: inline-block;

    animation: pulsar 2.4s ease-in-out infinite;
}


/* === ANIMAÇÃO DE PULSAR O BOTÃO ===*/
@keyframes pulsar {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 207, 155, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(107, 207, 155, 0.15);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 207, 155, 0);
    }
}

/* ================= TIMELINE SECTION ================= */
.timeline-section {
    padding: 120px 6%;
    background:
        linear-gradient(180deg, #0a0a0a, #0f0f0f),
        radial-gradient(circle at 50% 30%,
            rgba(76, 175, 80, 0.15),
            transparent 60%);
    background-blend-mode: screen;
}

/* HEADER */
.timeline-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.timeline-header h2 {
    font-family: var(--fonte-titulo);
    font-size: 3rem;
    color: var(--branco);
    margin-bottom: 12px;
}

.timeline-header span {
    color: var(--span);
}


.timeline-header p {
    font-size: 1.6rem;
    color: var(--cinza-claro);
}

/* ================= TIMELINE ================= */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 64px;
}

/* LINHA BASE */
.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

/* LINHA ATIVA */
.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom,
            var(--span),
            var(--verde-principal));
}

/* ================= STEP ================= */
.timeline-step {
    position: relative;
    display: flex;
    gap: 32px;
    margin-bottom: 90px;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* PONTO */
.timeline-step .dot {
    position: absolute;
    left: -46px;
    top: 4px;

    width: 34px;
    height: 34px;
    border-radius: 50%;

    background-color: #cfcfcf;
    border: 3px solid var(--cinza-claro);
    z-index: 2;

    transition: background-color 0.4s ease, transform 0.4s ease;
}


/* ATIVO = PULSA SEM PARAR */
.timeline-step.active .dot {
    background-color: var(--verde-secundario);
    transform: scale(1.15);
    animation: pulseDot 1s ease-in-out infinite;
}

/* PULSAR APENAS QUANDO ATIVO */
.timeline-step.pulsing .dot {
    animation: pulseDot 1s ease-in-out infinite;
}

/* TEXTO */
.timeline-step .content h3 {
    font-family: var(--fonte-titulo);
    font-size: 1.6rem;
    color: var(--branco);
    margin-bottom: 6px;
}

.timeline-step .content p {
    font-size: 1.2rem;
    color: var(--cinza-claro);
    line-height: 1.6;
}

/* ANIMAÇÃO DO PULSO */
@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 207, 155, 0.35);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(107, 207, 155, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(107, 207, 155, 0);
    }
}

.timeline-cta {
    margin-top: 90px;
    text-align: center;
}

/* ===== PARTE DE SERVIÇOS COM SWIPER =====*/

.services-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg,
            rgba(107, 207, 155, 0.08) 0%,
            rgba(107, 207, 155, 0.18) 45%,
            rgba(107, 207, 155, 0.08) 100%);
    background-blend-mode: screen;
    position: relative;
    overflow: visible !important;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h2 {
    display: inline;
    font-size: 3.2rem;
    font-family: var(--fonte-titulo);
    color: var(--preto);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.services-header .and {
    display: inline;
    margin: 0 6px;
}

.services-header span {
    color: var(--span);
}

.linha-servicos {
    width: 30%;
    height: 3px;
    margin: 24px auto 40px;
    background: linear-gradient(90deg,
            transparent,
            var(--preto),
            transparent);
    border: none;
    border-radius: 4px;
}

.services-header p {
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.55rem;
    line-height: 1.6;
    color: #000000;
}

/* Swiper container */
.services-swiper {
    width: 100%;
    max-width: 540px;
    height: 490px;
    padding: 60px 0;
    margin: auto;
    position: relative;
    overflow: visible !important;
}

.services-swiper .swiper-slide {
    width: 380px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}


/* Card */
.service-card {
    background: linear-gradient(180deg, #ffffff, #f9fbfa);
    border-radius: 18px;
    padding: 0;
    border: 2px solid var(--verde-principal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.service-card img {
    width: 100%;
    max-width: 380px;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b6b6b;
    max-width: 85%;
    margin: 0 auto 20px;
}


.button-mais {
    width: fit-content;
    padding: 16px 40px;

    background-color: var(--verde-secundario);
    color: var(--preto);

    font-family: var(--fonte-titulo);
    font-weight: 600;
    text-decoration: none;
    text-align: center;

    border-radius: 999px;
    display: inline-block;

    transition: transform 0.3s ease, background-color 0.3s ease;
}

.button-mais:hover {
    transform: translateY(-5px);
    background-color: var(--span);
    color: var(--branco);
}

.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    color: var(--preto);
    top: 50%;
    z-index: 9999;
    position: absolute;
    transform: translateY(-50%);
}

.services-swiper .swiper-button-next {
    right: -200px;
}

.services-swiper .swiper-button-prev {
    left: -200px;
}

.services-swiper .swiper-pagination-bullet {
    background: var(--preto);
    opacity: 0.4;
}

.services-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 13px;
    height: 13px;
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 207, 155, 0.35);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(107, 207, 155, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(107, 207, 155, 0);
    }
}

.services-swiper .swiper-pagination {
    position: absolute;
    margin-bottom: -50px;
    /* desce */
}

/* ========== PARTE DO MODAL ==========*/

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: linear-gradient(180deg, #ffffff, #f7f9f8);
    width: 92%;
    max-width: 520px;
    padding: 42px 38px;
    border-radius: 26px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s ease;
    position: relative;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
}

.modal-title {
    font-family: var(--fonte-titulo);
    font-size: 1.9rem;
    margin-bottom: 14px;
}

.modal-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--cinza-texto);
    margin-bottom: 22px;
}

.modal-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.modal-benefits li {
    padding-left: 26px;
    margin-bottom: 12px;
    position: relative;
}

.modal-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--verde-secundario);
    font-weight: bold;
}

/* ================= SEÇÃO DE DIFERENCIAL ================= */

.diferenciais-section {
    padding: 80px 6%;
    background:
        linear-gradient(180deg, #0a0a0a, #0f0f0f),
        radial-gradient(circle at 50% 30%,
            rgba(76, 175, 80, 0.15),
            transparent 60%);
    background-blend-mode: screen;
    text-align: center;
}

.diferenciais-header h2 {
    color: var(--branco);
    font-family: var(--fonte-titulo);
    font-size: 3em;
}

.diferenciais-header span {
    color: var(--span);
}

.diferenciais-header p {
    color: var(--cinza-claro);
    font-size: 1.6rem;
    margin-top: 12px;
    margin-bottom: 56px;
}

.linha-diferenciais {
    width: 45%;
    height: 3px;
    margin: 24px auto 40px;
    background: linear-gradient(90deg,
            transparent,
            var(--verde-secundario),
            transparent);
    border: none;
    border-radius: 4px;
}

/* ===== DIFERENCIAIS - LAYOUT ===== */
.diferencial-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}


/* ===== ACCORDION ===== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 98%;
}

/* ITEM */
.accordion-item {
    width: 100%;
    gap: 10px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}

.accordion-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* HEADER */
.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1c1c1c;
    cursor: pointer;
    text-align: left;
}

/* ÍCONE */
.accordion-header .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f5f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform .3s ease, background .3s ease;
}

/* ITEM ATIVO */
.accordion-item.active .accordion-header .icon {
    background: var(--verde-principal);
    color: #fff;
    transform: rotate(180deg);
}

/* CONTENT */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .3s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    opacity: 1;
}

/* TEXTO */
.accordion-content p {
    padding: 0 26px 24px 26px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    line-height: 1.6;
    color: #5f5f5f;
}

.diferencial-image {
    width: 100%;
    height: 570px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    position: relative;
}

.diferencial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease, transform .6s ease;
}

/* ================= CTA FORTE ================= */

.cta-strong-section {
    text-align: center;
    padding: 80px 6%;
    position: relative;
    padding: 100px 6%;
    background: url('imgs/cta-back.png') center/cover no-repeat;
}

.cta-strong-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.288);
    backdrop-filter: blur(4px);
}

.cta-strong-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-strong-content h2 {
    font-family: var(--fonte-titulo);
    color: var(--preto);
    font-size: 3em;
    margin-bottom: 16px;
}

.cta-strong-content span {
    color: var(--span);
}

.cta-strong-content p {
    font-family: var(--fonte-texto);
    color: var(--preto);
    font-size: 1.7em;
    margin-bottom: 32px;
}

.cta-strong-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--span);
    color: var(--cinza-claro);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.cta-strong-button:hover {

    background-color: var(--preto);
    color: var(--cinza-claro);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.cta-strong-content small {
    display: block;
    margin-top: 12px;
    color: #555;
    font-size: 0.9em;
}

/* ================= LOCALIZAÇÃO ================= */

.localizacao {
    padding: 100px 6%;
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #f9fbfa);
    background-blend-mode: screen;
    position: relative;
}

/* TÍTULO */
.localizacao h1 {
    max-width: 860px;
    margin: 0 auto 20px;

    font-family: var(--fonte-titulo);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--preto);
}

.localizacao span {
    color: var(--span);
}

/* LINHA */
.linha-localizacao {
    width: 220px;
    height: 4px;
    margin: 18px auto 28px;

    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg,
            transparent,
            var(--span),
            transparent);
}

/* TEXTO */
.localizacao-text {
    font-family: var(--fonte-texto);
    font-size: 2em;
    color: var(--preto);
    margin-bottom: 24px;
}

/* ENDEREÇO */
.link-localzacao {
    display: inline-block;
    margin-bottom: 42px;
    text-decoration: none;
}

.link-localzacao p {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--cinza-texto);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.link-localzacao:hover p {
    text-decoration: underline;
    color: var(--preto);
}

.localizacao-hours {
    font-size: 1.4em;
    color: var(--preto);
    font-family: var(--fonte-titulo);
    background-color: var(--verde-secundario);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    width: fit-content;
    margin: auto;
    padding: 12px 24px;
    border-radius: 18px;
    margin-bottom: 40px;
}

.hours {
    font-size: 1.3rem
}

/* MAPA */
.localizacao iframe {
    width: 100%;
    max-width: 960px;
    height: 460px;
    margin: 0 auto 40px;
    display: block;

    border: 1px solid var(--verde-principal);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

/* BOTÃO */
.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 44px;
    border-radius: 999px;

    background: linear-gradient(135deg, var(--span), var(--verde-secundario));
    color: var(--preto);
    font-family: var(--fonte-titulo);
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 18px 42px rgba(161, 230, 173, 0.55);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.button i {
    font-size: 1.2rem;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 60px rgba(161, 230, 173, 0.75);
}

/* ================= foote ================= */

.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    font-family: var(--fonte-texto);
}

/* ===== CONTAINER ===== */

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 6%;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* ===== MARCA ===== */

.footer-logo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.footer-logo img {
    margin: auto;
    width: 118px;
}

.footer-logo span {
    font-family: var(--fonte-titulo);
    font-size: 1.6em;
    font-weight: 700;
    text-align: center;
    color: var(--preto);
}

/* ===== COLUNAS ===== */

.footer-column h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 8px;
    background: var(--span);
    border-radius: 6px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    text-decoration: none;
    color: var(--preto);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--span);
}

/* ===== CONTATO ===== */

.footer-column p {
    font-size: 0.95em;
    color: var(--preto);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ===== REDES SOCIAIS ===== */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--span);
    color: var(--branco);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.1em;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(161, 230, 173, 0.6);
    background: #25D366;
    /* Exemplo: verde WhatsApp */
}

/* SVG dentro do botão */
.footer-social a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    /* herda a cor do link */
    transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse */
.footer-social a:hover svg {
    color: var(--branco);
    transform: scale(1.15);
}

/* ===== COPYRIGHT ===== */

.footer-bottom {
    text-align: center;
    padding: 24px 6%;
    font-size: 0.9em;
    color: var(--preto);
    border-top: 1px solid #e5e5e5;
}


/* ================= QUEM SOU EU ================= */

.quem-sou-eu {
    padding: 60px 6%;
    margin-top: 11%;
    background: #f7f9f8;
}

.container-quem {
    max-width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* ===== SLIDER ===== */
.foto-quem {
    height: 620px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.quemSouEu-slider,
.quemSouEu-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.quemSouEu-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== TEXTO ===== */
.texto-quem h2 {
    font-family: var(--fonte-elegante);
    font-size: 52px;
    color: var(--preto);
    margin-bottom: 24px;
    position: relative;
}

.texto-quem h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            var(--verde-secundario),
            transparent);
}

.texto-quem p {
    font-size: 20px;
    color: var(--cinza-texto);
    line-height: 1.8;
    margin-bottom: 18px;
}

.texto-quem strong {
    color: var(--preto);
}

/* ===== DADOS ===== */
.dados-quem {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.dados-quem div {
    text-align: center;
}

.dados-quem strong {
    display: block;
    font-size: 34px;
    font-family: var(--fonte-titulo);
    color: var(--span);
    font-weight: 700;
}

.dados-quem span {
    font-size: 17px;
    color: var(--cinza-texto);
}


/* =====================
   SEÇÃO MISSÃO
===================== */

.missao {
    padding: 100px 4%;
    background:
        linear-gradient(180deg, #0a0a0a, #0f0f0f),
        radial-gradient(circle at 50% 30%,
            rgba(76, 175, 80, 0.15),
            transparent 60%);
    background-blend-mode: screen;
    border: 1px solid rgba(0, 0, 0, 0.11);
}

.container-missao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
}

/* IMAGEM / SLIDER */
.foto-missao {
    width: 100%;
    height: 620px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(80, 80, 80, 0.15);
}

.foto-missao img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.missao-slider,
.missao-slider .swiper-slide {
    width: 100%;
    height: 100%;
}


/* ===== SLIDER MISSÃO ===== */
.foto-missao {
    height: 620px;
    /* 🔥 ESSENCIAL */
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.missao-slider,
.missao-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.missao-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTO */
.texto-missao h2 {
    font-size: 52px;
    font-family: var(--fonte-titulo);
    color: var(--cinza-claro);
    margin-bottom: 20px;
}

.texto-missao h2::after {
    content: '';
    position: absolute;
    right: 62%;
    margin-top: 85px;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            var(--verde-principal),
            transparent);
}


.texto-missao p {
    font-family: var(--fonte-secundaria);
    font-size: 20px;
    line-height: 1.6em;
    margin-bottom: 18px;
    color: var(--cinza-claro);
}

/* DADOS */
.dados-missao {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.dados-missao div {
    text-align: center;
}

.dados-missao strong {
    display: block;
    font-size: 2.4rem;
    font-family: var(--fonte-titulo);
    color: var(--span);
}

.dados-missao span {
    font-size: 1.1rem;
    color: var(--cinza-claro);
}

/* 
=======================
RESPONSIVIDADE DO SITE
=======================
*/

@media (max-width: 1220px) {

    .chatbot {
        right: 20px;
        bottom: 90px;
    }

    .chat-float {
        right: 24px;
        bottom: 36px;
    }

    :root {
        --header-height: 280px;
    }

    .header-content {
        padding: 0cqi 20px;
    }

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

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

    .dropdown-menu {
        min-width: 200px;
    }

    .dropdown-menu li a {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .cards-grid {
        gap: 26px;
    }

    .timeline {
        max-width: 820px;
    }

    .services-swiper {
        max-width: 500px;
    }

    .services-swiper .swiper-button-prev {
        left: -140px;
    }

    .services-swiper .swiper-button-next {
        right: -140px;
    }

    .diferencial-layout {
        max-width: 1000px;
        gap: 24px;
    }

    .diferencial-image {
        height: 520px;
    }

    .cta-strong-content {
        max-width: 820px;
    }

    .cta-strong-content h2 {
        font-size: 2.6em;
    }

    .cta-strong-content p {
        font-size: 1.5em;
    }

    .localizacao h1 {
        font-size: 2.6rem;
    }

    .localizacao-text {
        font-size: 1.8rem;
    }

    .localizacao iframe {
        max-width: 880px;
        height: 420px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 3;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-logo span {
        text-align: center;
    }

    .container-quem {
        gap: 50px;
    }

    .texto-quem h2,
    .texto-missao h2 {
        font-size: 44px;
    }

    .foto-quem,
    .foto-missao {
        height: 560px;
    }

    .texto-quem p,
    .texto-missao p {
        font-size: 19px;
    }

    .chat-float {
        width: 54px;
        height: 54px;
        bottom: 28px;
        right: 28px;
    }

    .chat-float img {
        width: 40px;
        height: 40px;
    }


}

@media (min-width: 768px) and (max-width: 992px) {

    .chatbot {
        width: 380px;
        bottom: 100px;
        right: 50%;
        transform: translateX(50%);
        border-radius: 18px;
    }

    .chat-body {
        max-height: 320px;
    }

    .chat-header {
        padding: 14px;
    }

    .bot,
    .user {
        font-size: 15px;
    }

    .chat-float {
        width: 60px;
        height: 60px;
        bottom: 28px;
        right: 28px;
    }

    .chat-float img {
        width: 46px;
        height: 46px;
    }

    .chatbot-tooltip {
        font-size: 1.3em;
    }

    .nav-dropdown {
        display: block;
        overflow: hidden;
        /* 🔑 mata espaço invisível */
        max-height: 44px;
        margin-bottom: 26px;
        /* 🔑 só a altura do link */
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active {
        max-height: 400px;
        /* 🔑 espaço ao abrir */
    }

    /* ===== LINK "SERVIÇOS" ===== */
    .nav-dropdown>a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        font-size: 0.95rem;
        padding: 15px 0;
        line-height: 1.1;
    }

    /* ===== DROPDOWN ===== */
    .dropdown-menu {
        display: block;
        overflow-x: hidden;
        /* Evita scroll lateral */
        overflow-y: auto;
        /* 🚀 Habilita o scroll vertical se necessário */
        max-height: 0;

        padding-left: 12px;
        border-left: 2px solid var(--verde-principal);
        margin-bottom: 10px;
        transition: max-height 0.3s ease;

        /* Estilização opcional para a barra de scroll ficar fina e elegante */
        scrollbar-width: thin;
        scrollbar-color: var(--verde-principal) transparent;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 230px;
        margin-top: 10px;
    }

    .dropdown-menu li a {
        font-size: 0.82rem;
        /* ⬅️ menor e elegante */
        padding: 6px 0;
        line-height: 1.2;
        font-weight: 400;
    }

    /* seta */
    .dropdown-arrow {
        font-size: 0.7em;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .header-nav {
        justify-content: flex-start;
        /* ⬅️ tira centralização vertical */
        padding: 80px 0px 20px 20px;
    }

    /* HERO */
    :root {
        --header-height: 70px;
    }

    .hero-content {
        max-width: 520px;
    }

    .hero-content h1 {
        width: 550px !important;
        font-size: 2.8rem;
    }

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

    .hero-button {
        margin-bottom: 10px;
    }

    .hero-section {
        background-position: 70% center;
    }

    .hero-section::after {
        background-image: url("imgs/hero-img.png");
        background-position: 90% center !important;
    }

    .cards-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 32px;

    }

    /* PARA QUEM É */
    .quem-header h2 {
        font-size: 2.4rem;
    }

    .quem-header p {
        font-size: 1.4rem;
    }

    /* TIMELINE */
    .timeline {
        padding-left: 50px;
    }

    .timeline-step {
        margin-bottom: 70px;
    }

    /* SERVIÇOS */
    .services-header h2 {
        font-size: 2.6rem;
    }

    .services-header p {
        font-size: 1.4rem;
    }

    .services-header span {
        font-size: 2.6rem;
    }

    .services-swiper {
        height: 460px;
    }

    .services-swiper .swiper-button-prev,
    .services-swiper .swiper-button-next {
        display: none;
    }


    .diferenciais-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .diferenciais-slider {
        display: none;
    }

    .diferencial-layout {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .accordion {
        width: 100%;
    }

    .diferencial-image {
        height: 480px;
    }

    .diferenciais-header h2 {
        font-size: 2.6em;
    }

    .diferenciais-header p {
        font-size: 1.4rem;
    }


    .diferenciais-slider {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .diferencial-image {
        width: 100%;
        max-width: 520px;
        height: auto;
        /* 🔑 MUITO IMPORTANTE */
        aspect-ratio: 3 / 4;
        /* 🔑 mantém proporção */
        margin: 0 auto;
    }

    .diferencial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .cta-strong-section {
        padding: 80px 6%;
    }

    .cta-strong-content h2 {
        font-size: 2.3em;
    }

    .cta-strong-content p {
        font-size: 1.35em;
    }

    .cta-strong-button {
        padding: 14px 36px;
        font-size: 0.95em;
    }

    .localizacao {
        padding: 90px 7%;
    }

    .localizacao h1 {
        font-size: 2.4rem;
    }

    .linha-localizacao {
        width: 200px;
    }

    .localizacao-text {
        font-size: 1.6rem;
    }

    .link-localzacao p {
        font-size: 1.25rem;
    }

    .localizacao iframe {
        height: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        text-align: left;
    }

    .footer-brand {
        grid-column: span 2;
        display: flex;
        justify-content: center;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-logo span {
        text-align: center;
    }

    .footer-column h4 {
        margin-bottom: 16px;
    }

    .footer-links {
        display: none;
    }

    .container-quem,
    .container-missao {
        display: grid;
        margin-top: 12%;
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .texto-quem h2::after,
    .texto-missao h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .texto-missao h2::after {
        margin-top: 70px;
    }

    .dados-quem,
    .dados-missao {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .foto-quem,
    .foto-missao {
        height: 620px;
        max-width: 90%;
        margin: auto;
    }

    .chat-float {
        width: 70px;
        height: 70px;
        bottom: 24px;
        right: 24px;
    }

    .chat-float img {
        width: 56px;
        height: 56px;
    }

}

@media (max-width: 767px) {

    .chatbot {
        width: 300px;
        bottom: 85px;
        right: 20px;
    }

    .chat-body {
        max-height: 240px;
    }

    .chat-header span {
        font-size: 15px;
    }

    .chat-options button {
        font-size: 14px;
    }

    .chatbot-tooltip {
        font-size: 1.2em;
    }

    .header-nav ul {
        gap: 2px;
        margin-top: 10px;
    }

    .header-nav ul li a {
        font-size: 1.4rem;
        padding: 9px 0;
        line-height: 1.3;
    }

    .nav-dropdown {
        margin-bottom: 1px;
    }

    /* ===== DROPDOWN ===== */
    .dropdown-menu {
        display: block;
        overflow-x: hidden;
        /* Evita scroll lateral */
        overflow-y: auto;
        /* 🚀 Habilita o scroll vertical se necessário */
        max-height: 0;

        padding-left: 12px;
        border-left: 2px solid var(--verde-principal);
        margin-bottom: 10px;
        transition: max-height 0.3s ease;

        /* Estilização opcional para a barra de scroll ficar fina e elegante */
        scrollbar-width: thin;
        scrollbar-color: var(--verde-principal) transparent;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 145px;
        margin-top: 10px;
    }


    :root {
        --header-height: 190px;
    }

    .hero-section {
        padding-left: 5%;
        background-position: 78% center;
    }

    .hero-content h1 {
        width: 260px;
        font-size: 2.4rem;
        line-height: 1.4;
    }

    .hero-content p {
        max-width: 330px;
        font-size: 1.4rem;
    }

    .hero-button {
        padding: 12px 36px;
        font-size: 0.85rem;
    }

    .hero-section::after {
        background-image: url("imgs/hero-img.png");
        background-position: 90% center !important;
    }

    .linha-hero {
        width: 70%;
        margin-left: 0;
        margin-right: auto;
        margin: 1px 0 1px;
    }

    .cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        overflow: hidden;
        transition: max-height 0.6s ease;
    }

    /* mostra apenas os 4 primeiros cards */
    .card-quem {
        display: none;
        margin-top: 10px;
    }

    .quem-header h2 {
        font-size: 2.2em;
    }

    .card-quem:nth-child(-n+3) {
        display: block;
    }

    .quem-header p {
        font-size: 1.2em;
    }

    /* cards extras começam invisíveis */
    .card-quem:nth-child(n+5) {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
    }

    /* quando expandir */
    .cards-grid.expandido {
        max-height: 4000px;
        /* altura grande para comportar tudo */
    }

    .cards-grid.expandido .card-quem {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* quando expandir, mostra todos */
    .cards-grid.expandido .card-quem {
        display: block;
    }

    .ver-todos-btn {
        display: block;
        margin: 24px auto 0;
        padding: 14px 32px;
        border-radius: 999px;
        background: var(--verde-secundario);
        border: none;
        color: rgb(0, 0, 0);
        font-family: var(--fonte-titulo);
        font-weight: 600;
        cursor: pointer;
    }

    /* TIMELINE */
    .timeline {
        padding-left: 44px;
    }

    .timeline-header h2 {
        font-size: 2.2em;
    }

    .timeline-header p {
        font-size: 1.4em;
    }

    .timeline-step .content h3 {
        font-size: 1.6rem;
        margin-left: 20px;
    }

    .timeline-step .content p {
        font-size: 1.1rem;
        margin-left: 20px;
    }

    .timeline-step .dot {
        margin-left: 10px;
        width: 10%;
    }

    /* SERVIÇOS */
    .services-swiper {
        max-width: 100%;
        padding: 40px 0;
    }

    .services-swiper .swiper-slide {
        max-width: 280px
    }

    .services-swiper .swiper-button-prev,
    .services-swiper .swiper-button-next {
        display: none;
    }

    .diferencial-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .accordion {
        width: 100%;
    }

    .diferencial-image {
        display: none;
    }

    .diferencial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .diferenciais-header h2 {
        font-size: 2.3em;
    }

    .linha-diferenciais {
        width: 90%;
    }

    .cta-strong-section {
        padding: 70px 5%;
    }


    .cta-strong-section {
        text-align: center;
        padding: 80px 6%;
        position: relative;
        padding: 100px 6%;
        background: url('imgs/cta-bg-mobile.png') center/cover no-repeat;
    }

    .cta-strong-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.288);
        backdrop-filter: blur(4px);
    }

    .cta-strong-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .cta-strong-content h2 {
        font-size: 2em;
        line-height: 1.25;
    }

    .cta-strong-content p {
        font-size: 1.15em;
    }

    .cta-strong-button {
        padding: 16px 42px;
        font-size: 1em;
    }

    .cta-strong-content small {
        font-size: 0.85em;
    }

    .localizacao {
        padding: 80px 7%;
    }

    .localizacao h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .linha-localizacao {
        width: 180px;
        height: 3px;
    }

    .localizacao-text {
        font-size: 1.4rem;
    }

    .link-localzacao p {
        font-size: 1.15rem;
    }

    .localizacao iframe {
        height: 360px;
        border-radius: 22px;
    }

    .footer {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 8%;
        text-align: center;
    }

    .footer-column h4::after {
        margin: 10px auto 0;
    }

    .footer-column ul {
        display: grid;
        gap: 10px;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column p {
        max-width: 320px;
        margin: 0 auto 12px;
    }

    .footer-links {
        display: none;
    }

    .container-quem,
    .container-missao {
        display: grid;
        margin-top: 12%;
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .texto-quem h2,
    .texto-missao h2 {
        font-size: 32px;
    }

    .texto-missao h2::after {
        margin-top: 60px;
    }

    .texto-quem p,
    .texto-missao p {
        font-size: 16px;
        line-height: 1.6;
    }

    .dados-quem,
    .dados-missao {
        flex-direction: column;
        gap: 18px;
    }

    .dados-missao strong {
        font-size: 34px;
    }

    .foto-quem,
    .foto-missao {
        height: 380px;
        max-width: 100%;
    }


    .chat-float {
        width: 50px;
        height: 50px;
        bottom: 24px;
        right: 24px;
    }

    .chat-float img {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 430px) {

    .chatbot {
        width: 92%;
        right: 4%;
        left: auto;
        bottom: 90px;
        border-radius: 18px;
    }

    .chat-body {
        max-height: 240px;
    }

    .bot,
    .user {
        font-size: 13.5px;
    }

    .chat-options button {
        font-size: 14px;
        padding: 11px;
    }

    .chat-float {
        width: 66px;
        height: 66px;
        right: 18px;
        bottom: 22px;
    }

    .chat-float img {
        width: 52px;
        height: 52px;
    }

    .chatbot-tooltip {
        font-size: 1em;
    }

    /* ===== DROPDOWN ===== */
    .dropdown-menu {
        display: block;
        overflow-x: hidden;
        /* Evita scroll lateral */
        overflow-y: auto;
        /* 🚀 Habilita o scroll vertical se necessário */
        max-height: 0;

        padding-left: 12px;
        border-left: 2px solid var(--verde-principal);
        margin-bottom: 10px;
        transition: max-height 0.3s ease;

        /* Estilização opcional para a barra de scroll ficar fina e elegante */
        scrollbar-width: thin;
        scrollbar-color: var(--verde-principal) transparent;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 145px;
        margin-top: 10px;
    }

    :root {
        --header-height: 180px;
    }

    .hero-section {
        padding-left: 6%;
        background-position: 88% center;
    }

    .hero-content h1 {
        max-width: 230px;
        font-size: 2.05rem;
    }

    .hero-content p {
        max-width: 280px;
        font-size: 1.25rem;
    }

    .linha-hero {
        margin: 12px auto 18px;
    }

    .hero-button {
        padding: 14px 34px;
        font-size: 0.85rem;
    }

    .linha-hero {
        width: 70%;
        margin-left: 0;
        margin-right: auto;
        margin: 1px 0 1px;
    }

    .hero-section::after {
        background-image: url("imgs/hero-mobile.png");
        background-position: 86% center;
    }

    /* PARA QUEM É */
    .quem-header h2 {
        font-size: 2rem;
    }

    .quem-header p {
        font-size: 1.2rem;
    }

    .linha-quem {
        width: 90%;
    }

    /* CARDS */
    .card-quem h3 {
        font-size: 1.15rem;
    }

    .card-quem p {
        font-size: 1rem;
    }

    /* Esconde todos */
    .cards-grid .card {
        display: none;
    }

    /* Mostra apenas os 3 primeiros */
    .cards-grid .card:nth-child(-n+3) {
        display: block;
    }

    /* Quando expandido, mostra tudo */
    .cards-grid.expandido .card {
        display: block;
    }

    .button-quem {
        padding: 10px 15px;
    }

    .timeline-section {
        padding: 70px 5%;
    }

    /* TIMELINE */
    .timeline {
        padding-left: 52px;
    }

    .timeline-step .dot {
        width: 28px;
        height: 28px;
        left: -35px;
    }

    .timeline-header h2 {
        font-size: 2.4rem;
    }

    .timeline-header p {
        font-size: 1.4rem;
    }

    .timeline-step h3 {
        font-size: 1.10rem;
    }

    /* SERVIÇOS */
    .services-header h2 {
        font-size: 2.2rem;
    }

    .services-swiper {
        max-width: 290px;
        height: auto;
    }

    .service-card {
        padding-bottom: 20px;
    }

    .service-card img {
        max-width: 100%;
    }

    .services-header h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1;
    }

    .services-header .and {
        display: block;
        margin: 8px 0;
        font-size: 1em;
        font-weight: 700;
    }

    /* MODAL */
    .modal-card {
        padding: 34px 26px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .diferenciais-section {
        padding: 64px 5%;
    }

    .diferenciais-header h2 {
        font-size: 2em;
    }

    .diferenciais-header p {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .accordion-header {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .accordion-content p {
        font-size: .9rem;
        padding: 0 20px 20px;
    }

    .diferencial-image {
        display: none;
    }

    .cta-strong-section {
        padding: 60px 5%;
    }

    .cta-strong-content h2 {
        font-size: 1.7em;
    }

    .cta-strong-content p {
        font-size: 1.05em;
        margin-bottom: 24px;
    }

    .cta-strong-button {
        width: 100%;
        padding: 16px;
        font-size: 1em;
    }

    .cta-strong-content small {
        font-size: 0.8em;
    }

    .cta-strong-content h2 {
        font-size: 1.5em;
    }

    .cta-strong-content p {
        font-size: 0.95em;
    }

    .cta-strong-button {
        font-size: 0.95em;
        padding: 14px;
    }

    .cta-strong-content small {
        font-size: 0.75em;
    }

    .localizacao {
        padding: 53px 8%;
    }

    .localizacao h1 {
        font-size: 1.9rem;
    }

    .linha-localizacao {
        width: 150px;
    }

    .localizacao-text {
        font-size: 1.2rem;
    }

    .link-localzacao p {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .localizacao iframe {
        height: 300px;
        border-radius: 18px;
    }

    .button {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 1rem;
    }

    .footer-container {
        padding: 5px 9%;
        gap: 22px;
    }

    .footer-logo img {
        width: 96px;
    }

    .footer-logo span {
        font-size: 1.4em;
    }

    .footer-column h4 {
        font-size: 1em;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.95em;
    }

    .footer-links {
        display: none;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

    .container-quem,
    .container-missao {
        display: grid;
        margin-top: 12%;
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .texto-quem h2,
    .texto-missao h2 {
        font-size: 32px;
    }

    .texto-missao h2::after {
        margin-top: 60px;
    }

    .texto-quem p,
    .texto-missao p {
        font-size: 16px;
        line-height: 1.6;
    }

    .dados-quem,
    .dados-missao {
        flex-direction: column;
        gap: 18px;
    }

    .foto-quem,
    .foto-missao {
        height: 380px;
        max-width: 100%;
    }

    .chat-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }

    .chat-float img {
        width: 34px;
        height: 34px;
    }
}


@media (max-width: 360px) {

    .chatbot {
        width: 92%;
        right: 4%;
        left: auto;
        bottom: 90px;
        border-radius: 18px;
    }

    .chat-body {
        max-height: 240px;
    }

    .bot,
    .user {
        font-size: 13.5px;
    }

    .chat-options button {
        font-size: 14px;
        padding: 11px;
    }

    .chat-float {
        width: 56px;
        height: 56px;
        right: 18px;
        bottom: 22px;
    }

    .chat-float img {
        width: 42px;
        height: 42px;
    }

    /* ===== DROPDOWN ===== */
    .dropdown-menu {
        display: block;
        overflow-x: hidden;
        /* Evita scroll lateral */
        overflow-y: auto;
        /* 🚀 Habilita o scroll vertical se necessário */
        max-height: 0;

        padding-left: 12px;
        border-left: 2px solid var(--verde-principal);
        margin-bottom: 10px;
        transition: max-height 0.3s ease;

        /* Estilização opcional para a barra de scroll ficar fina e elegante */
        scrollbar-width: thin;
        scrollbar-color: var(--verde-principal) transparent;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 145px;
        margin-top: 10px;
    }

    :root {
        --header-height: 170px;
    }

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

    .hero-content p {

        font-size: 1.15rem;
    }

    .hero-button {
        padding: 11px 30px;
        font-size: 0.8rem;
    }

    .linha-hero {
        width: 70%;
        margin-left: 0;
        margin-right: auto;
        margin: 1px 0 1px;
    }


    .quem-header h2 {
        font-size: 1.8rem;
    }

    .quem-header p {
        font-size: 1.1rem;
    }

    .card-quem {
        padding: 26px 18px;
    }

    /* Esconde todos */
    .cards-grid .card {
        display: none;
    }

    /* Mostra apenas os 3 primeiros */
    .cards-grid .card:nth-child(-n+3) {
        display: block;
    }

    /* Quando expandido, mostra tudo */
    .cards-grid.expandido .card {
        display: block;
    }


    .timeline-step .content h3 {
        font-size: 1.25rem;
    }

    .timeline-step .content p {
        font-size: 1rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }


    .services-swiper {
        max-width: 220px;
        height: auto;
    }

    .button-mais {
        padding: 14px 32px;
    }

    .diferenciais-header h2 {
        font-size: 1.8em;
    }

    .accordion-header {
        font-size: .95rem;
        gap: 12px;
    }

    .accordion-header .icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .diferencial-image {
        display: none;
    }

    .localizacao h1 {
        font-size: 1.7rem;
    }

    .localizacao-text {
        font-size: 1.1rem;
    }

    .link-localzacao p {
        font-size: 0.95rem;
    }

    .linha-localizacao {
        width: 130px;
    }

    .localizacao iframe {
        height: 260px;
        border-radius: 16px;
    }

    .button {
        font-size: 0.95rem;
        padding: 14px;
    }

    .footer-container {
        padding: 0px 7%;
        gap: 23px;
    }

    .footer-logo span {
        font-size: 1.3em;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.6em;
    }

    .footer-links {
        display: none;
    }

    .footer-social a {
        width: 30px;
        height: 30px;
    }

    .container-quem,
    .container-missao {
        display: grid;
        margin-top: 12%;
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .texto-quem h2,
    .texto-missao h2 {
        font-size: 28px;
    }

    .texto-missao h2::after {
        margin-top: 54px;
    }

    .texto-quem p,
    .texto-missao p {
        font-size: 15px;
    }

    .dados-quem strong,
    .dados-missao strong {
        font-size: 24px;
    }

    .foto-quem,
    .foto-missao {
        height: 330px;
    }

    .chat-float {
        width: 46px;
        height: 46px;
        bottom: 18px;
        right: 18px;
    }

    .chat-float img {
        width: 32px;
        height: 32px;
    }
}