/* ============================================================
   FONTES LOCAIS
   ============================================================ */
@font-face {
    font-family: "Playfair Display";
    src: url("assets/fonts/playfair-display-normal-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("assets/fonts/playfair-display-italic-latin.woff2") format("woff2");
    font-style: italic;
    font-weight: 400 900;
    font-display: swap;
}

@font-face { font-family: "Montserrat"; src: url("assets/fonts/montserrat-300.otf") format("opentype"); font-style: normal; font-weight: 300; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("assets/fonts/montserrat-400.otf") format("opentype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("assets/fonts/montserrat-500.otf") format("opentype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("assets/fonts/montserrat-600.otf") format("opentype"); font-style: normal; font-weight: 600; font-display: swap; }

/* Ícones locais: somente os glifos utilizados nesta página. */
@font-face { font-family: "Site Icons Solid"; src: url("assets/icons/site-icons-solid.woff2") format("woff2"); font-style: normal; font-weight: 900; font-display: block; }
@font-face { font-family: "Site Icons Regular"; src: url("assets/icons/site-icons-regular.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: block; }
@font-face { font-family: "Site Icons Brands"; src: url("assets/icons/site-icons-brands.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: block; }

.fas, .fa-solid, .far, .fab {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fas, .fa-solid { font-family: "Site Icons Solid"; font-weight: 900; }
.far { font-family: "Site Icons Regular"; font-weight: 400; }
.fab { font-family: "Site Icons Brands"; font-weight: 400; }


.fa-arrow-right::before { content: ""; }
.fa-bars::before { content: ""; }
.fa-bolt::before { content: ""; }
.fa-check::before { content: ""; }
.fa-chevron-down::before { content: ""; }






.fa-eye::before { content: ""; }

.fa-feather-alt::before { content: ""; }
.fa-female::before { content: ""; }
.fa-gem::before { content: ""; }
.fa-heart::before { content: ""; }


.fa-map-marker-alt::before { content: ""; }
.fa-microscope::before { content: ""; }




.fa-times::before { content: ""; }

.fa-user::before { content: ""; }


.fa-facebook-f::before { content: ""; }
.fa-instagram::before { content: ""; }
.fa-whatsapp::before { content: ""; }

/* Animações de entrada locais, equivalentes às transições anteriores. */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: var(--aos-duration, 900ms);
    transition-delay: var(--aos-delay, 0ms);
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

[data-aos="fade-up"] { transform: translate3d(0, 28px, 0); }
[data-aos="fade-right"] { transform: translate3d(-42px, 0, 0); }
[data-aos="fade-left"] { transform: translate3d(42px, 0, 0); }
[data-aos="zoom-in"] { transform: scale(0.94); }
[data-aos].aos-animate { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    [data-aos] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   DESIGN SYSTEM — DRA. LARA CHRISTIE
   Identidade visual: leveza, renovação, elegância, feminilidade
   ============================================================ */

/* ── Design Tokens ── */
:root {
    /* Cores */
    --color-deep-green:      #003d38;
    --color-champagne-gold:  #c89a67;
    --color-burnt-rose:      #cfa09a;
    --color-espresso:        #2b1d17;
    --color-warm-off-white:  #f7f5f1;
    --color-soft-taupe:      #b8aea8;

    --color-text-primary:    #2b1d17;
    --color-text-secondary:  #6f625d;
    --color-background-primary: #f7f5f1;
    --color-background-dark: #003d38;
    --color-border:          rgba(43, 29, 23, 0.14);

    /* Aliases legados para compatibilidade de componentes JS */
    --primary-color:   #cfa09a;
    --primary-dark:    #b08d88;
    --secondary-color: #f7f5f1;
    --accent-color:    #c89a67;
    --text-color:      #6f625d;
    --text-light:      #b8aea8;
    --white:           #ffffff;
    --dark-bg:         #003d38;

    /* Tipografia */
    --font-display: "Playfair Display", serif;
    --font-body:    "Montserrat", sans-serif;

    /* Layout */
    --container-max:   1240px;
    --header-height:   80px;

    /* Espaçamento */
    --space-1:  0.5rem;
    --space-2:  0.75rem;
    --space-3:  1rem;
    --space-4:  1.5rem;
    --space-5:  2rem;
    --space-6:  3rem;
    --space-7:  4.5rem;
    --space-8:  6rem;
    --space-9:  9rem;

    /* Bordas */
    --radius-small:  8px;
    --radius-medium: 16px;
    --radius-large:  28px;
    --radius-pill:   100px;

    /* Sombras */
    --shadow-soft:   0 24px 70px rgba(43, 29, 23, 0.08);
    --shadow-medium: 0 12px 40px rgba(43, 29, 23, 0.12);
    --shadow-sm:     0 5px 15px rgba(43, 29, 23, 0.06);
    --shadow-md:     0 10px 30px rgba(43, 29, 23, 0.10);
    --shadow-lg:     0 20px 50px rgba(43, 29, 23, 0.15);

    /* Transições */
    --transition-standard: 300ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);

    /* Legado: border-radius */
    --border-radius-lg: var(--radius-large);
    --border-radius-md: var(--radius-medium);
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-background-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-espresso);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-standard);
}

ul { list-style: none; }

img {
    max-width: 100%;
    display: block;
}

.lazy-bg {
    background-color: rgba(0, 61, 56, 0.06);
    transition: background-color 300ms ease;
}

.lazy-bg-loaded {
    background-color: transparent;
}

/* ── Container ── */
.container {
    width: min(calc(100% - 40px), var(--container-max));
    margin-inline: auto;
}

/* ── Seções ── */


/* ── Tipografia ── */






/* ── Utilities ── */
.text-center { text-align: center; }






/* ── Section Tag ── */
.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--color-champagne-gold);
    margin-bottom: var(--space-4);
    font-weight: 600;
    font-family: var(--font-body);
    position: relative;
    padding-left: 24px;
}

.section-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 1px;
    background: var(--color-champagne-gold);
}

/* ── Divisor decorativo ── */


/* ── Botões ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--radius-medium);
    font-weight: 500;
    font-size: 0.9rem;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-standard);
    letter-spacing: 0.5px;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-deep-green);
    color: var(--white);
    border: 1.5px solid var(--color-deep-green);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-deep-green);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--color-deep-green);
    color: var(--color-deep-green);
}

.btn-outline:hover {
    background-color: var(--color-deep-green);
    color: var(--white);
}





.btn-sm {
    padding: 10px 24px;
    font-size: 0.82rem;
}



/* Botão hero — sobre fundo claro, estilo principal */
.btn-hero {
    background-color: var(--color-deep-green);
    color: var(--color-warm-off-white);
    border: 1.5px solid var(--color-deep-green);
    font-weight: 600;
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--color-deep-green);
    transform: translateY(-2px);
}





/* ── Map Button ── */
.btn-map {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    border: 1.5px solid var(--color-champagne-gold);
    color: var(--color-champagne-gold);
    border-radius: var(--radius-medium);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-standard);
}

.btn-map:hover {
    background: var(--color-champagne-gold);
    color: var(--white);
}

/* ─────────────────────────────────────────
   MEDIA PLACEHOLDER COMPONENT
   ───────────────────────────────────────── */




/* Ratios */














/* Variant para fundos escuros */






/* ── Dandelion decorativo (CSS) ── */




/* ── Reveal Animation ── */




@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ─────────────────────────────────────────
   HEADER
   ───────────────────────────────────────── */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(247, 245, 241, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 400ms ease, box-shadow 400ms ease;
}

#header.scrolled {
    background: rgba(247, 245, 241, 0.98);
    box-shadow: 0 1px 0 var(--color-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 clamp(20px, 4vw, 48px);
}















/* Logo placeholder no header */






.desktop-nav ul {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    letter-spacing: 0.3px;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-champagne-gold);
    transition: width var(--transition-standard);
}

.desktop-nav a:hover { color: var(--color-deep-green); }
.desktop-nav a:hover::after { width: 100%; }

.mobile-menu-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--color-espresso);
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-warm-off-white);
    z-index: 1001;
    padding: 32px;
    transition: right 400ms cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 40px rgba(43,29,23,0.15);
    overflow-y: auto;
}

.mobile-nav.active { right: 0; }

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.mobile-nav-title {
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-espresso);
}

.close-menu {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--color-espresso);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-size: 1.1rem;
    color: var(--color-espresso);
    font-weight: 400;
    display: block;
    padding: 4px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-nav .highlight-link {
    display: inline-flex;
    margin-top: 16px;
    padding: 14px 28px;
    background: var(--color-deep-green);
    color: var(--white);
    border-radius: var(--radius-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

.overlay-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 29, 23, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 400ms ease, visibility 400ms ease;
}

.overlay-mobile.active {
    opacity: 1;
    visibility: visible;
}

/* ─────────────────────────────────────────
   HERO — Editorial split
   ───────────────────────────────────────── */
/* ─────────────────────────────────────────
   HERO — Split tela cheia
   ───────────────────────────────────────── */
.hero-premium {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Lado esquerdo — off-white */
.hero-left {
    flex: 0 0 52%;
    background: var(--color-warm-off-white);
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
}

/* Linha dourada sutil no canto inferior esquerdo */
.hero-left::after {
    content: "";
    position: absolute;
    bottom: 72px;
    left: clamp(32px, 6vw, 80px);
    width: 160px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-champagne-gold), transparent);
    opacity: 0.5;
}

.hero-left-inner {
    padding: clamp(48px, 7vw, 96px) clamp(16px, 3vw, 40px) clamp(48px, 7vw, 96px) clamp(64px, 9vw, 140px);
    max-width: 600px;
    width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(24px, 3vw, 40px);
}

.hero-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--color-champagne-gold);
    flex-shrink: 0;
}

.hero-eyebrow-text {
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-champagne-gold);
}

/* Título */
.hero-left-inner h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5.5vw, 6rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-espresso);
    margin-bottom: clamp(20px, 2.5vw, 32px);
}

.hero-left-inner h1 em {
    font-style: italic;
    color: var(--color-deep-green);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    margin-bottom: clamp(28px, 3.5vw, 44px);
    max-width: 400px;
    line-height: 1.9;
}

/* Ações */
.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: clamp(32px, 4vw, 56px);
}

/* Botão ghost */







/* Stats */












/* ── Lado direito — verde escuro + imagem ── */
.hero-right {
    flex: 1;
    background: var(--color-deep-green);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    padding-top: var(--header-height);
}

/* Textura sutil no fundo verde */
.hero-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200,154,103,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(200,154,103,0.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.hero-right picture,
.hero-main-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-right picture {
    z-index: 1;
}

.hero-main-image {
    object-fit: cover;
    object-position: top center;
}

/* Placeholder que preenche o painel inteiro */


/* Tag de localização */
.hero-location-tag {
    position: absolute;
    top: calc(var(--header-height) + 24px);
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(247,245,241,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(247,245,241,0.14);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(247,245,241,0.75);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    z-index: 3;
}

.hero-location-tag i {
    color: var(--color-champagne-gold);
    font-size: 0.7rem;
}

/* Strip de especialidades no rodapé do painel verde */














@keyframes heroCredentialMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (min-width: 768px) {
    

    
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 26%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.6rem;
    color: var(--color-soft-taupe);
    font-family: var(--font-body);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    animation: bounce 2.8s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40%                       { transform: translateY(-8px) translateX(-50%); }
    60%                       { transform: translateY(-4px) translateX(-50%); }
}

/* ─────────────────────────────────────────
   A CLÍNICA — Editorial, fundo off-white
   ───────────────────────────────────────── */
.about-clinic-premium {
    padding: clamp(72px, 9vw, 144px) 0;
    background: var(--color-warm-off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(600px, 1.15fr) minmax(360px, 0.85fr);
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}

@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visuals { display: none; }
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: var(--color-espresso);
    margin-bottom: var(--space-5);
    line-height: 1.08;
}

.about-content p {
    color: var(--color-text-secondary);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.clinic-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: var(--space-6);
}

.feature-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    transition: var(--transition-standard);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-champagne-gold);
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--color-champagne-gold);
    margin-bottom: 10px;
    display: block;
}

.feature-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-espresso);
    display: block;
    line-height: 1.4;
}

/* About visuals: dois placeholders sobrepostos */
.about-visuals {
    position: relative;
    height: 520px;
}

.visual-card {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.main-visual {
    width: 78%;
    height: 88%;
    top: 0;
    right: 0;
    z-index: 1;
}

.secondary-visual {
    width: 52%;
    height: 52%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 6px solid var(--color-warm-off-white);
}

/* Placeholders no about */






/* ─────────────────────────────────────────
   DRA. LARA — Perfil editorial
   ───────────────────────────────────────── */
.dra-profile-section {
    padding: clamp(72px, 9vw, 144px) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* sem faixa verde — seção usa fundo branco limpo */

.profile-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 100%;
    padding-bottom: 130%;
    background-size: cover;
    background-position: center top;
    border-radius: 120px 120px 0 0;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}



.profile-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-champagne-gold);
    border-radius: 50%;
    opacity: 0.4;
}

.profile-content .section-tag {
    color: var(--color-champagne-gold);
}

.profile-content h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--color-espresso);
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

.profile-intro {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-espresso);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.profile-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.credentials-box {
    margin-top: var(--space-5);
    padding: 24px 28px;
    border-left: 3px solid var(--color-champagne-gold);
    background: rgba(200, 154, 103, 0.07);
    display: flex;
    gap: 40px;
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
}

.credential strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-champagne-gold);
    margin-bottom: 4px;
}

.credential span {
    font-size: 0.92rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

/* ─────────────────────────────────────────
   TRATAMENTOS
   ───────────────────────────────────────── */
.treatments-premium {
    padding: clamp(56px, 6vw, 80px) 0 clamp(64px, 7vw, 96px);
    background: var(--color-warm-off-white);
}

.section-header-premium {
    text-align: center;
    margin-bottom: var(--space-8);
}

.section-header-premium h2 {
    font-size: clamp(2rem, 3.5vw, 4rem);
    color: var(--color-espresso);
    margin-bottom: var(--space-3);
    line-height: 1.05;
}

.section-header-premium p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Destaque LipoContour */


















/* Placeholder dentro do highlight */


/* ── Beauty Combo ── */




/* ============================================================
   JORNADA DE CONVERSÃO — REVISÃO AGOSTO 2026
   ============================================================ */

/* Hero: promessa única */
.hero-left-inner h1 {
    max-width: 720px;
    font-size: clamp(3rem, 5.1vw, 5rem);
    line-height: 1.02;
}

@media (min-width: 768px) {
    .hero-left-inner { max-width: 740px; }
}

@media (min-width: 1101px) {
    .hero-left { flex-basis: 60%; }
    .hero-left-inner {
        max-width: 1000px;
        padding-left: clamp(64px, 7vw, 105px);
        padding-right: clamp(24px, 2.5vw, 36px);
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .hero-premium .hero-left { flex-basis: 60%; }
    .hero-left-inner {
        max-width: none;
        padding-left: clamp(48px, 6vw, 72px);
        padding-right: 24px;
    }
    .hero-left-inner h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
}

.hero-title-opening {
    display: block;
    white-space: nowrap;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-left-inner h1 > em {
    display: block;
    margin-top: 0.12em;
}

.hero-subtitle {
    max-width: 620px;
}

.hero-actions {
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-align: center;
}

/* Faixa de autoridade */
.authority-strip {
    position: relative;
    z-index: 4;
    padding: 0;
    background: var(--color-deep-green);
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(200, 154, 103, 0.32);
    border-bottom: 1px solid rgba(200, 154, 103, 0.32);
}

.authority-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 50%, rgba(200, 154, 103, 0.1), transparent 28%),
        radial-gradient(circle at 88% 50%, rgba(200, 154, 103, 0.07), transparent 24%);
}

.authority-grid {
    position: relative;
    min-height: 154px;
    display: grid;
    grid-template-columns: 1fr auto 1.15fr auto 1fr auto 1.2fr;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    max-width: 1320px;
}

.authority-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    padding: 1.5rem 1rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.88);
    transition: transform 300ms ease;
}

.authority-item:hover { transform: translateY(-3px); }

.authority-item strong {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 500;
    color: var(--color-champagne-gold);
    line-height: 1;
}

.authority-item strong sup {
    margin-left: 1px;
    font-size: 0.46em;
    vertical-align: super;
    opacity: 0.72;
}

.authority-item i {
    color: var(--color-champagne-gold);
    font-size: 1.35rem;
}

.authority-feature-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(200, 154, 103, 0.42);
    border-radius: 50%;
    background: rgba(200, 154, 103, 0.08);
}

.authority-item span {
    display: block;
    max-width: 240px;
    font-size: 0.7rem;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 600;
}

.authority-copy small {
    display: block;
    max-width: 230px;
    margin-top: 0.45rem;
    color: rgba(247, 245, 241, 0.56);
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.025em;
}

.authority-divider {
    width: 1px;
    height: 62px;
    background: linear-gradient(to bottom, transparent, rgba(200, 154, 103, 0.5), transparent);
}

/* Dores e desejos */
.concerns-section {
    padding: clamp(90px, 10vw, 150px) 0;
    background: #efeae3;
    overflow: hidden;
}

.concerns-heading {
    max-width: 760px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.concerns-heading h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.6rem, 5vw, 5rem);
    letter-spacing: -0.035em;
}

.concerns-heading h2 em {
    color: var(--color-deep-green);
    font-weight: 400;
}

.heading-line { display: block; }

.heading-line--keep,
.no-orphan {
    white-space: nowrap;
}

.concerns-heading p {
    max-width: 650px;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(43, 29, 23, 0.16);
    border-bottom: 1px solid rgba(43, 29, 23, 0.16);
}

.concern-card {
    position: relative;
    min-height: 330px;
    padding: clamp(2rem, 4vw, 3.5rem);
    border-right: 1px solid rgba(43, 29, 23, 0.16);
    transition: background 300ms ease, transform 300ms ease;
}

.concern-card:last-child { border-right: 0; }

.concern-card:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-6px);
}

.concern-number {
    position: absolute;
    top: 1.4rem;
    right: 1.5rem;
    color: rgba(43, 29, 23, 0.28);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
}

.concern-card > i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 61, 56, 0.25);
    border-radius: 50%;
    color: var(--color-deep-green);
    font-size: 1.15rem;
}

.concern-card h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}

.concern-card p {
    color: var(--color-text-secondary);
}

.concerns-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2.25rem;
}

.concerns-cta p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
}

/* Procedimentos em blocos editoriais com casos reais */
.treatment-features {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.treatment-feature {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr);
    min-height: 510px;
    overflow: hidden;
    border: 1px solid rgba(200, 154, 103, 0.34);
    border-radius: 28px;
    background: var(--color-deep-green);
    box-shadow: 0 24px 70px rgba(43, 29, 23, 0.1);
}

.treatment-feature--reverse .treatment-feature-copy { order: 2; }
.treatment-feature--reverse .treatment-case { order: 1; }

.treatment-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 5rem);
    color: rgba(247, 245, 241, 0.74);
}

.category-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(200, 154, 103, 0.48);
    border-radius: 50%;
    color: var(--color-champagne-gold);
}

.category-kicker {
    margin-bottom: 0.65rem;
    color: var(--color-champagne-gold);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.treatment-feature h3 {
    margin-bottom: 1.15rem;
    color: var(--color-warm-off-white);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 0.98;
}

.treatment-feature-copy > p {
    max-width: 460px;
    margin-bottom: 1.75rem;
    color: rgba(247, 245, 241, 0.68);
    font-size: 0.92rem;
    line-height: 1.8;
}

.treatment-procedure-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.2rem;
    margin-bottom: 2rem;
}

.treatment-procedure-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-warm-off-white);
    font-size: 0.82rem;
    line-height: 1.45;
}

.treatment-procedure-list li::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-champagne-gold);
}

.treatment-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    color: var(--color-warm-off-white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: gap 250ms ease, color 250ms ease;
}

.treatment-feature-link:hover {
    gap: 0.95rem;
    color: var(--color-champagne-gold);
}

.treatment-case {
    position: relative;
    min-height: 510px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 1.25rem;
    background: #e8ded2;
}

.treatment-case-heading,
.treatment-case-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.treatment-case-heading {
    padding: 0.25rem 0.25rem 1rem;
}

.treatment-case-heading span,
.treatment-case-labels {
    color: rgba(43, 29, 23, 0.58);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.treatment-case-heading strong {
    color: var(--color-espresso);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    font-weight: 500;
}

.treatment-case .ba-comparison {
    min-height: 390px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(43, 29, 23, 0.13);
}

.treatment-case-labels {
    padding: 0.9rem 0.25rem 0.1rem;
}

.treatment-case-labels span:nth-child(2) {
    color: var(--color-champagne-gold);
    text-align: center;
}

.treatment-results-disclaimer {
    margin-top: 1.4rem;
    color: var(--color-soft-taupe);
    font-size: 0.72rem;
    text-align: center;
}

.profile-quote {
    margin-top: 2rem;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 2px solid var(--color-champagne-gold);
    color: var(--color-deep-green);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-style: italic;
    line-height: 1.45;
}

/* FAQ */
.faq-section {
    padding: clamp(90px, 10vw, 150px) 0;
    background: #efeae3;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.6rem, 4.5vw, 4.6rem);
    letter-spacing: -0.035em;
}

.faq-intro h2 em {
    color: var(--color-deep-green);
    font-weight: 400;
}

.faq-intro p {
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

@media (max-width: 1100px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-intro { position: static; }
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--color-deep-green);
    font-weight: 600;
    font-size: 0.84rem;
}

.faq-contact-link i { font-size: 1.2rem; }

.faq-list { border-top: 1px solid rgba(43, 29, 23, 0.18); }

.faq-item {
    border-bottom: 1px solid rgba(43, 29, 23, 0.18);
}

.faq-item summary {
    position: relative;
    padding: 1.7rem 3.2rem 1.7rem 0;
    cursor: pointer;
    list-style: none;
    color: var(--color-espresso);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.3;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary span,
.faq-item summary span::after {
    position: absolute;
    top: 50%;
    right: 0.2rem;
    width: 18px;
    height: 1px;
    background: var(--color-deep-green);
    content: "";
    transition: transform 250ms ease;
}

.faq-item summary span::after {
    top: 0;
    right: 0;
    transform: rotate(90deg);
}

.faq-item[open] summary span::after { transform: rotate(0deg); }

.faq-item p {
    max-width: 670px;
    padding: 0 3rem 1.8rem 0;
    color: var(--color-text-secondary);
}

/* CTA final e mapas */
.btn-whatsapp-direct {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0.25rem 0 2rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--color-champagne-gold);
    background: var(--color-champagne-gold);
    color: var(--color-deep-green);
    font-weight: 650;
}

.btn-whatsapp-direct:hover {
    background: #fff;
    border-color: #fff;
}

.clinic-map {
    width: 100%;
    height: 220px;
    margin: 1.25rem 0;
    border: 0;
    border-radius: 14px;
    filter: saturate(0.55) contrast(0.95);
}

@media (max-width: 980px) {
    .authority-grid {
        min-height: auto;
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        padding-block: 0;
    }

    .authority-item {
        min-height: 132px;
        padding: 1.2rem 0.75rem;
        border-right: 1px solid rgba(200, 154, 103, 0.28);
    }

    .authority-item:last-child { border-right: 0; }
    .authority-divider { display: none; }
    .authority-copy small { display: none; }

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

    .concern-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(43, 29, 23, 0.16);
    }

    .concern-card:last-child { border-bottom: 0; }

    .treatment-feature {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .treatment-feature--reverse .treatment-feature-copy,
    .treatment-feature--reverse .treatment-case { order: initial; }

    .treatment-feature-copy { min-height: 390px; }
    .treatment-case { min-height: 500px; }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-intro { position: static; }
}

@media (max-width: 767px) {
    .hero-left-inner h1 {
        font-size: clamp(2.35rem, 10.5vw, 3.4rem);
    }

    .hero-title-opening,
    .hero-title-line { white-space: nowrap; }

    .hero-actions .btn-hero { width: 100%; }

    .hero-right[data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

    .mobile-nav {
        right: 0;
        contain: layout paint;
        visibility: hidden;
        transform: translateX(110%);
        transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), visibility 400ms;
    }

    .mobile-nav.active {
        visibility: visible;
        transform: translateX(0);
    }

    .authority-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .authority-item {
        min-height: 112px;
        justify-content: center;
        flex-direction: column;
        gap: 0.35rem;
        padding: 1rem 0.35rem;
        text-align: center;
    }

    .authority-item {
        border-right: 0;
        border-bottom: 0;
    }

    .authority-grid > .authority-item:nth-child(1),
    .authority-grid > .authority-item:nth-child(5) {
        border-right: 1px solid rgba(200, 154, 103, 0.28);
    }

    .authority-grid > .authority-item:nth-child(1),
    .authority-grid > .authority-item:nth-child(3) {
        border-bottom: 1px solid rgba(200, 154, 103, 0.28);
    }

    .authority-item strong { font-size: clamp(1.9rem, 9vw, 2.5rem); }

    .authority-item span {
        max-width: 105px;
        font-size: 0.46rem;
        line-height: 1.3;
        letter-spacing: 0.07em;
    }

    .authority-feature-icon {
        width: 36px;
        height: 36px;
    }

    .authority-feature-icon i { font-size: 0.95rem; }

    .concerns-heading h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }

    .concerns-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .concerns-cta .btn { width: 100%; text-align: center; }

    .treatment-feature {
        border-radius: 20px;
    }

    .treatment-feature-copy {
        min-height: 0;
        padding: 2.25rem 1.5rem;
    }

    .treatment-procedure-list { grid-template-columns: 1fr; }

    .treatment-case {
        min-height: 380px;
        padding: 0.8rem;
    }

    .treatment-case .ba-comparison {
        min-height: 280px;
        border-radius: 14px;
    }

    .treatment-case-labels span:nth-child(2) { display: none; }

    .faq-item summary { padding-block: 1.35rem; }

    .btn-whatsapp-direct { width: 100%; text-align: center; }

    .clinic-map { height: 190px; }

    .floating-whatsapp-btn {
        display: flex !important;
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
        z-index: 9999;
    }

    .floating-whatsapp-btn .tooltip { display: none; }
}















/* ─────────────────────────────────────────
   EQUIPE
   ───────────────────────────────────────── */
















/* Placeholder de equipe */












/* ─────────────────────────────────────────
   RESULTADOS / ANTES E DEPOIS
   ───────────────────────────────────────── */
/* ─────────────────────────────────────────
   RESULTADOS — Results Showcase Carousel
   ───────────────────────────────────────── */










































/* Before/After Comparison */
.ba-comparison {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f0eeeb;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    flex-shrink: 0;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
}

/* ── Hierarquia tipográfica global do conteúdo ──
   A escala permanece proporcional em desktop, tablet e mobile. */
:root {
    --heading-h1-size: clamp(2.1rem, 5.1vw, 5rem);
    --heading-h2-size: clamp(1.6rem, 4.2vw, 4.2rem);
    --heading-h3-size: clamp(1.15rem, 3.2vw, 3rem);
}

h1 {
    font-size: var(--heading-h1-size) !important;
}

h2 {
    font-size: var(--heading-h2-size) !important;
}

h3 {
    font-size: var(--heading-h3-size) !important;
}

body > section h4 {
    font-size: clamp(1rem, 2.2vw, 1.8rem) !important;
}

body > section h5 {
    font-size: clamp(0.9rem, 1.5vw, 1.25rem) !important;
}

body > section h6 {
    font-size: clamp(0.8rem, 1.2vw, 1rem) !important;
}

h1,
h2,
h3,
body > section h4,
body > section h5,
body > section h6 {
    text-wrap: balance;
}

.ba-after {
    z-index: 1;
}

.ba-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.ba-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.95) 15%, rgba(255,255,255,0.95) 85%, rgba(255,255,255,0.2) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 16px rgba(0,0,0,0.22);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid rgba(200,154,103,0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 4px 20px rgba(0,0,0,0.1);
    color: var(--color-champagne-gold);
    font-size: 1.2rem;
    font-weight: 300;
    pointer-events: auto;
    cursor: col-resize;
}

.ba-arrow-left,
.ba-arrow-right {
    color: var(--color-champagne-gold);
    line-height: 1;
}

/* Controles de navegação */








/* Dots */








/* Responsive */
@media (min-width: 768px) and (max-width: 991px) {
    
}

@media (max-width: 767px) {
    

    

    

    
    

    
}

@media (max-width: 480px) {
    
}

/* ─────────────────────────────────────────
   DEPOIMENTOS — Editorial escuro
   ───────────────────────────────────────── */
/* ─────────────────────────────────────────
   DEPOIMENTOS — Marquee infinita (2 trilhas)
   ───────────────────────────────────────── */
.testimonials-premium {
    background: var(--color-espresso);
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 7vw, 88px);
}

/* Brilho radial decorativo */
.testimonials-premium::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse at center top, rgba(200,154,103,0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Cabeçalho */
.testimonials-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 72px);
    position: relative;
    z-index: 1;
}

.testimonials-header h2 {
    font-size: clamp(2.2rem, 5vw, 5rem);
    color: var(--color-warm-off-white);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.testimonials-header p {
    font-size: 0.95rem;
    color: rgba(247, 245, 241, 0.45);
    line-height: 1.7;
}

/* Section tag invertida */
.section-tag--light {
    color: var(--color-champagne-gold);
}
.section-tag--light::before {
    background: var(--color-champagne-gold);
}

/* ── Marquee wrapper ── */
.testi-marquee-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Fade lateral para efeito de profundidade */
.testi-marquee-wrap::before,
.testi-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: clamp(60px, 10vw, 140px);
    z-index: 2;
    pointer-events: none;
}
.testi-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-espresso) 0%, transparent 100%);
}
.testi-marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-espresso) 0%, transparent 100%);
}



/* Trilha animada */
.testi-marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 8px 0;
}

.testi-marquee--left {
    animation: testi-scroll-left 38s linear infinite;
}



.testi-marquee:hover {
    animation-play-state: paused;
}

@keyframes testi-scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes testi-scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Cada trilha tem 2 cópias lado a lado */
.testi-track {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

/* Card individual */
.testi-card {
    flex-shrink: 0;
    width: clamp(260px, 28vw, 380px);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,154,103,0.12);
    box-shadow:
        0 16px 48px rgba(0,0,0,0.35),
        0 0 0 1px rgba(200,154,103,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: default;
}

.testi-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 28px 64px rgba(0,0,0,0.5),
        0 0 0 1px rgba(200,154,103,0.25);
    border-color: rgba(200,154,103,0.3);
}

.testi-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

/* CTA inferior */
.testimonials-cta {
    text-align: center;
    margin-top: clamp(40px, 6vw, 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.testimonials-cta p {
    font-size: 0.95rem;
    color: rgba(247, 245, 241, 0.45);
    font-style: italic;
    font-family: var(--font-display);
}

.btn-outline-light-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border: 1.5px solid rgba(200, 154, 103, 0.5);
    border-radius: var(--radius-medium);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-champagne-gold);
    font-family: var(--font-body);
    letter-spacing: 0.4px;
    transition: var(--transition-standard);
}

.btn-outline-light-gold:hover {
    background: var(--color-champagne-gold);
    color: var(--white);
    border-color: var(--color-champagne-gold);
}

/* ─────────────────────────────────────────
   FORMULÁRIO DE AGENDAMENTO
   ───────────────────────────────────────── */
/* ─────────────────────────────────────────
   AGENDAMENTO — Editorial split
   ───────────────────────────────────────── */
.contact-form-section {
    padding: clamp(80px, 10vw, 160px) 0;
    background: var(--color-deep-green);
    position: relative;
    overflow: hidden;
}

/* Large serif word in background */
.cfs-bg-word {
    position: absolute;
    bottom: -0.15em;
    left: -0.05em;
    font-family: var(--font-display);
    font-size: clamp(200px, 28vw, 440px);
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    color: rgba(255, 255, 255, 0.028);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* Decorative gold orbs */
.contact-form-section::before,
.contact-form-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.contact-form-section::before {
    width: 480px; height: 480px;
    top: -160px; right: -120px;
    background: radial-gradient(circle, rgba(200,154,103,0.10) 0%, transparent 70%);
}
.contact-form-section::after {
    width: 320px; height: 320px;
    bottom: -80px; left: 30%;
    background: radial-gradient(circle, rgba(200,154,103,0.06) 0%, transparent 70%);
}

/* ── Grid layout ── */
.cfs-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    max-width: 1080px;
}

/* ── Editorial column ── */
.cfs-editorial {
    color: var(--color-warm-off-white);
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.cfs-editorial .section-tag--light {
    margin-bottom: 20px;
    display: inline-block;
}

.cfs-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--color-warm-off-white);
}

.cfs-headline em {
    font-style: italic;
    color: var(--color-champagne-gold);
}

.cfs-lead {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    line-height: 1.7;
    color: rgba(247,245,241,0.75);
    margin: 0 auto 42px;
    max-width: 650px;
}

/* Benefits list */
.cfs-benefits {
    list-style: none;
    margin: 0 auto 40px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 900px;
}

.cfs-benefits li {
    display: grid;
    justify-items: center;
    align-items: center;
    gap: 12px;
    min-height: 124px;
    padding: 22px 18px;
    border: 1px solid rgba(200,154,103,0.2);
    background: rgba(255,255,255,0.035);
    font-size: 0.96rem;
    color: rgba(247,245,241,0.85);
    text-align: center;
}

.cfs-benefits li strong {
    color: var(--color-warm-off-white);
    font-weight: 600;
}

.cfs-benefit-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(200,154,103,0.18);
    border: 1px solid rgba(200,154,103,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-champagne-gold);
    font-size: 0.7rem;
}

/* Proof number */
.cfs-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin: 14px 0 24px;
}

.cfs-proof-number {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    color: var(--color-champagne-gold);
    letter-spacing: -0.03em;
}

.cfs-proof-number sup {
    font-size: 0.5em;
    vertical-align: super;
}

.cfs-proof-text {
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(247,245,241,0.65);
}

.cfs-divider-line {
    width: 48px;
    height: 1px;
    background: rgba(200,154,103,0.35);
    margin: 0 auto 16px;
}

.cfs-fine {
    font-size: 0.78rem;
    color: rgba(247,245,241,0.4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
}

.cfs-editorial .btn-whatsapp-direct {
    margin: 0 auto;
    min-width: min(100%, 360px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .cfs-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .cfs-editorial {
        max-width: 560px;
        margin: 0 auto;
        text-align: center;
    }
    .cfs-lead { max-width: 100%; }
    .cfs-benefits { align-items: flex-start; text-align: left; }
    .cfs-proof { justify-content: center; }
    .cfs-divider-line { margin: 0 auto 16px; }
    .cfs-bg-word { font-size: clamp(120px, 30vw, 220px); }
    .cfs-benefits { grid-template-columns: 1fr; max-width: 560px; }
    .cfs-benefits li { min-height: auto; grid-template-columns: auto 1fr; justify-items: start; text-align: left; }
}

/* ─────────────────────────────────────────
   ENDEREÇOS
   ───────────────────────────────────────── */
.addresses-section {
    padding: clamp(64px, 8vw, 120px) 0;
    background: var(--color-warm-off-white);
    border-top: 1px solid var(--color-border);
}

.addresses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: var(--space-6);
    align-items: stretch;
}

.address-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-large);
    text-align: center;
    transition: var(--transition-standard);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.address-card:hover {
    border-color: var(--color-champagne-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.address-card i {
    font-size: 1.6rem;
    color: var(--color-champagne-gold);
    margin-bottom: var(--space-4);
    display: block;
}

.address-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-espresso);
}

.address-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-5);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
footer {
    background: var(--color-espresso);
    color: var(--color-warm-off-white);
    padding: clamp(64px, 8vw, 100px) 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(200,154,103,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: clamp(40px, 5vw, 64px);
    position: relative;
    z-index: 1;
}



.footer-col h3 {
    color: var(--color-warm-off-white);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.footer-col > p {
    color: rgba(247, 245, 241, 0.55);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.footer-col h4 {
    color: var(--color-champagne-gold);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(247, 245, 241, 0.6);
    font-size: 0.88rem;
    transition: color var(--transition-standard);
}

.footer-col ul li a:hover {
    color: var(--color-champagne-gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: var(--space-4);
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(247,245,241,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(247, 245, 241, 0.6);
    transition: var(--transition-standard);
}

.social-links a:hover {
    background: var(--color-champagne-gold);
    border-color: var(--color-champagne-gold);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(247,245,241,0.08);
    font-size: 0.75rem;
    color: rgba(247, 245, 241, 0.35);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────
   FLOATING WHATSAPP
   ───────────────────────────────────────── */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
    min-width: 58px;
    min-height: 58px;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
}

.floating-whatsapp-btn .tooltip {
    position: absolute;
    right: 68px;
    background-color: var(--white);
    color: var(--color-espresso);
    padding: 6px 12px;
    border-radius: var(--radius-small);
    font-size: 0.8rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    box-shadow: var(--shadow-sm);
    pointer-events: none;
}

.floating-whatsapp-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* ─────────────────────────────────────────
   RESPONSIVIDADE
   ───────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-left { flex: 0 0 55%; }

    .profile-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

@media (max-width: 992px) {
    .hero-left { flex: 0 0 60%; }

    .about-grid,
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visuals { display: none; }

    
    

    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; }

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

@media (max-width: 767px) {
    :root {
        --header-height: 68px;
    }

    .container { width: calc(100% - 64px); }

    /* Hero mobile: empilhado */
    .hero-premium {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        flex: 0 0 auto;
        width: 100%;
        min-height: 100svh;
        padding-top: 0;
        text-align: center;
    }

    .hero-left-inner {
        padding: calc(var(--header-height) + clamp(32px, 7vw, 56px)) clamp(24px, 6vw, 48px) 40px;
        max-width: 100%;
    }

    .hero-left::after { display: none; }

    .hero-eyebrow { justify-content: center; }

    .hero-left-inner h1 { font-size: clamp(2.6rem, 10vw, 3.6rem); }

    .hero-subtitle { margin-inline: auto; }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    

    

    .hero-right {
        flex: 0 0 auto;
        width: 100%;
        min-height: 0;
        padding-top: 0;
        display: block;
    }

    .hero-right picture,
    .hero-main-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
    }

    .hero-right picture {
        display: block;
    }

    .hero-main-image {
        object-fit: initial;
        object-position: initial;
    }

    .hero-location-tag { top: 16px; right: 16px; }

    .hero-scroll-indicator { display: none; }

    .section-header-premium h2,
    .about-content h2,
    .profile-content h3 {
        font-size: clamp(1.7rem, 7vw, 2.5rem);
    }

    .clinic-features { grid-template-columns: 1fr; }


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

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

    

    

    .credentials-box {
        flex-direction: column;
        gap: 20px;
    }

    

    .testi-card {
        width: clamp(220px, 72vw, 300px);
    }

    /* Logo menor no mobile */
    .logo img { height: 40px !important; }

    /* Agendamento: ocultar halo que vaza em telas pequenas */

    /* Hero credential strip: carrossel infinito no mobile */
    

    

    

    

    

    

    

    /* Stat label: sem quebra de linha estranha */
    
}

@media (max-width: 480px) {
    .container { width: calc(100% - 48px); }
    .concerns-section .container { width: calc(100% - 24px); }

    .hero-left-inner h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
    .hero-left-inner { padding-inline: 18px; }
    
    

    .hero-right { min-height: 0; }
}

/* ── Focus visível (acessibilidade) ── */
:focus-visible {
    outline: 2px solid var(--color-champagne-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Scrollbar discreta ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-warm-off-white); }
::-webkit-scrollbar-thumb { background: var(--color-soft-taupe); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-champagne-gold); }

/* ── Fallback legado: profile-decoration ── */
.profile-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-champagne-gold);
    border-radius: 50%;
    opacity: 0.35;
    pointer-events: none;
}
