@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

:root {
    --fundo: #F4F0E7;
    --fundo-section: #e2d0b8;
    --detalhes: #A67449;
    --secundario: #3e3a37;
    --texto: #4a3622;

    --fonte-titulo: "EB Garamond", serif;
    --variação: "Playfair Display", serif;
    --fonte-secundaria: "Montserrat", sans-serif;
    --fonte-requisitados: "Quicksand", sans-serif;
}


html,
body {
    overflow-x: hidden;
}

body {
    background-color: var(--fundo-section);
    padding-top: 44px;
    /* altura REAL do header */
}

/* BASE */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: var(--fundo);
    transition: transform 0.45s 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 (Usando suas cores) */
header.is-fixed {
    background: rgba(244, 240, 231, 0.95);
    /* Cor --fundo com 95% opacidade */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(74, 54, 34, 0.15);
    /* Sombra baseada na cor --texto */
    border-bottom: 1px solid rgba(166, 116, 73, 0.2);
    /* Detalhe sutil com --detalhes */
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*ANIMAÇÃO AO ROLAR A TELA*/

.reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: 1s ease;
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: 1s ease;
}

.fade-down.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: 1s ease;
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

/*====FIM DAS ANIMAÇÕES*/

.container-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--fundo-section);
    height: 200px;
    padding: 0;

}

.logo {
    margin-right: 20px;
    text-align: center;
    color: var(--texto);
}

.logo h1 {
    font-family: var(--fonte-titulo);
    font-size: 2.5em;
    font-weight: 600;
}

.logo p {
    font-family: var(--fonte-secundaria);
    font-size: 1em;
    margin-top: 10px;
}

.link-logo {
    text-decoration: none;
}

.info-menu {
    margin-top: 50px;
}

.info-menu p {
    font-family: var(--fonte-secundaria);
    font-size: 1.1em;
}

.icone {
    display: flex;
    gap: 25px;
    align-items: center;
}

.email {
    margin: 50px 0 20px 0;
    font-family: var(--fonte-secundaria);
}

.email p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.email button {
    color: var(--fundo);
    font-size: 0.90em;
    text-transform: uppercase;
    margin-left: 20px;
    background-color: #e4e4e428 !important;
    padding: 5px 10px;
    border-radius: 10px;

}

#email-texto {
    font-family: var(--fonte-secundaria);
    font-size: 1.1em;
    margin-top: 10px;
}

.info-menu img {
    width: 25px;
    display: flex;
    margin-top: 10px;
}

.info-menu p {
    font-family: var(--fonte-secundaria);
    margin-top: -20px;
    font-size: 1em;
    text-transform: uppercase;
}

.linha-menu {
    width: 80%;
    margin-left: -20px;
    border: 1px solid var(--detalhes);
}

.nav {
    margin-top: 35px;
}

.nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav li {
    list-style: none;
}

.nav a {
    position: relative;
    display: block;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--texto);
    font-family: var(--fonte-secundaria);
    font-size: 1em;
    font-weight: 600;
    transition: 0.5s;
    z-index: 1;
    border-bottom: none;
    padding-bottom: 5px;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--detalhes);
    border-bottom: 2px solid var(--detalhes);
    transform: scaleY(2);
    opacity: 0;
    transition: 0.3s;
}

.nav a::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--detalhes);
    transform: scaleY(0);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.nav a:hover {
    color: white;
    font-size: 1em;
    transform: none;
    border-bottom-color: transparent;
}

.nav a:hover::before {
    transform: scaleY(1);
    opacity: 1;
}

.nav a:hover::after {
    transform: scaleY(1);
    opacity: 1;
}


.dropdown-content a::before,
.dropdown-content a::after {
    content: none !important;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none !important;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgb(0, 0, 0, 0.2);
    z-index: 10;
    list-style: none;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.dropdown-content li {
    padding: 0;
}

.dropdown-content a {
    color: #000000;
    padding: 20px;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 10px 15px;
    font-family: var(--fonte-secundaria);

}

/* ===== DROPDONW DE PROCEDIMENTOS ===== */
.procedures-dropdown {
    display: none !important;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 230px;
    box-shadow: 0px 8px 16px 0px rgb(0, 0, 0, 0.2);
    z-index: 10;
    padding: 10px 20px;
    list-style: none;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.procedures-dropdown a {
    color: #000000;
    padding: 10px 30px;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 1em;
    font-family: var(--fonte-secundaria);
    font-size: 14px;
}

.procedures-dropdown a:hover {
    font-size: 14.3px !important;

}

/* ===== DROPDONW DE A CLINICA =====  */
.dropdown-content a:hover {
    color: #A67449;
}

.dropdown:hover .dropdown-content {
    display: block !important;
}

.nav ul li {
    margin: 0 15px;
    display: inline-block;
    position: relative;
}

/* ================================
   MENU HAMBURGUER - MOBILE
================================ */

/* Oculta o menu hambúrguer no desktop */
.hamburguer {
    display: none !important;
    position: absolute;
    margin-right: 0;
    margin-top: 20px;

}

.menu-mobile {
    display: none !important;
}

.menu-mobile ul::-webkit-scrollbar {
    width: 8px;
}

.menu-mobile ul::-webkit-scrollbar-track {
    background: #e8e0d4;
    /* cor do trilho */
    border-radius: 10px;
}

.menu-mobile ul::-webkit-scrollbar-thumb {
    background: var(--detalhes);
    /* cor da barrinha */
    border-radius: 10px;
}

.menu-mobile ul::-webkit-scrollbar-thumb:hover {
    background: #8d5a38;
    /* cor ao passar o mouse */
}

/* Estilos do ícone */
.hamburguer {
    width: 25px;
    height: 19px;
    position: absolute;
    top: 30px;
    left: 30px;
    cursor: pointer;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburguer span {
    width: 100%;
    height: 4px;
    background-color: var(--texto);
    border-radius: 4px;
    transition: 0.3s;
}

/* Animação quando ativo */
.hamburguer.ativo span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburguer.ativo span:nth-child(2) {
    opacity: 0;
}

.hamburguer.ativo span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


/* =======================
   MENU LATERAL MOBILE
======================= */
@media (max-width: 992px) {

    .container-box {
        align-items: center;
        display: flex;
        text-align: center;
        position: relative;
        justify-content: center;
    }

    .logo {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1;
        /* CENTRALIZA DE VEZ */
    }

    .hamburguer {
        position: absolute;
        top: 30px;
        left: 20px;
        z-index: 3000;
        display: flex !important;
    }


    .hamburguer.ativo {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 3000;
    }

    .hamburguer.ativo span {
        background-color: var(--fundo);
    }

    .menu-mobile {
        display: flex !important;
    }

    .hamburguer {
        display: flex !important;
    }

    /* Esconder o menu desktop no mobile */
    .nav ul {
        display: none !important;
    }

    .nav ul {
        display: none;
        /* esconde o menu desktop */
    }

    /* Sidebar */
    .menu-mobile {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        color: var(--fundo);
        background-color: var(--secundario);
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
        padding: 40px 20px;
        transition: left 0.35s ease;
        z-index: 2000;
        display: flex !important;
        flex-direction: column;
        text-align: left;
    }

    .menu-mobile.ativo {
        left: 0;
    }

    .menu-mobile ul {
        list-style: none;
        margin-top: 50px;
    }

    .hamburguer.ativo span {
        background-color: var(--fundo);
    }

    .menu-mobile li {
        margin-bottom: 25px;
    }

    .menu-mobile a {
        font-family: var(--fonte-secundaria);
        color: var(--fundo);
        font-size: 1.4em;
        text-decoration: none;
        padding: 10px 0;
        display: block;
    }

    /* Submenus (dropdowns) no mobile ficam em lista simples */
    .menu-mobile .dropdown-content,
    .menu-mobile .procedures-dropdown {
        display: none !important;
        position: relative;
        box-shadow: none;
        background: transparent;
    }
}

/* Submenu fechado por padrão */
.mobile-submenu {
    display: none;
    padding-left: 15px;
    flex-direction: column;
    max-height: 260px;
    /* impede de passar da tela */
    overflow-y: auto;
    /* ativa scroll se necessário */
}

.mobile-submenu li {
    margin-bottom: 12px;
}

/* Botão principal do submenu */
.mobile-btn {
    width: 100%;
    background: none;
    border: none;
    font-family: var(--fonte-secundaria);
    color: var(--fundo);
    font-size: 1.4em;
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
}

/* Setinha */
.mobile-btn::after {
    content: "▾";
    float: right;
    transition: 0.3s;
}

/* Quando abrir o submenu */
.mobile-btn.active::after {
    transform: rotate(200deg);
}

.hero-section {
    width: 100%;
    height: 100vh;

    position: relative;
    display: flex;
    align-items: center;

    background-image: url("imgs/ianna-hero-background.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

    margin-top: 20vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 500px;
    padding: 60px 60px;
    color: var(--fundo);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.15));
    z-index: 1;
}

.hero-content {
    max-width: 500px;
    padding: 60px 60px;
    color: var(--texto);
}

.hero-content h1 {
    font-family: var(--fonte-titulo);
    font-size: 3.7em;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--fundo);
}

.hero-content p {
    font-family: var(--fonte-secundaria);
    font-size: 1.5em;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--fundo);
}

.linha2 {
    width: 60%;
    margin-top: -20px;
}

.hero-button {
    display: inline-block;
    background-color: var(--detalhes);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--fonte-secundaria);
    font-size: 1.3em;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-button:hover {
    background-color: var(--fundo-section);
    color: var(--texto);
    transform: translateY(-4px);
}

.bg-tratamentos {
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: var(--fundo-section);
}

.treatments-section {
    padding: 0;
    text-align: center;
    margin: 0;
    background-color: var(--fundo);
}

.treatments-section .section-title {
    font-family: var(--fonte-titulo);
    font-size: 2em;
    font-weight: 400;
    color: var(--texto);
    margin-right: 20px;
    padding-top: 40px;
}

.treatment-slider {
    margin: 0 auto;
    padding: 20px 0;
}

/* --- CARTÃO INDIVIDUAL --- */
.treatment-card {
    width: auto !important;
    padding: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    min-height: 300px !important;
    text-align: center;
    position: relative !important;
    pointer-events: auto !important;
    z-index: 1 !important;
    transition: transform 0.3s ease;
}

.treatments-deck-slider .swiper-wrapper,
.treatments-deck-slider .swiper-slide {
    pointer-events: none !important;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-card h3 {
    font-family: var(--fonte-secundaria);
    font-size: 1.5em;
    color: var(--detalhes);
    margin: 15px 0 10px;
    text-align: center;
}

.treatment-card p {
    font-family: var(--fonte-secundaria);
    font-size: 1em !important;
    font-weight: 700;
    color: var(--texto);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

.treatment-card .card-image-placeholder img {
    width: 100%;
    height: auto;
}

.treatment-card .details-button {
    margin-top: auto;
    display: block !important;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--detalhes);
    border: 2px solid var(--detalhes);
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--fonte-secundaria);
    font-weight: 600;
    transition: background-color 0.3s;
    position: relative !important;
    z-index: 9999 !important;
}

.details-button:hover {
    background-color: var(--detalhes);
    color: #ffffff;
}

.treatment-card .card-image-placeholder,
.treatment-card .card-image-placeholder img {
    pointer-events: none;
}

/* IMPORTANTE: Camadas internas não devem capturar o toque */
.treatment-card * {
    pointer-events: auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(244, 240, 231, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px 0;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--fundo);
    font-family: var(--fonte-secundaria);
    color: var(--texto);
    padding: 2.5rem;
    width: 90%;
    max-width: 680px;
    border-radius: 10px;
    border: 1px solid rgba(166, 116, 73, 0.2);
    box-shadow: 0 10px 30px rgba(74, 54, 34, 0.1);
    position: relative;
    margin: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    font-family: var(--fonte-titulo);
    color: var(--detalhes);
    font-size: 3em;
    font-weight: 500;
    border-bottom: 2px solid var(--fundo-section);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    font-family: var(--variação);
    color: var(--secundario);
    font-size: 3em;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-content p,
.modal-content ul {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
}

.modal-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.modal-content ul li {
    margin-bottom: 0.8rem;
}

.close-button {
    color: var(--secundario);
    position: absolute;
    top: 15px;
    right: 8px;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: var(--detalhes);
}

.whatsapp-button {
    display: block;
    width: 50%;
    text-align: center;
    margin: auto;
    background-color: var(--detalhes);
    color: var(--fundo);
    padding: 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(166, 116, 73, 0.4);
}

.whatsapp-button:hover {
    background-color: var(--secundario);
    /* Cor secundária no hover */
    transform: translateY(-2px);
}


/* ===== CARROSSEL INFINITO ===== */

.treatments-deck-slider {
    width: 100%;
    padding: 60px 0;
}

.treatments-deck-slider .swiper-slide {
    width: 380px;
    height: auto;
}

/* Ajuste do card dentro do Swiper */
.treatment-card {
    background: var(--fundo);
    border-radius: 16px;
    padding: 20px;
    transform-origin: center;
}

.treatment-card img {
    border-radius: 12px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* ====== ORGANIZAÇÃO DA SEÇÃO (TEXTO ESQ / SLIDER DIR) ====== */

.treatments-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* TEXTO À ESQUERDA */
.treatments-text {
    width: 40%;
    text-align: center;
    margin-left: 25px !important;
}

.treatments-text .impact-title {
    font-size: 3.5em;
    line-height: 1.1em;
    font-family: var(--fonte-requisitados);
    color: var(--texto);
    font-weight: 500;
    font-style: normal;

}

.treatments-text .impact-sub {
    font-size: 1.5em;
    line-height: 1.5em;
    font-family: var(--fonte-secundaria);
    color: var(--secundario);
    margin-top: 15px;
    text-align: center;
}

.treatments-text span {
    color: var(--detalhes);
}

/* SLIDER À DIREITA */
.treatments-slider-wrapper {
    width: 60%;
}

/* ======== CARDS MAIORES ======== */

.treatment-card {
    max-width: 350px;
    width: 100%;
    min-height: 420px !important;
    /* maior */
    padding: 30px;
    border-radius: 20px;
}

.treatment-card .card-image-placeholder img {
    width: 100%;
    height: 260px;
    /* maior */
    object-fit: cover;
    border-radius: 18px;
}

.treatment-card h3 {
    font-size: 1.6em;
    margin-top: 20px;
}

.treatment-card p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.treatment-card .details-button {
    margin-top: auto;
}

.treatments-deck-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

.depoimentos {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--fundo);
    min-height: 80vh;
    /* mantém proporção, mas permite crescer */
    height: auto;
}

.depoimentos .section-title {
    font-family: var(--fonte-titulo);
    font-size: 3em;
    font-weight: 400;
    color: var(--texto);
    margin-bottom: 10px;
}

.depoimentos-slider {
    width: 100%;
    padding-bottom: 50px;
}

/* --- ESTILO DO SLIDE (IMAGEM + TEXTO) --- */
.depoimentos-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    flex-direction: row;
    gap: 40px;
    min-height: 500px;
}

/* --- ESTILO DO CARD DE TEXTO --- */
.card-depoimentos {
    width: 90%;
    max-width: 500px;
    border-radius: 10% 40%;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.card-depoimentos:hover {
    transform: translateY(-7px);

}

.card-depoimentos p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2em;
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 0;
    font-style: italic;
}

.card-depoimentos .procedure-type {
    font-family: var(--fonte-secundaria);
    color: var(--detalhes);
    font-size: 1.2em;
    font-style: normal;
}

.card-depoimentos p br {
    display: block;
    margin: 5px 0;
}

/* --- SLIDER ANTES E DEPOIS --- */

.image-comparison-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    margin: 0;
    border: 5px solid var(--detalhes);
}

.image-comparison-after,
.image-comparison-before-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* O elemento 'before' é o que faz o recorte (clipping) */
.image-comparison-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    pointer-events: none;
    transition: width 0.3s ease-out;
    /* Transição para o retorno */
}

/* O slider (input type=range) */
.image-comparison-slider {
    position: absolute;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    cursor: grab;
    z-index: 10;
}

/* Estilo da linha divisória central (thumb do slider) */
.slider-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background-color: #fff;
    border: 2px solid var(--cor-primaria);
    border-radius: 2px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
    transition: left 0.3s ease-out;
    /* Transição para o retorno */
}

.linha-navegacao {
    position: relative;
    width: 100%;
    height: 1px;
    background: #d3c7ad;
    margin: 50px 0;
}

.circulo-setas {
    position: absolute;
    left: 50% !important;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F4F0E7;
    border: 2px solid #A67449;
    color: #4a3622;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.circulo-setas:hover {
    background: #f0e7d1;
}

.scroll-hint {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 20px;
    font-size: 14px;
    background: #F4F0E7;
    border: 1px solid #A67449;
    border-radius: 20px;
    color: #4a3622;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.scroll-hint:hover {
    background: #f0e7d1;
    border-color: #64564c;
}

/* Estilo da Alça (Thumb) do Slider no Webkit (Chrome, Safari) */
.image-comparison-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 100%;
    cursor: grab;
    background: transparent;
}

/* Estilo das Etiquetas ANTES/DEPOIS */
.label-img {
    position: absolute;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    z-index: 20;
}

.label-antes {
    top: 10px;
    left: 10px;
}

.label-depois {
    top: 10px;
    right: 10px;
}

/* --- NAVEGAÇÃO DO SWIPER --- */

.swiper-button-next,
.swiper-button-prev {
    color: var(--detalhes) !important;
    top: 60%;
    width: 2%;
    transform: translateY(-50%) scale(1.3) !important;
    transition: color 0.3s;
    margin: 0 10px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--secundario) !important;
}

.swiper-pagination-bullet {
    background: var(--secundario);
    opacity: 0.5;
    transform: translateY(-60%) scale(1.7);
}

.swiper-pagination-bullet-active {
    background: var(--detalhes);
    opacity: 1;
}

/* ========== PROCEDIMENTOS ========== */

.procedures-section {
    background: var(--fundo-section);
    padding: 70px 6%;
    text-align: center;
    position: relative;
}

.procedures-section .section-title {
    font-family: var(--fonte-titulo);
    text-transform: uppercase;
    font-size: 3em;
    color: var(--texto);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.procedures-section .section-subtitle {
    font-family: var(--fonte-secundaria);
    font-size: 1.1em;
    color: var(--secundario);
    max-width: 880px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.procedures-slider {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Base do Card Vitrine */
.procedure-card.horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 45px;
    max-width: 850px;
    background: var(--fundo);
    margin: 50px auto;
    padding: 40px;
    border-radius: 28px;
    position: relative;
    border: 1px solid rgba(166, 116, 73, 0.1);
    box-shadow: 0 25px 60px rgba(74, 54, 34, 0.08);
}

/* Moldura Animada Sutil */
.procedure-card.horizontal::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: conic-gradient(from var(--angle), transparent 75%, var(--detalhes) 100%);
    border-radius: 29px;
    z-index: -1;
    animation: spin 6s linear infinite;
}

@keyframes spin {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

/* Área do Vídeo */
.procedure-showcase {
    flex: 0 0 280px;
    position: relative;
    z-index: 2;
}

.procedure-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    background: var(--secundario);
    box-shadow: 15px 15px 40px rgba(62, 58, 55, 0.2);
}

.procedure-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1.03);
}

/* Área de Texto */
.procedure-info {
    flex: 1;
    text-align: left;
}

.procedure-badge {
    display: inline-block;
    font-family: var(--fonte-secundaria);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--detalhes);
    background: var(--fundo-section);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.procedure-title {
    font-family: var(--variação);
    /* Playfair Display */
    font-size: 2.8rem;
    color: var(--detalhes);
    line-height: 1.1;
    margin-bottom: 20px;
}

.procedure-description {
    font-family: var(--fonte-requisitados);
    /* Quicksand */
    font-size: 1.05rem;
    color: var(--texto);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
}

.btn-saiba-mais {
    background: var(--detalhes);
    color: var(--fundo);
    font-family: var(--fonte-secundaria);
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
    background: var(--secundario);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.procedure-video {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    box-shadow: 15px 15px 40px rgba(62, 58, 55, 0.2);
    transition: transform 0.35s ease;
}

.procedure-video img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.procedure-video:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* 2. O botão de play vai para o centro absoluto */
.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    /* O transform faz o ajuste fino para o centro real */
    transform: translate(-50%, -50%);

    z-index: 100;
    width: 110px;
    /* Tamanho do ícone do Shorts */
    height: 110px;

    background: none !important;
    border: none !important;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    pointer-events: none;
    /* Deixa o clique passar para o vídeo se necessário */
}

.play-button-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button-icon svg {
    width: 100%;
    height: auto;
    /* Filtro leve de sombra apenas no ícone para dar leitura sobre vídeos claros */
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Efeito suave ao passar o mouse */
.play-button-wrapper:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.procedure-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 4;
}

.procedure-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.procedure-modal-overlay.active {
    display: flex;
}

.procedure-modal-card {
    background: var(--fundo);
    width: 90%;
    max-width: 620px;
    height: auto;
    max-height: 450px;
    padding: 40px;
    border-radius: 22px;
    position: relative;
    animation: modalUp 0.45s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.procedure-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secundario);
}

.procedure-modal-card h3 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 15px;
    color: var(--detalhes);
}

.procedure-info {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.procedure-info li {
    font-family: var(--fonte-titulo);
    color: var(--texto);
    margin-bottom: 20px;
    font-size: 1.5em;
}

#modalDescription {
    font-size: 1.6em;
    color: var(--texto);
}

.procedure-info li span {
    font-size: 1em;
}

.procedure-modal-cta {
    width: 340px;
    display: block;
    text-align: center;
    margin: 50px auto;
    padding: 16px;
    font-size: 1em;
    font-family: var(--fonte-secundaria);
    border-radius: 50px;
    background: var(--detalhes);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(8px);
    transition: 0.42s ease, transform 0.42s ease;
    overflow: hidden;
    position: relative;
    border: none;
    cursor: pointer;
}

.procedure-modal-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.492), transparent);
    transform: skewX(-20deg);
    transition: left 0.9s ease;
    pointer-events: none;
}

.procedure-modal-cta:hover::after {
    left: 120%;
}

.procedure-modal-cta:hover {
    background: var(--secundario);
    transform: translateY(0);
}

.button-swiper-next,
.button-swiper-prev {
    color: var(--detalhes) !important;
    transform: scale(1.3);
    transition: 0.3s ease;
}

.button-swiper-next:hover,
.button-swiper-prev:hover {
    color: var(--texto) !important;
    transform: scale(1.4);
}

/* Isso força a paginação a sair de cima dos cards e ir para baixo */
.button-swiper-pagination {
    position: relative !important;
    /* Libera o elemento do 'grude' do fundo */
    bottom: 0 !important;
    /* Reseta a posição padrão do Swiper */
    margin-top: 20px !important;
    /* Agora sim, o margin vai funcionar e empurrar */
    width: 100% !important;
    display: block !important;
    text-align: center;
}

/* Garanta que os bullets apareçam bem */
.swiper-pagination-bullet {
    background: var(--secundario) !important;
    opacity: 0.35;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    /* Espaçamento entre as bolinhas */
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--detalhes) !important;
    opacity: 1;
}

/* =============================
   SEÇÃO PRINCIPAL
============================= */

.estrutura-section {
    background: var(--fundo);
    padding: 80px 3%;
    color: var(--texto);
    font-family: var(--fonte-secundaria);
}

/* Container mais largo, para colunas grandes */
.estrutura-container {
    max-width: 1500px;
    margin: 0 auto;
}

/* =============================
   TÍTULO
============================= */

.title {
    padding-top: -50px;
    margin-bottom: 100px;
}

.title h1 {
    font-family: var(--fonte-titulo);
    font-size: 4.2em;
    font-weight: 400;
    color: var(--texto);
    margin-bottom: 10px;
    text-align: center;
}

.title p {
    text-align: center;
    font-size: 1.6rem;
    color: var(--texto);
}

/* ===============================
   DROPDOWN – VISUAL MELHORADO
=============================== */

.dropdown-bloco {
    background: linear-gradient(145deg, #6b4727cc, #5a381fdd);
    padding: 23px;
    border-radius: 10px;
    margin-bottom: 28px;
    color: #fff;

    /* profundidade mais elegante */
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.22),
        inset 0 0 25px rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);

    cursor: pointer;
    transition: transform .26s ease, box-shadow .35s ease, background .35s ease;
}

/* Hover mais clean e premium */
.dropdown-bloco:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        inset 0 0 32px rgba(255, 255, 255, 0.06);
}

/* Título */
.dropdown-titulo h3 {
    font-family: var(--fonte-titulo);
    font-size: 2.35rem;
    line-height: 1.20;
    font-weight: lighter;
}

.dropdown-titulo {
    display: flex;
    justify-content: space-between;
    /* empurra a seta para a direita */
    align-items: center;
    width: 100%;
}

/* Seta mais elegante */
.dropdown-titulo .seta {
    margin-left: auto;
    font-size: 2.2rem;
    opacity: 0.9;
    transition: transform .4s ease, opacity .3s ease;
}

.dropdown-bloco.ativo .seta {
    transform: rotate(180deg);
    opacity: 1;
}

/* Conteúdo */
.dropdown-conteudo {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height .48s ease;
}

.dropdown-conteudo ul {
    margin-top: 16px;
    padding-left: 28px;
}

.dropdown-conteudo li {
    font-size: 1.18rem;
    line-height: 1.75;
    margin-bottom: 12px;

    opacity: 0;
    transform: translateY(8px);
    transition: opacity .42s ease, transform .42s ease;
}

/* Quando abrir */
.dropdown-bloco.ativo .dropdown-conteudo {
    max-height: 600px;
    animation: slideFade .42s ease forwards;
}

.dropdown-bloco.ativo .dropdown-conteudo li {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-conteudo li::before {
    content: "•";
    position: absolute;
    left: -18px;
    color: var(--detalhes);
    font-size: 1.45rem;
}

/* =============================
   GRID PRINCIPAL (DROPDOWN + GALERIA)
============================= */
.estrutura-conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    align-items: center;
}

/* =============================
   COLUNA DIREITA (GALERIA)
============================= */

/* Wrapper geral */
.coluna-galeria {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    border-radius: 22px;
}

/* Área principal do slider */
.gallery-display {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    border: 3px solid #A67449;
    border-radius: 22px !important;
    overflow: hidden;
    position: relative;
}

/* Cada slide */
.gallery-display .swiper-slide {
    width: 100%;
    height: 100%;
}

/* Imagens dentro dos slides */
.gallery-display .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Paginação (bolinhas) */

.swiper-pagination-estrutura .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.swiper-pagination-estrutura .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.35);
    border-color: #fff;
}

/* ==========================================
   HERO SLIDER — FADE SUAVE
========================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 10px;

    margin-top: -35px;
    margin: 0 auto;
}

.hero-slider .track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide-item {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}

.hero-slider .slide-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.55));
    z-index: 2;
}

.hero-slider .slide-item.active {
    opacity: 1;
}

/* Overlay do texto */
.hero-slider .overlay-content {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

/* ===== LOCALIZAÇÃO ===== */

.localizacao {
    padding: 80px 5%;
    text-align: center;
    background: var(--fundo-section);
}

.localizacao h1 {
    font-family: var(--variação);
    font-size: 3.4em;
    color: var(--texto);
    line-height: 1.2;
    font-weight: lighter;
}

.localizacao h1 .caminho {
    color: #985a24;
    border-radius: 23px;
    padding: 5px 0 5px 0;
}

.localizacao .sub {
    font-family: var(--fonte-secundaria);
    color: var(--texto);
    margin-top: 10px;
    font-size: 1.7em;
}

/* Wrapper */
.localizacao-wrapper {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Bloco de informações */
.info-local {
    width: 90%;
    height: 85%;
    background: var(--fundo);
    padding: 30px;
    border-radius: 18px;
    color: var(--texto);
    margin: auto;
    line-height: 2.3em;
    font-family: var(--fonte-secundaria);
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: subir 0.8s ease forwards;
    opacity: 0;
}

.info-local h2,
.info-local h3 {
    text-align: center;
    font-family: var(--fonte-titulo);
    font-size: 2em;
    color: var(--detalhes);
    margin-bottom: 10px;
}

.info-local h3 {
    margin-top: 30px;
    margin-bottom: 25px;
}

.info-local p {
    margin-top: 20px;
    text-align: center;

}

.ender {
    color: var(--texto);
    font-size: 1.4em;
}

.horarios li {
    list-style: none;
    text-align: center;
    font-size: 1.4em;
    margin-top: -10px;
    margin-bottom: 6px;
}

/* Mapa */
.localizacao iframe {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    border: none;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    animation: aparecer 1s ease forwards;
    opacity: 0;
}

/* Botão */
.btn-contato2 {
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin: auto 20px;
    padding: 12px;
    background: var(--detalhes);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-contato2:hover {
    background: #895c33;
}


/* Animações suaves */
@keyframes subir {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes aparecer {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.premium-minimal {
    padding: 30px 20px;
    background: var(--fundo);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.premium-minimal .marca {
    font-size: 1.9em;
    font-weight: 700;
    color: #A67449;
    margin-bottom: 4px;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.premium-minimal .marca:hover {
    transform: translateY(-4px);
}

.premium-minimal .sub {
    color: #6f6f6f;
    font-size: 1.2em;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.premium-minimal .sub:hover {
    transform: translateY(-4px);
}

.premium-minimal .copy {
    font-size: 1.3em;
    color: #999;
    transition: transform 0.3s ease;
}

.premium-minimal .copy:hover {
    transform: translateY(-4px);

}

.premium-minimal .dev {
    margin-top: 6px;
    font-size: 1em;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.premium-minimal .dev:hover {
    transform: translateY(-4px);

}

/*=====================
 PARTE DE QUEM SOU EU
 =======================
*/
.quem-sou-eu {
    padding: 100px 0;
    background: #f9f4ee;
}

.container-quem {
    display: flex;
    height: 90vh;
    gap: 60px;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.foto-quem {
    width: 130%;
    height: 620px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

}

.foto-quem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quemSouEu-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.quemSouEu-slider {
    width: 100%;
    height: 100%;
}

.texto-quem h2 {
    margin-left: 70px;
    font-size: 3em;
    font-family: var(--fonte-titulo);
    color: var(--detalhes);
    margin-bottom: 20px;
}

.texto-quem p {
    font-family: var(--fonte-secundaria);
    font-size: 1.2rem;
    line-height: 1.2em;
    margin-bottom: 18px;
    margin-left: 70px;
    color: var(--texto);
}

.dados-quem {
    display: flex;
    gap: 40px;
    margin-top: 25px;
    margin-left: 70px;
}

.dados-quem div {
    font-size: 1.3em;
    text-align: center;
}

.dados-quem strong {
    display: block;
    font-size: 2.5rem;
    color: var(--detalhes);
}

.dados-quem span {
    font-size: 1.5rem;
    color: var(--texto);
}

.filosofia {
    padding: 100px 0;
    background: var(--fundo-section);
}

.container-filosofia {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.filosofia-texto h2 {
    font-size: 3.5rem;
    color: var(--texto);
    font-family: var(--fonte-titulo);
    margin-bottom: 20px;
}

.filosofia-texto p {
    font-size: 1.4rem;
    color: var(--texto);
    margin-bottom: 18px;
    font-family: var(--fonte-secundaria);
}

.filosofia-img img {
    width: 420px !important;
    height: 510px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.17);
    animation: missionBreath 4s ease-in-out infinite;
    will-change: transform, filter;
}

/* Animação suave */
@keyframes missionBreath {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.025);
        filter: brightness(1.05);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}



/* BOTÃO FLOANTE */
.chat-float {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--detalhes);
    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;
}

.chat-float span {
    margin-top: 8px;
    font-size: 22px;
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 0 0 0 rgba(166, 115, 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: #fff;
    border-radius: 18px;
    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 {
    background: var(--detalhes);
    color: #fff;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header span {
    display: block;
    font-size: 12px;
    opacity: .85;
}

.chat-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
}

/* CORPO */
.chat-body {
    padding: 14px;
    max-height: 260px;
    overflow-y: auto;
}

/* MENSAGENS */
.bot {
    background: var(--fundo-section);
    color: #000000;
    padding: 10px 14px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-size: 14px;
}

.user {
    background: #d19f6d;
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    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: none;
    border-radius: 12px;
    background: var(--detalhes);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.chat-options button:hover {
    background: #895c33;
}

.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: rgba(0, 0, 0, 0.25);
    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 #ddd;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

.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(--detalhes);
    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: #895c33;
    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.15);
    border: none;
    color: #fff;
    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(2px);
    z-index: 9998;
}

.chatbot {
    z-index: 10000;
}

/* ================================
   RESPONSIVIDADE DO HEADER
================================ */

/* Tablets e telas médias */
@media (max-width: 1200px) {

    .logo h1 {
        font-size: 2.6em;
    }

    .logo p {
        font-size: 1em;
    }

    .container-box {
        height: auto;
        padding: 40px 20px;
    }

    .nav {
        font-size: 0.9em;
        margin-top: 60px;
    }

    .hamburguer {
        margin: 0;
        /* Reset total */
        position: absolute;
        right: 25px;
        /* distância controlada */
        top: 35px;
        /* posição linda e alinhada */
        z-index: 1000;
    }

    .procedures-section {
        padding: 90px 5%;
    }

    .procedure-card.horizontal {
        max-width: 95%;
        /* Ocupa mais espaço na tela */
        gap: 30px;
        padding: 30px;
    }

    .procedure-title {
        font-size: 2.4rem;
        /* Redução leve para não quebrar linha */
    }
}

/* Celulares grandes */
@media (max-width: 992px) {
    .container-box {
        margin: auto;
        padding: 0px;
        height: 100px;
    }

    .logo {
        margin: 30px 0 -30px;
    }

    .logo h1 {
        text-align: center;
        font-size: 2.2em;
    }

    .logo p {
        text-align: center;
        font-size: 0.95em;
    }

    .hamburguer {
        margin: 0;
        /* Reset total */
        position: absolute;
        right: 25px;
        /* distância controlada */
        top: 35px;
        /* posição linda e alinhada */
        z-index: 10000;
    }

    .hamburguer span {
        height: 3px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .procedures-section {
        padding: 80px 5%;
    }

    .procedure-card.horizontal {
        display: flex;
        flex-direction: row;
        /* Mantém horizontal como você pediu */
        align-items: center;
        gap: 20px;
        /* Um pequeno espaço é vital para o vídeo não encostar no texto */
        padding: 25px;
        max-width: 850px;
        /* Mantém o tamanho do card */
        height: auto;
        min-height: 380px;
        /* Garante altura para o vídeo aparecer */
    }

    .procedure-showcase {
        flex: 0 0 180px;
        /* Diminuímos a largura para caber melhor no tablet */
        position: relative;
        height: 420px;
        /* Forçamos uma altura fixa para o vídeo Shorts */
        display: block !important;
    }

    .procedure-video {
        width: 100%;
        height: 100%;
        /* Ocupa toda a altura do showcase */
        padding-top: 0;
        /* Removemos o padding-top percentual para usar a altura fixa */
        border-radius: 15px;
    }

    .procedure-info {
        flex: 1;
        text-align: left;
        /* Mantém o texto alinhado à esquerda */
    }

    .procedure-title {
        font-size: 1.6rem;
        /* Reduzimos um pouco para não empurrar o vídeo */
        line-height: 1.2;
    }

    .procedure-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* Limita a 3 linhas para o card não crescer demais */
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn-saiba-mais {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .procedures-slider {
        padding-bottom: 20px;
    }
}

/* Celulares médios */
@media (max-width: 768px) {
    .container-box {
        margin: auto;
        padding: 0px;
        height: 100px;
    }

    .hamburguer {
        margin: 0;
        /* Reset total */
        position: absolute;
        right: 25px;
        /* distância controlada */
        top: 35px;
        /* posição linda e alinhada */
        z-index: 1000;
    }

    .logo {
        margin-left: 6px;
    }

    .logo h1 {
        text-align: center;
        font-size: 1.9em;
    }

    .logo p {
        text-align: center;
        font-size: 0.90em;
        margin-top: 1px;
    }

    .menu-mobile a,
    .mobile-btn {
        font-size: 1.2em;
    }

    .mobile-submenu li a {
        font-size: 1.1em;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 18px;
        right: 18px;
    }

    .procedures-section {
        padding: 70px 6%;
    }

    /* Ajuste do Card para não ficar esticado */
    .procedure-card.horizontal {
        flex-direction: column;
        /* No celular, a coluna é melhor para o vídeo aparecer bem */
        gap: 15px;
        padding: 20px;
        max-width: 320px;
        /* Reduzimos a largura para ele ficar mais centralizado e curto */
        margin: 0 auto;
        height: auto;
        max-height: 560px;
        /* Trava de segurança para não esticar demais */
        overflow: hidden;
    }

    /* O Vídeo (Showcase) - Menor e mais proporcional */
    .procedure-showcase {
        flex: none;
        width: 100%;
        max-width: 180px;
        /* Reduzimos o vídeo para sobrar espaço vertical */
        height: 320px;
        /* Altura controlada para o Shorts */
        margin: 0 auto;
    }

    .procedure-video {
        width: 100%;
        height: 100%;
        padding-top: 0;
        border-radius: 12px;
    }

    /* Área de Texto mais compacta */
    .procedure-info {
        text-align: center;
        width: 100%;
    }

    .procedure-title {
        font-size: 1.4rem;
        /* Diminuímos o título */
        margin-top: 5px;
        margin-bottom: 8px;
    }

    .procedure-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
        /* Limita a 2 ou 3 linhas no máximo */
        display: -webkit-box;
        display: box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        box-orient: vertical;
        overflow: hidden;
    }

    .btn-saiba-mais {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 100%;
        /* Botão ocupa a largura do texto para facilitar o toque */
    }

    .play-button-wrapper {
        width: 75px;
        height: 75px;
    }


    .play-button-icon {
        width: 100%;
        height: 100%;
    }

    .play-button-icon svg {
        width: 100%;
        height: 100%;
        /* Filtro para o ícone não "sumir" em vídeos muito claros */
        filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
    }

    /* Ajuste do Título da Seção */
    .procedures-section .section-title {
        font-size: 2.2em;
    }

    .procedure-modal-card h3 {
        font-size: 2rem;
    }

    .procedures-slider {
        padding-bottom: 0px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .button-swiper-pagination {
        margin: 50px auto !important;
        transform: translateY(0%) scale(0.9);
    }
}

@media (max-width: 767px) {

    .procedures-section .section-title {
        font-size: 2.4em;
    }

    .procedures-section .section-subtitle {
        font-size: 1em;
        padding: 0 10px;
    }

    .procedure-card {
        max-width: 100%;
        padding: 38px 28px;
        border-radius: 14px;
    }

    .procedure-text h3 {
        font-size: 1.9em;
    }

    .procedure-text p {
        font-size: 1.05em;
        line-height: 1.6;
    }

    .btn-saiba-mais {
        padding: 12px 30px;
    }

    /* Swiper */
    .button-swiper-next,
    .button-swiper-prev {
        transform: scale(1.1);
    }

    /* Modal */
    .procedure-modal-card {
        max-height: 350px;
        width: 92%;
        padding: 65px 26px;
    }

    .procedure-info li {
        font-size: 1.3em;
    }

    .button-swiper-pagination {
        margin: 50px auto !important;
        transform: translateY(0%) scale(0.9);
    }
}

/* Celulares pequenos */
@media (max-width: 430px) {
    .container-box {
        margin: auto;
        padding: 0px;
        height: 100px;
    }

    .logo {
        margin-left: 6px;
    }

    .logo h1 {
        margin: auto;
        font-size: 1.6em;
    }

    .logo p {
        margin: auto;
        font-size: 0.85em;
    }

    .hamburguer {
        margin: 0;
        /* Reset total */
        position: absolute;
        right: 25px;
        /* distância controlada */
        top: 35px;
        /* posição linda e alinhada */
        z-index: 10000;
    }

    .menu-mobile {
        width: 80%;
    }

    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .procedure-text h3 {
        font-size: 1.25rem;
    }

    .procedures-section {
        padding: 60px 4%;
    }

    /* Ajuste do Card para não ficar esticado */
    .procedure-card.horizontal {
        flex-direction: column;
        /* No celular, a coluna é melhor para o vídeo aparecer bem */
        gap: 15px;
        padding: 20px;
        max-width: 320px;
        /* Reduzimos a largura para ele ficar mais centralizado e curto */
        margin: 0 auto;
        height: auto;
        max-height: 560px;
        /* Trava de segurança para não esticar demais */
        overflow: hidden;
    }

    /* O Vídeo (Showcase) - Menor e mais proporcional */
    .procedure-showcase {
        flex: none;
        width: 100%;
        max-width: 180px;
        /* Reduzimos o vídeo para sobrar espaço vertical */
        height: 320px;
        /* Altura controlada para o Shorts */
        margin: 0 auto;
    }

    .procedure-video {
        width: 100%;
        height: 100%;
        padding-top: 0;
        border-radius: 12px;
    }

    /* Área de Texto mais compacta */
    .procedure-info {
        text-align: center;
        width: 100%;
    }

    .procedure-title {
        font-size: 1.4rem;
        /* Diminuímos o título */
        margin-top: 5px;
        margin-bottom: 8px;
    }

    .procedure-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
        /* Limita a 2 ou 3 linhas no máximo */
        display: -webkit-box;
        display: box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        box-orient: vertical;
        overflow: hidden;
    }

    .btn-saiba-mais {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 100%;
        /* Botão ocupa a largura do texto para facilitar o toque */
    }

    /* Removemos espaços desnecessários da seção */
    .procedures-section {
        padding: 40px 5%;
    }

    .procedures-slider {
        padding-bottom: 20px;
    }

}

/* Telas muito pequenas (tipo iPhone SE) */
@media (max-width: 360px) {
    .container-box {
        margin: auto;
        padding: 0px;
        height: 100px;
    }

    .logo {
        margin-left: 6px;
    }

    .logo h1 {
        margin: auto;
        text-align: center;
        font-size: 1.4em;
    }

    .logo p {
        margin: auto;
        text-align: center;
        font-size: 0.85em;
    }

    .menu-mobile a,
    .mobile-btn {
        font-size: 1.05em;
    }

    .hamburguer {
        margin: 0;
        /* Reset total */
        position: absolute;
        right: 25px;
        /* distância controlada */
        top: 35px;
        /* posição linda e alinhada */
        z-index: 1000;
    }

    .whatsapp-float {
        width: 35px;
        height: 35px;
        bottom: 12px;
        right: 12px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .procedure-title {
        font-size: 1.6rem;
    }

    .procedure-showcase {
        max-width: 200px;
        /* Reduz vídeo para não ocupar a tela toda */
    }

    .procedure-badge {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .procedures-section .section-title {
        font-size: 1.8em;
    }

    /* Ajuste do Card para não ficar esticado */
    .procedure-card.horizontal {
        flex-direction: column;
        /* No celular, a coluna é melhor para o vídeo aparecer bem */
        gap: 15px;
        padding: 20px;
        max-width: 320px;
        /* Reduzimos a largura para ele ficar mais centralizado e curto */
        margin: 0 auto;
        height: auto;
        max-height: 560px;
        /* Trava de segurança para não esticar demais */
        overflow: hidden;
    }

    /* O Vídeo (Showcase) - Menor e mais proporcional */
    .procedure-showcase {
        flex: none;
        width: 100%;
        max-width: 180px;
        /* Reduzimos o vídeo para sobrar espaço vertical */
        height: 320px;
        /* Altura controlada para o Shorts */
        margin: 0 auto;
    }

    .procedure-video {
        width: 100%;
        height: 100%;
        padding-top: 0;
        border-radius: 12px;
    }

    /* Área de Texto mais compacta */
    .procedure-info {
        text-align: center;
        width: 100%;
    }

    .procedure-title {
        font-size: 1.4rem;
        /* Diminuímos o título */
        margin-top: 5px;
        margin-bottom: 8px;
    }

    .procedure-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
        /* Limita a 2 ou 3 linhas no máximo */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn-saiba-mais {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 100%;
        /* Botão ocupa a largura do texto para facilitar o toque */
    }

    /* Removemos espaços desnecessários da seção */
    .procedures-section {
        padding: 40px 5%;
    }

    .procedures-slider {
        padding-bottom: 90px;
    }

}

/* ======================================================
      HERO – RESPONSIVIDADE TOTAL  
====================================================== */

@media (max-width: 1220px) {

    .hero-section {
        height: 75vh;
        margin-top: 18vh;
        background-position: left center;
    }

    .hero-content {
        padding: 50px 50px;
    }

    .hero-content h1 {
        font-size: 3.2em;
    }

    .hero-content p {
        font-size: 1.4em;
    }

    .linha2 {
        width: 55%;
    }
}


@media (max-width: 992px) {

    .hero-section {
        height: 70vh !important;
        margin-top: 0;
        border-radius: 0;

        background-position: 65% center;

    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.35));
    }

    .hero-content {
        max-width: 100%;
        padding: 0 8% 40px;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        margin-top: 5%;
    }

    .hero-content h1 {
        font-size: 3.6em;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 1.7em;
        max-width: 90%;
    }

    .linha2 {
        width: 65%;
        margin-top: 10px;
    }

    .hero-button {
        align-self: flex-start;
        font-size: 1.6em;
        padding: 14px 17px;
    }
}

@media (max-width: 768px) {

    .hero-section {
        height: 70vh !important;
        margin-top: 0;
        border-radius: 0;

        background-position: 65% center;

    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.35));
    }

    .hero-content {
        max-width: 100%;
        padding: 0 8% 40px;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        margin-top: 5%;
    }

    .hero-content h1 {
        font-size: 3.6em;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 1.7em;
        max-width: 90%;
    }

    .linha2 {
        width: 65%;
        margin-top: 10px;
    }

    .hero-button {
        align-self: flex-start;
        text-align: center;
        font-size: 1.4em;
        padding: 14px 17px;
        width: 100%;
        /* Botão largo é melhor para o polegar no mobile */
        max-width: 260px;
    }

}

@media (max-width: 767px) {

    .hero-section {
        /* svh ignora a variação da barra de endereços, travando o zoom */
        height: 80svh !important;
        min-height: 550px;

        /* Força a imagem a ficar parada sem efeitos de paralaxe bugados */
        background-attachment: scroll !important;
        background-position: 80% center !important;
        background-size: cover !important;

        display: flex;
        align-items: flex-end;
        /* Conteúdo no rodapé */
        position: relative;
        overflow: hidden;
    }

    .hero-overlay {
        /* Gradiente mais denso na base para garantir leitura */
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.95) 0%,
                rgba(0, 0, 0, 0.5) 45%,
                transparent 100%) !important;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px 40px;
        /* Respiro no fundo */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 5;
    }

    .hero-content h1 {
        font-size: 1.9em;
        line-height: 1.1;
        margin-bottom: 10px;
        color: #FFFFFF;
    }

    .hero-content p {
        font-size: 1.05em;
        max-width: 90%;
        margin-bottom: 15px;
        color: #f0f0f0;
    }

    .linha2 {
        width: 60%;
    }

    .hero-button {
        width: 100%;
        max-width: 220px;
        align-self: center;
        padding: 15px 20px;
        font-size: 1.1em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}


/* =============== 430px =============== */
@media (max-width: 430px) {

    .hero-section {
         height: 80svh !important;
        min-height: 550px;

        /* Força a imagem a ficar parada sem efeitos de paralaxe bugados */
        background-attachment: scroll !important;
        background-position: 80% center !important;
        background-size: cover !important;

        display: flex;
        align-items: flex-end;
        /* Conteúdo no rodapé */
        position: relative;
        overflow: hidden;
    }

    .hero-overlay {
        /* Gradiente que escurece de baixo para cima */
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.8) 0%,
                rgba(0, 0, 0, 0.4) 40%,
                transparent 100%) !important;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 20px 30px;
        /* Respiro lateral e folga no fundo */
        align-items: center;
        /* Centraliza o texto para um look premium */
        text-align: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2em;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1em;
        max-width: 100%;
    }

    .linha2 {
        width: 65%;
        /* Linha pequena e centralizada */
        margin: 15px auto;
    }

     .hero-button {
        width: 100%;
        max-width: 220px;
        align-self: center;
        padding: 15px 20px;
        font-size: 1.1em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}


/* =============== 360px =============== */
@media (max-width: 360px) {
    .hero-section {
        height: 85vh !important;
        /* Aumentamos um pouco para dar fôlego */
        background-position: 80% center;

        background-attachment: scroll !important;
        background-size: cover !important;
        height: 75vh !important;
        min-height: 500px;
        /* Foca no rosto dela no topo */
        background-size: cover;
        display: flex;
        align-items: flex-end;
        /* Joga o conteúdo para baixo */
    }

    .hero-overlay {
        /* Gradiente que escurece de baixo para cima */
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.8) 0%,
                rgba(0, 0, 0, 0.4) 40%,
                transparent 100%) !important;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 20px 40px;
        /* Respiro lateral e folga no fundo */
        align-items: center;
        /* Centraliza o texto para um look premium */
        text-align: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2em;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1em;
        max-width: 100%;
    }

    .linha2 {
        width: 65%;
        /* Linha pequena e centralizada */
        margin: 15px auto;
    }

     .hero-button {
        width: 100%;
        max-width: 220px;
        align-self: center;
        padding: 15px 20px;
        font-size: 1.1em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

@media (max-width: 320px) {
    .hero-section {
        height: 100vh !important;
        /* Aumentamos um pouco para dar fôlego */
        background-position: 80% center;

        background-attachment: scroll !important;
        background-size: cover !important;
        height: 75vh !important;
        min-height: 500px;
        /* Foca no rosto dela no topo */
        background-size: cover;
        display: flex;
        align-items: flex-end;
        /* Joga o conteúdo para baixo */
    }

    .hero-overlay {
        /* Gradiente que escurece de baixo para cima */
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.8) 0%,
                rgba(0, 0, 0, 0.4) 40%,
                transparent 100%) !important;
    }

    .hero-content {
        margin-top: 20px;
        padding: 0 20px 40px;
        /* Respiro lateral e folga no fundo */
        align-items: center;
        /* Centraliza o texto para um look premium */
        text-align: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2em;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1em;
        max-width: 100%;
        margin-bottom: 0;
    }

    .linha2 {
        width: 65%;
        /* Linha pequena e centralizada */
        margin: 5px auto;
    }
 .hero-button {
        width: 100%;
        max-width: 220px;
        align-self: center;
        padding: 15px 20px;
        font-size: 1.1em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}


/* =================================================== */
/* RESPONSIVIDADE - SEÇÃO TRATAMENTOS E MODAL          */

/* 1. Telas Médias-Grandes (Abaixo de 1200px) */
@media (max-width: 1200px) {

    /* Ajusta o espaçamento do grid e o tamanho do texto */
    .treatments-grid {
        gap: 30px;
        padding: 0;
        /* Adiciona padding lateral para não colar nas bordas */
    }

    .treatments-text {
        width: 35%;
        margin-left: 0 !important;
    }

    .treatments-slider-wrapper {
        width: 65%;
    }

    .treatments-text .impact-title {
        font-size: 3.8em;
    }

    .treatments-text .impact-sub {
        font-size: 1.8em;
    }

    /* Reduz o tamanho do card */
    .treatment-card {
        width: 100%;
        max-width: 280px;
        aspect-ratio: 4 / 5;
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

}

/* 2. Tablets (Abaixo de 900px) */
@media (max-width: 992px) {

    .modal-content {
        max-width: 420px !important;
        padding: 1.8rem !important;
    }

    .modal-content h2 {
        font-size: 1.9em !important;
    }

    .modal-content p,
    .modal-content ul {
        font-size: 1.05rem !important;
    }

    /* Transição para o layout empilhado (Coluna) */
    .treatments-grid {
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 0px;
    }

    /* O bloco de fundo agora envolve tudo e precisa de padding horizontal */
    .bg-tratamentos {
        width: 100%;
        padding: 40px 0;
    }

    /* TEXTO (agora em cima) */
    .treatments-text {
        width: 90%;
        max-width: 600px;
        margin: 0 auto 40px auto !important;
        text-align: center;
    }

    .treatments-text .impact-title {
        font-size: 3em;
    }

    .treatments-text .impact-sub {
        font-size: 1.5em;
    }

    /* SLIDER (agora embaixo) */
    .treatments-slider-wrapper {
        width: 100%;
    }

    .treatments-deck-slider {
        padding: 43px 21px;
    }

    .treatment-card {
        background: linear-gradient(180deg, #ffffff, #f9fbfa);
        border-radius: 18px;
        width: 100%;
        max-width: 380px;
        padding: 30px;
        border: 2px solid var(--verde-principal);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .treatment-card .card-image-placeholder img {
        width: 100%;
        max-width: 680px;
        border-radius: 16px;
        margin-bottom: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 768px) {

    .treatments-section {
        padding: 0px;
    }

    .treatment-card {
        background: linear-gradient(180deg, #ffffff, #f9fbfa);
        border-radius: 18px;
        width: 100%;
        max-width: 280px;
        padding: 30px;
        border: 2px solid var(--verde-principal);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .treatment-card .card-image-placeholder img {
        width: 100%;
        max-width: 680px;
        border-radius: 16px;
        margin-bottom: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .treatments-deck-slider {
        padding: 0px 0%;
    }

    .treatments-text .impact-title {
        font-size: 2.8em;
    }

    .treatment-card .details-button {
        /* Garante que o link esteja no topo da camada */
        position: relative;
        z-index: 99;
    }

    .modal-content {
        max-width: 380px !important;
        padding: 1.2rem !important;
        margin-top: 50px;
    }

    .modal-content h2 {
        font-size: 2.4em !important;
    }

    .modal-content h3 {
        font-size: 1.8em !important;
    }

    .modal-content p,
    .modal-content ul {
        font-size: 1.1rem !important;
    }

    /* Redução e centralização do card no carrossel */
    .treatment-card .card-image-placeholder {
        width: 100%;
        height: 55%;
        overflow: hidden;
    }


    .treatment-card .card-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-pagination_tratamento {
        display: none;
    }

}

/* 3. Smartphones Largos ou Tablets Retrato (Abaixo de 768px/600px) */
/* Usaremos 768px como referência principal para otimizar o empilhamento */
@media (max-width: 767px) {

    .treatments-section {
        padding: 0px;
    }

    .treatment-card {
        background: linear-gradient(180deg, #ffffff, #f9fbfa);
        border-radius: 18px;
        width: 100%;
        max-width: 280px;
        padding: 30px;
        border: 2px solid var(--verde-principal);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .treatment-card .card-image-placeholder img {
        width: 100%;
        max-width: 680px;
        border-radius: 16px;
        margin-bottom: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .treatments-deck-slider {
        padding: 0px 3%;
    }

    .treatments-text .impact-title {
        font-size: 2.1em;
    }

    .treatments-text .impact-sub {
        font-size: 1.2em;
    }

    .treatment-card .details-button {
        /* Garante que o link esteja no topo da camada */
        position: relative;
        z-index: 99;
    }

    .modal-content {
        max-width: 380px !important;
        padding: 1.2rem !important;
        margin-top: 50px;
    }

    .modal-content h2 {
        font-size: 2.4em !important;
    }

    .modal-content h3 {
        font-size: 1.8em !important;
    }

    .modal-content p,
    .modal-content ul {
        font-size: 1.1rem !important;
    }

    /* Redução e centralização do card no carrossel */
    .treatment-card .card-image-placeholder {
        width: 100%;
        height: 55%;
        overflow: hidden;
    }


    .treatment-card .card-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* 4. Smartphones Padrão (Abaixo de 430px) */
@media (max-width: 430px) {
    .treatments-section {
        padding: 0px;
    }

    .treatments-text .impact-title {
        font-size: 2.2em;
    }

    .treatments-grid {
        padding: 0;
    }

    .treatments-text .impact-sub {
        font-size: 1.2em;
    }

    .treatments-text {
        width: 95%;
    }

    /* Redução e centralização do card no carrossel */
    .treatment-card {
        background: linear-gradient(180deg, #ffffff, #f9fbfa);
        border-radius: 18px;
        padding: 20px;
        border: 2px solid var(--verde-principal);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .treatment-card .card-image-placeholder img {
        width: 100%;
        max-width: 380px;
        border-radius: 16px;
        margin-bottom: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .treatment-card .card-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .treatment-card h3 {
        font-size: 1.3em;
    }

    .treatment-card p {
        font-size: 1em;
    }

    /* Aumenta o padding para o botão ser fácil de tocar */
    .treatment-card .details-button {
        padding: 12px 15px;
        font-size: 1.05em;
        /* Garante que o link esteja no topo da camada */
        position: relative;
        z-index: 99;
    }

    .treatments-deck-slider {
        padding: 0px 2%;
    }

    /* Otimização do Modal para Telas Estreitas */
    .modal-content {
        width: 84% !important;
        max-width: 330px !important;
        padding: 1.8rem !important;
    }

    .modal-content h2 {
        font-size: 1.6em !important;
    }

    .modal-content h3 {
        font-size: 1.8em !important;
    }

    .modal-content p,
    .modal-content ul {
        font-size: 1rem !important;
    }

    .whatsapp-button {
        width: 40%;
        padding: 9px 50px;
        font-size: 1.2rem;
        border-radius: 18px;
    }
}

/* 5. Smartphones Pequenos (Abaixo de 360px) */
@media (max-width: 360px) {
    .treatments-text .impact-title {
        font-size: 1.6em;
        padding: 0 1%;
    }

    .treatments-text .impact-sub {
        font-size: 1.1em;
        padding: 0 1%;
    }

    .treatment-card {
        width: 100%;
        max-width: 220px;
        height: 220px;
        background: linear-gradient(180deg, #ffffff, #f9fbfa);
        border-radius: 18px;
        padding: 20px;
        border: 2px solid var(--verde-principal);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .treatment-card .card-image-placeholder img {
        width: 100%;
        max-width: 220px;
        border-radius: 16px;
        margin-bottom: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .treatments-deck-slider {
        padding: 0px 0%;
    }

    .modal-content {
        max-width: 300px !important;
        padding: 1.2rem !important;
    }

    .modal-content h3 {
        font-size: 1.8em !important;
    }

    .modal-content h2 {
        font-size: 1.45em !important;
    }

    .modal-content p,
    .modal-content ul {
        font-size: 0.9rem !important;
    }

}

/* ========================================================== */
/* RESPONSIVIDADE COMPLETA */
/* ========================================================== */


/* --- Telas Grandes e Médias (Até 1200px) --- */
@media (max-width: 1280px) {

    .depoimentos {
        padding: 0px 15px !important;
        /* Remove a altura fixa para evitar cortes de conteúdo no celular */
        height: auto;
    }

    .depoimentos h2 {
        margin-top: 50px;
    }

    /* Diminui o espaçamento dos slides em telas grandes/médias */
    .depoimentos-slider .swiper-slide {
        gap: 30px;
        min-height: 450px;
    }

    /* Reduz o tamanho da fonte do depoimento */
    .card-depoimentos p {
        font-size: clamp(1rem, 4vw, 1.4rem);
        line-height: 1.4;
        word-break: break-word;
    }

    .swiper-pagination {
        margin: 60px auto 0 !important;
        transform: translateY(0%) scale(1.2);
    }

    .image-comparison-container {
        max-width: 500px;
        height: 400px;
        margin-left: 10px;
        /* De 500px para 450px */
    }
}


/* --- Telas de Tablet (Até 992px) --- */
@media (max-width: 992px) {

    .depoimentos {
        padding: 0px 15px !important;
        /* Remove a altura fixa para evitar cortes de conteúdo no celular */
        height: auto;
    }

    /* Reduz o título da seção */
    .depoimentos .section-title {
        font-size: 2.8em;
        margin-top: 30px;
        /* De 3.4em para 2.8em */
    }

    /* Reduz a altura da imagem para não ser muito grande em tablets */
    .image-comparison-container {
        max-width: 600px;
        height: 460px;
        /* De 450px para 400px */
    }

    .depoimentos-slider .swiper-slide {
        flex-direction: column;
        padding: 20px 0;
        min-height: auto;
        /* Deixa a altura ser definida pelo conteúdo */
    }

    /* Mais uma redução na fonte do depoimento */
    .card-depoimentos p {
        font-size: 2em;
    }

    .swiper-pagination {
        margin: 50px auto;
        transform: translateY(0%) scale(1.3);
    }
}

/* --- Telas de Celular (Até 768px) --- */
@media (max-width: 768px) {
    .depoimentos {
        padding: 0px 15px !important;
        /* Remove a altura fixa para evitar cortes de conteúdo no celular */
        height: auto;
    }

    .depoimentos .section-title {
        font-size: 2.2em;
        /* Título menor */
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /* 🚩 Ponto chave: Muda o layout de linha para coluna */
    .depoimentos-slider .swiper-slide {
        flex-direction: column;
        padding: 20px 0;
        min-height: auto;
        /* Deixa a altura ser definida pelo conteúdo */
    }

    /* Aumenta a margem superior dos cards de depoimento (agora abaixo da imagem) */
    .card-depoimentos {
        margin-top: 30px;
        padding: 0 10px;
        /* Adiciona padding lateral para respiro */
        max-width: 100%;
        /* Ocupa a largura total */
        border-radius: 15px;
        /* Forma mais simples para mobile */
    }

    .card-depoimentos p {
        font-size: 1.5em;
        /* Fonte de depoimento ainda menor */
    }

    /* Reduz a imagem de Antes e Depois para caber melhor na tela */
    .image-comparison-container {
        max-width: 90%;
        /* Ocupa a largura total do container */
        height: 350px;
        /* Altura reduzida */
    }

    /* Esconde as setas de navegação do Swiper para celular (opcional, mas comum) */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* Aumenta a paginação para toque */
    .swiper-pagination {
        margin: 60px auto;
        transform: translateY(0%) scale(1.3);
    }

    .circulo-setas {
        display: none;
    }
}

/* --- Telas de Celular Muito Pequenas (Até 480px) --- */
@media (max-width: 480px) {
    .depoimentos {
        padding-top: 40px !important;
        padding-bottom: 10px !important;
        /* Remove a altura fixa para evitar cortes de conteúdo no celular */
        height: auto;
    }

    .image-comparison-container {
        height: 250px;
        /* Altura mínima para telas pequenas */
    }

    .procedures-section .section-title {
        margin-top: 30px;
        font-size: 3.3em;
    }

    .procedures-section .section-subtitle {
        font-size: 1.25em;
        margin-bottom: 60px;
    }

    .card-depoimentos p {
        font-size: 1.3em;
    }

    /* Aumenta a paginação para toque */
    .swiper-pagination {
        margin: 60px auto;
        transform: translateY(0%) scale(0.9);
    }
}

/* ============================================================
   🟦 TELAS GRANDES E MÉDIAS (≤ 1200px)
============================================================ */
@media (max-width: 1280px) {

    .procedure-card {
        max-width: 660px;
        padding: 46px 40px;
    }

    .procedure-text h3 {
        font-size: 2.1em;
    }

    .procedure-text p {
        font-size: 1.15em;
    }

    .btn-saiba-mais {
        padding: 13px 34px;
    }

    .procedure-modal-card {
        max-height: 50vh !important;
        max-width: 580px;
        padding: 38px;
    }

    .swiper-pagination {
        margin: 60px auto;
        transform: translateY(0%) scale(0.9);
    }
}

/* ============================================================
   🟦 CELULARES GRANDES / TABLETS (≤ 992px)
============================================================ */
@media (max-width: 992px) {

    .procedures-section {
        padding: 50px 5%;
    }

    .procedure-card {
        max-width: 600px;
        min-height: auto;
        padding: 42px 36px;
    }

    .procedure-text {
        text-align: center;
    }

    .procedure-text h3 {
        font-size: 2em;
    }

    .procedure-text p {
        font-size: 1.1em;
    }

    .btn-saiba-mais {
        font-size: 0.85em;
    }

    .procedure-modal-card {
        max-width: 540px;
        max-height: 350px;
    }

    .procedure-modal-card h3 {
        font-size: 2.4em;
    }

    .button-swiper-next,
    .button-swiper-prev {
        display: none;
    }
}

@media (max-width: 768px) {

    .procedures-section .section-title {
        font-size: 2.4em;
    }

    .procedures-section .section-subtitle {
        font-size: 1em;
        padding: 0 10px;
    }

    .procedure-card {
        max-width: 100%;
        padding: 38px 28px;
        border-radius: 14px;
    }

    .procedure-text h3 {
        font-size: 1.9em;
    }

    .procedure-text p {
        font-size: 1.05em;
        line-height: 1.6;
    }

    .btn-saiba-mais {
        padding: 12px 30px;
    }

    /* Swiper */
    .button-swiper-next,
    .button-swiper-prev {
        transform: scale(1.1);
    }

    /* Modal */
    .procedure-modal-card {
        max-height: 350px;
        width: 92%;
        padding: 65px 26px;
    }

    .procedure-info li {
        font-size: 1.3em;
    }

    .button-swiper-pagination {
        margin: 50px auto;
        transform: translateY(0%) scale(0.9);
    }
}

/* ============================================================
   🟦 CELULARES MÉDIOS (≤ 768px)
============================================================ */
@media (max-width: 767px) {

    .procedures-section .section-title {
        font-size: 2.4em;
    }

    .procedures-section .section-subtitle {
        font-size: 1em;
        padding: 0 10px;
    }

    .procedure-card {
        max-width: 100%;
        padding: 38px 28px;
        border-radius: 14px;
    }

    .procedure-text h3 {
        font-size: 1.9em;
    }

    .procedure-text p {
        font-size: 1.05em;
        line-height: 1.6;
    }

    .btn-saiba-mais {
        padding: 12px 30px;
    }

    /* Swiper */
    .button-swiper-next,
    .button-swiper-prev {
        transform: scale(1.1);
    }

    /* Modal */
    .procedure-modal-card {
        max-height: 350px;
        width: 92%;
        padding: 65px 26px;
    }

    .procedure-info li {
        font-size: 1.3em;
    }

    .button-swiper-pagination {
        margin: 60px auto;
        transform: translateY(0%) scale(0.9);
    }
}


/* ============================================================
   🟦 CELULARES PEQUENOS (≤ 430px)
============================================================ */
@media (max-width: 430px) {

    .procedures-section {
        padding: 20px 0%;
    }

    .procedures-section .section-title {
        font-size: 2.1em;
    }

    .procedure-card {
        padding: 30px 22px;
        border-radius: 12px;
        box-shadow: none;
        width: 80%;
    }

    .procedure-text h3 {
        font-size: 1.7em;
    }

    .procedure-text p {
        font-size: 0.95em;
        margin-bottom: 24px;
    }

    .btn-saiba-mais {
        padding: 11px 26px;
        font-size: 0.8em;
    }

    /* Modal */
    .procedure-modal-card {
        max-height: 450px !important;
        padding: 65px 9px 5% 9px;
    }

    .procedure-modal-card h3 {
        font-size: 2em;
    }

    #modalDescription {
        font-size: 1.25em;
    }

    .procedure-info li {
        font-size: 1.2em;
    }

    .procedure-modal-cta {
        margin-top: 0px;
        width: 60%;
    }

    .button-swiper-pagination {
        margin: 50px auto;
        transform: translateY(0%) scale(0.9);
    }
}


/* ============================================================
   🟦 TELAS MUITO PEQUENAS (≤ 360px)
============================================================ */
@media (max-width: 390px) {

    .procedures-section .section-title {
        font-size: 1.9em;
    }

    .procedure-card {
        padding: 26px 18px;
        width: 70%;
    }

    .procedure-text h3 {
        font-size: 1.55em;
    }

    .procedure-text p {
        font-size: 0.9em;
    }

    .btn-saiba-mais {
        padding: 10px 22px;
        font-size: 0.75em;
    }

    .procedure-modal-card {
        padding: 65px 10px;
        max-height: 49vh;
    }

    .procedure-modal-cta {
        margin-top: 10px;
    }

    .procedure-modal-card h3 {
        font-size: 1.8em;
    }

    .procedure-info li {
        font-size: 1.1em;
    }
}

/* ==========================================
   RESPONSIVIDADE DE ESTRUTURA DO SLIDER
========================================== */

@media (max-width: 1200px) {

    .estrutura-section {
        padding: 70px 4%;
    }

    .title h1 {
        font-size: 3.4em;
    }

    .title p {
        font-size: 1.3rem;
    }

    .estrutura-conteudo {
        gap: 35px;
    }

    .dropdown-titulo h3 {
        font-size: 2rem;
    }

    .hero-slider {
        height: 380px;
        margin-top: -20px;
    }

    .hero-slider .overlay-content h1 {
        font-size: 1.9rem;
    }

    .hero-slider .overlay-content p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {

    .estrutura-section {
        padding: 60px 4%;
    }

    .title {
        margin-bottom: 70px;
    }

    .title h1 {
        font-size: 3em;
    }

    .title p {
        font-size: 1.15rem;
    }

    .estrutura-conteudo {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .coluna-esquerda {
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-slider {
        height: 360px;
        margin-top: 0;
    }

    .dropdown-bloco {
        margin-bottom: 22px;
    }
}

@media (max-width: 768px) {

    .estrutura-section {
        padding: 55px 5%;
    }

    .title {
        margin-bottom: 50px;
    }

    .title h1 {
        font-size: 2.4em;
    }

    .title p {
        font-size: 1.05rem;
    }

    .estrutura-conteudo {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .dropdown-bloco {
        padding: 20px;
    }

    .dropdown-titulo h3 {
        font-size: 1.6rem;
    }

    .dropdown-conteudo li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-slider {
        height: 300px;
        border-radius: 14px;
    }

    .hero-slider .overlay-content {
        width: 95%;
    }

    .hero-slider .overlay-content h1 {
        font-size: 1.5rem;
    }

    .hero-slider .overlay-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 430px) {

    .estrutura-section {
        padding: 50px 5%;
    }

    .title h1 {
        font-size: 2.5rem;
    }

    .title p {
        font-size: 0.95rem;
    }

    .dropdown-bloco {
        padding: 18px;
        border-radius: 12px;
    }

    .dropdown-titulo h3 {
        font-size: 1.3rem;
    }

    .dropdown-conteudo li {
        font-size: 0.95rem;
    }

    .hero-slider {
        height: 240px;
        border-radius: 12px;
    }

    .hero-slider .overlay-content h1 {
        font-size: 1.25rem;
    }

    .hero-slider .overlay-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {

    .estrutura-section {
        padding: 45px 4%;
    }

    .title h1 {
        font-size: 1.75rem;
    }

    .title p {
        font-size: 0.85rem;
    }

    .dropdown-bloco {
        padding: 16px;
    }

    .dropdown-titulo h3 {
        font-size: 1.15rem;
    }

    .dropdown-conteudo li {
        font-size: 0.85rem;
    }

    .hero-slider {
        height: 210px;
    }

    .hero-slider .overlay-content h1 {
        font-size: 1.1rem;
    }

    .hero-slider .overlay-content p {
        font-size: 0.8rem;
    }
}

/* ==============================
   LOCALIZAÇÃO E RODAPÉ RESPONSIVOS
============================== */

@media (max-width: 1200px) {

    .localizacao {
        padding: 70px 5%;
    }

    .localizacao h1 {
        font-size: 3em;
    }

    .localizacao .sub {
        font-size: 1.4em;
    }

    .localizacao-wrapper {
        gap: 35px;
    }

    .info-local {
        width: 95%;
        padding: 28px;
    }

    .info-local h2,
    .info-local h3 {
        font-size: 1.8em;
    }

    .ender,
    .horarios li {
        font-size: 1.25em;
    }

    .localizacao iframe {
        height: 380px;
    }

    .dropdown-conteudo li::before {
        font-size: 0em;
    }
}

@media (max-width: 992px) {

    .localizacao {
        padding: 60px 5%;
    }

    .localizacao h1 {
        font-size: 2.6em;
    }

    .localizacao .sub {
        font-size: 1.25em;
    }

    .localizacao-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .info-local {
        width: 90%;
        max-width: 800px;
    }

    .localizacao iframe {
        height: 360px;
    }

    .dropdown-conteudo li::before {
        font-size: 0em;
    }
}

@media (max-width: 768px) {

    .localizacao {
        padding: 55px 6%;
    }

    .localizacao h1 {
        font-size: 2.2em;
        line-height: 1.25;
    }

    .localizacao .sub {
        font-size: 1.1em;
    }

    .info-local {
        padding: 0;
        height: auto;
        line-height: 2em;
    }

    .info-local h2,
    .info-local h3 {
        font-size: 1.6em;
    }

    .ender,
    .horarios li {
        font-size: 1.1em;
    }

    .localizacao iframe {
        height: 320px;
        border-radius: 16px;
    }

    /* FOOTER */
    .premium-minimal {
        padding: 28px 18px;
    }

    .premium-minimal .marca {
        font-size: 1.5em;
    }

    .premium-minimal .sub {
        font-size: 1.05em;
    }

    .premium-minimal .copy {
        font-size: 0.90em;
    }

    .dropdown-conteudo li::before {
        font-size: 0em;
    }
}

@media (max-width: 430px) {

    .localizacao {
        padding: 50px 6%;
    }

    .localizacao h1 {
        font-size: 1.9em;
    }

    .localizacao .sub {
        font-size: 1em;
    }

    .info-local {
        padding: 0;
        height: auto;
        border-radius: 14px;
    }

    .info-local h2,
    .info-local h3 {
        font-size: 1.4em;
    }

    .ender,
    .horarios li {
        font-size: 1em;
    }

    .localizacao iframe {
        height: 260px;
        border-radius: 14px;
    }

    /* FOOTER */
    .premium-minimal .marca {
        font-size: 1.30em;
    }

    .premium-minimal .sub {
        font-size: 1em;
    }

    .premium-minimal .copy {
        font-size: 0.90em;
    }

    .premium-minimal .dev {
        font-size: 0.7em;
    }

    .dropdown-conteudo li::before {
        font-size: 0em;
    }
}

@media (max-width: 360px) {

    .localizacao {
        padding: 45px 5%;
    }

    .localizacao h1 {
        font-size: 1.65em;
    }

    .localizacao .sub {
        font-size: 0.95em;
    }

    .info-local {
        padding: 0px;
        line-height: 1.9em;
    }

    .info-local h2,
    .info-local h3 {
        font-size: 1.3em;
    }

    .ender,
    .horarios li {
        font-size: 0.95em;
    }

    .dropdown-conteudo li::before {
        font-size: 0em;
    }

    .localizacao iframe {
        height: 230px;
    }

    /* FOOTER */
    .premium-minimal .marca {
        font-size: 1em;
    }

    .premium-minimal .sub {
        font-size: 1em;
    }

    .premium-minimal .copy {
        font-size: 0.80em;
    }

    .premium-minimal .dev {
        font-size: 0.60em;
    }
}

/* ==========================================
   RESPONSIVIDADE QUEM SOU EU
   ========================================= */

@media (max-width: 1220px) {

    .container-quem,
    .container-filosofia {
        max-width: 1100px;
        gap: 40px;
    }

    .foto-quem {
        width: 115%;
        height: 560px;
    }

    .texto-quem h2 {
        font-size: 2.6em;
        margin-left: 40px;
    }

    .texto-quem p {
        font-size: 1.1rem;
        margin-left: 40px;
    }

    .dados-quem {
        margin-left: 40px;
        gap: 30px;
    }

    .dados-quem strong {
        font-size: 2.2rem;
    }

    .dados-quem span {
        font-size: 1.2rem;
    }

    .filosofia-img img {
        width: 460px;
        height: 560px;
    }
}

@media (max-width: 992px) {

    .container-quem,
    .container-filosofia {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .foto-quem {
        width: 50%;
        height: 520px;
    }

    .texto-quem h2,
    .texto-quem p,
    .dados-quem {
        margin-left: 0;
    }

    .texto-quem h2 {
        font-size: 2.5em;
    }

    .texto-quem p {
        font-size: 1.1rem;
        line-height: 1.4em;
    }

    .dados-quem {
        justify-content: center;
        gap: 35px;
    }

    .filosofia-img img {
        width: 100%;
        max-width: 480px;
        height: auto;
    }

    .filosofia-texto h2 {
        font-size: 3rem;
    }

    .filosofia-texto p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {

    .quem-sou-eu,
    .filosofia {
        padding: 80px 0;
    }

    .foto-quem {
        height: auto;
        border-radius: 16px;
    }

    .texto-quem h2 {
        font-size: 2.2em;
    }

    .texto-quem p {
        font-size: 1.05rem;
    }

    .dados-quem {
        flex-direction: column;
        gap: 18px;
    }

    .dados-quem strong {
        font-size: 2rem;
    }

    .dados-quem span {
        font-size: 1.1rem;
    }

    .filosofia-texto h2 {
        font-size: 2.6rem;
    }

    .filosofia-texto p {
        font-size: 1.2rem;
    }
}

@media (max-width: 430px) {

    .foto-quem {
        height: auto !important;
        border-radius: 14px;
    }

    .texto-quem h2 {
        font-size: 1.9em;
    }

    .texto-quem p {
        font-size: 0.95rem;
        line-height: 1.35em;
    }

    .dados-quem strong {
        font-size: 1.8rem;
    }

    .dados-quem span {
        font-size: 1rem;
    }

    .filosofia-texto h2 {
        font-size: 2.2rem;
    }

    .filosofia-texto p {
        font-size: 1.05rem;
    }

    .filosofia-img img {
        max-width: 326px;
        height: 278px;
        border-radius: 14px;
    }
}

@media (max-width: 360px) {

    .foto-quem {
        height: auto;
    }

    .texto-quem h2 {
        font-size: 1.7em;
    }

    .texto-quem p {
        font-size: 0.9rem;
    }


    .dados-quem strong {
        font-size: 1.6rem;
    }

    .dados-quem span {
        font-size: 0.95rem;
    }

    .filosofia-texto h2 {
        font-size: 2rem;
    }

    .filosofia-texto p {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {

    .chatbot {
        width: 340px;
        right: 24px;
        bottom: 100px;
    }

    .chat-body {
        max-height: 280px;
    }

    .chat-options {
        max-height: 220px;
    }
}

@media (max-width: 992px) {

    .chat-float {
        bottom: 60px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .chatbot {
        width: 360px;
        right: 20px;
        bottom: 90px;
    }

    .chat-body {
        max-height: 260px;
    }

    .chat-options {
        max-height: 210px;
    }
}

@media (max-width: 768px) {

    .chat-float {
        bottom: 60px;
        right: 16px;
        width: 60px;
        height: 60px;
    }

    .chatbot {
        right: 50%;
        transform: translateX(50%);
        bottom: 80px;
        width: calc(100% - 32px);
        max-width: 420px;
        border-radius: 16px;
    }

    .chat-body {
        max-height: 45vh;
    }

    .chat-options {
        max-height: 30vh;
    }
}

@media (max-width: 430px) {

    .chat-float {
        bottom: 60px;
        right: 14px;
        width: 50px;
        height: 50px;
    }

    .chatbot {
        bottom: 70px;
        width: calc(100% - 24px);
        max-width: none;
        border-radius: 14px;
    }

    .chat-header {
        padding: 12px;
    }

    .chat-header strong {
        font-size: 14px;
    }

    .chat-header span {
        font-size: 11px;
    }

    .chat-body {
        max-height: 42vh;
    }

    .bot,
    .user {
        font-size: 13px;
    }
}

@media (max-width: 430px) {

    .chat-float {
        bottom: 60px;
        right: 14px;
        width: 50px;
        height: 50px;
    }

    .chatbot {
        bottom: 70px;
        width: calc(100% - 24px);
        max-width: none;
        border-radius: 14px;
    }

    .chat-header {
        padding: 12px;
    }

    .chat-header strong {
        font-size: 14px;
    }

    .chat-header span {
        font-size: 11px;
    }

    .chat-body {
        max-height: 42vh;
    }

    .bot,
    .user {
        font-size: 13px;
    }
}

/* ===============================
   ATÉ 1200px
=============================== */
@media (max-width: 1200px) {
    .chatbot {
        width: 320px;
        bottom: 90px;
    }

    #clearChat {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}

/* ===============================
   ATÉ 992px (tablets grandes)
=============================== */
@media (max-width: 992px) {
    .chatbot {
        width: 300px;
        bottom: 80px;
    }

    #clearChat {
        font-size: 0.72rem;
        padding: 8px 9px;
    }

    .chat-overlay {
        backdrop-filter: blur(3px);
    }
}

/* ===============================
   ATÉ 768px (tablet / mobile grande)
=============================== */
@media (max-width: 768px) {
    .chatbot {
        width: 92%;
        bottom: 70px;
        border-radius: 16px;
    }

    #clearChat {
        font-size: 0.70rem;
        padding: 7px 9px;
    }
}

/* ===============================
   ATÉ 430px (mobile padrão)
=============================== */
@media (max-width: 430px) {
    .chatbot {
        width: 94%;
        bottom: 60px;
        border-radius: 14px;
    }

    #clearChat {
        font-size: 0.68rem;
        padding: 7px 8px;
    }

    .chat-overlay {
        background: rgba(0, 0, 0, 0.55);
    }
}

/* ===============================
   ATÉ 360px (mobile pequeno)
=============================== */
@media (max-width: 360px) {
    .chatbot {
        width: 96%;
        bottom: 55px;
        border-radius: 12px;
    }

    #clearChat {
        font-size: 0.65rem;
        padding: 6px 7px;
    }
}