/* =========================================
   SLIM HEALTH — Premium Design System v3
   High Contrast + Carousel Fix
   ========================================= */

/* ---- CSS TOKENS ---- */
:root {
    /* Palette: HIGH CONTRAST */
    --bg: #FAFAF8;
    --bg-alt: #F0ECE4;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-2: rgba(255, 255, 255, 0.92);
    --bg-dark: #0A0A0A;

    /* Text: DARKER for readability */
    --text: #161616;
    --text-2: #232323;
    --muted: #4F4F4F;
    --muted-2: #6A6A6A;
    --white: #FFFFFF;

    /* Brand accents */
    --accent: #7C6F60;
    --primary: #1F4D3A;

    /* Border */
    --border: rgba(22, 22, 22, 0.14);

    /* Shadows — crisp editorial */
    --shadow-xs: 0 1px 6px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.13);
    --shadow-lg: 0 16px 44px rgba(0, 0, 0, 0.17);

    /* Radii — editorial sharp */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-pill: 999px;

    /* Typography */
    --display: 'Cormorant Garamond', Georgia, serif;
    --body: 'Montserrat', sans-serif;

    /* Transitions */
    --t: 220ms cubic-bezier(.4, 0, .2, 1);
    --t-slow: 380ms cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    background: var(--bg);
    color: var(--text-2);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

em {
    font-style: italic;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---- LAYOUT ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ---- EYEBROW ---- */
.section-eyebrow {
    display: inline-block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-eyebrow.light {
    color: rgba(160, 150, 135, .65);
}

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 54px;
    background: rgba(250, 250, 248, .15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-logo {
    height: 26px;
    filter: invert(1) brightness(.15);
    opacity: .7;
}

/* =========================================
   RIGHT NAV PILL
   ========================================= */
.rightnav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: rgba(240, 236, 228, .6);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    border-radius: var(--radius-pill);
    padding: 14px 7px;
    box-shadow: var(--shadow-xs), inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.rnav-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: background var(--t), color var(--t);
}

.rnav-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.rnav-link:hover,
.rnav-link.active {
    background: rgba(255, 255, 255, .75);
    color: var(--primary);
    box-shadow: var(--shadow-xs);
}

/* =========================================
   HERO
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(.55) saturate(.75);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(175deg, transparent 30%, rgba(4, 4, 4, .6) 72%),
        linear-gradient(to right, rgba(4, 4, 4, .78) 0%, rgba(4, 4, 4, .38) 52%, rgba(4, 4, 4, .08) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 88px;
}

.hero-content {
    max-width: 720px;
    padding: 0 40px;
}

.hero-eyebrow {
    display: block;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 24px;
}

.hero-h1 {
    font-family: var(--display);
    font-size: clamp(3.8rem, 5.5vw, 6.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.02;
    letter-spacing: -.03em;
    margin-bottom: 28px;
}

.hero-h1 em {
    font-style: italic;
    font-weight: 300;
}

.hero-sub {
    font-size: .92rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 10px;
    line-height: 1.65;
}

.hero-body {
    font-size: .85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .56);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-convenio {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .62);
    margin-bottom: 36px;
}

.hero-convenio svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    stroke: rgba(255, 255, 255, .5);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    height: 52px;
    padding: 0 40px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .35);
    color: var(--white);
    font-family: var(--body);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .07em;
    transition: background var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
}

.btn-hero:hover {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .55);
    box-shadow: 0 4px 20px rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, .4);
    border-radius: 13px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 7px;
}

.scroll-mouse.sm-dark {
    border-color: rgba(22, 22, 22, .25);
    margin: 0 auto 44px;
}

.scroll-mouse.sm-dark .scroll-dot {
    background: rgba(22, 22, 22, .3);
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, .55);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .7;
    }

    50% {
        transform: translateY(7px);
        opacity: .25;
    }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
    background: var(--bg-alt);
    padding: 72px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(22, 22, 22, .08);
    transition: background var(--t);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 42px;
    height: 42px;
    background: rgba(124, 111, 96, .12);
    border: 1px solid rgba(124, 111, 96, .22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

.stat-item strong {
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -.01em;
}

.stat-item span {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
}

/* =========================================
   PROBLEM (TIMELINE)
   ========================================= */
.problem-section {
    background: var(--bg);
    padding: 100px 0 88px;
    background-image: linear-gradient(180deg, transparent 40%, rgba(240, 236, 228, .35) 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 111, 96, .06) 0%, transparent 70%);
    pointer-events: none;
}

.problem-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 111, 96, .04) 0%, transparent 70%);
    pointer-events: none;
}

.section-intro {
    text-align: center;
    margin-bottom: 48px;
}

.problem-title {
    font-family: var(--display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.12;
    letter-spacing: -.025em;
    margin-bottom: 14px;
}

.problem-lead {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (min-width: 769px) {
    .section-intro {
        text-align: left;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 44px;
    }

    .problem-title {
        font-size: clamp(2.8rem, 5vw, 4.6rem);
    }

    .problem-lead {
        margin-left: 0;
        max-width: 100%;
        font-size: 1.25rem;
    }

    .section-intro .scroll-mouse.sm-dark {
        margin-left: 0;
    }
}

/* Timeline structure — compact */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 44px;
}

.timeline-line {
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 0;
    width: 1.5px;
    background: linear-gradient(to bottom, var(--accent), rgba(124, 111, 96, .08));
}

.timeline-item {
    position: relative;
    padding: 0 0 36px 44px;
    transition: transform .3s ease;
}

.timeline-item:hover {
    transform: translateX(4px);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -4px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 4px rgba(124, 111, 96, .08);
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(124, 111, 96, .15);
    transform: scale(1.15);
}

.timeline-label {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -.015em;
    line-height: 1;
    transition: color .3s ease;
}

.timeline-item:hover .timeline-label {
    color: var(--accent);
}

.timeline-icon-wrap {
    margin-bottom: 8px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 111, 96, .12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.timeline-item:hover .timeline-icon {
    background: rgba(124, 111, 96, .12);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.timeline-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

.timeline-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    max-width: 100%;
    line-height: 1.7;
}

.problem-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    height: 50px;
    padding: 0 48px;
    border-radius: 3px;
    border: 1.5px solid rgba(22, 22, 22, .25);
    color: var(--text);
    font-family: var(--body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .07em;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 111, 96, .08), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-outline:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
}

/* =========================================
   AUTHORITY
   ========================================= */
.auth-section {
    position: relative;
    padding: 148px 0;
    background: var(--bg-alt);
    background-image: linear-gradient(170deg, rgba(255, 255, 255, .18) 0%, transparent 60%);
    overflow: hidden;
}

.auth-bg-strip {
    display: none;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}

.auth-name {
    font-family: var(--display);
    font-size: clamp(3.2rem, 5.8vw, 6rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.03;
    letter-spacing: -.035em;
    margin-bottom: 28px;
}

.auth-name em {
    font-weight: 300;
}

.crm-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.crm-chip {
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(124, 111, 96, .35);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-xs);
}

.auth-desc {
    font-size: .93rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 440px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 40px;
    border-radius: 3px;
    background: var(--text);
    color: var(--white);
    font-family: var(--body);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .06em;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}

.btn-dark:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}

/* Photo */
.auth-photo-wrap {
    position: relative;
}

.auth-photo {
    width: 100%;
    max-width: 480px;
    height: 560px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    filter: brightness(.93) saturate(.85);
    box-shadow: var(--shadow-lg);
    display: block;
}

.auth-photo-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border: 1.5px solid rgba(124, 111, 96, .28);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.auth-photo-deco2 {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(124, 111, 96, .15);
    border-radius: var(--radius-md);
    z-index: -1;
}

/* =========================================
   SPECIALTIES (CARDS)
   ========================================= */
.spec-section {
    padding: 148px 0;
    background: var(--bg);
}

.spec-header {
    margin-bottom: 68px;
}

.spec-title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-top: 12px;
}

.spec-title em {
    font-weight: 300;
}

/* Spec Carousel Wrapper */
.spec-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
}

.spec-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(22, 22, 22, .12);
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(8px);
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 5;
    transition: all .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-carousel .carousel-btn:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    border-color: rgba(22, 22, 22, .2);
}

.spec-carousel .carousel-btn.prev {
    left: 8px;
}

.spec-carousel .carousel-btn.next {
    right: 8px;
}

.spec-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.spec-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 16px;
}

.spec-cards::-webkit-scrollbar {
    display: none;
}

.spec-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    position: relative;
    border: 1.5px solid rgba(22, 22, 22, .06);
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease;
    overflow: hidden;
    scroll-snap-align: start;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(139, 115, 85, .6), rgba(139, 115, 85, .15));
    opacity: 0;
    transition: opacity .35s ease;
}

.spec-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent 70%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow);
}

.spec-card:hover {
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .04);
    transform: translateY(-6px);
    border-color: rgba(124, 111, 96, .2);
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-card:hover::after {
    transform: scaleX(1);
}

/* Hide numbers */
.spec-num {
    display: none;
}

.spec-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(124, 111, 96, .12), rgba(124, 111, 96, .06));
    border: 1.5px solid rgba(124, 111, 96, .18);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all .35s ease;
}

.spec-card:hover .spec-card-icon {
    background: linear-gradient(135deg, rgba(124, 111, 96, .22), rgba(124, 111, 96, .1));
    border-color: rgba(124, 111, 96, .35);
    transform: scale(1.05);
}

.spec-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.spec-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: .01em;
}

.spec-card p {
    font-size: .88rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
}

.spec-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.spec-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(22, 22, 22, .15);
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
}

.spec-dots button.is-active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* =========================================
   GALLERY SECTION + CAROUSEL
   ========================================= */
.gallery-section {
    padding: 148px 0 128px;
    background: var(--bg-alt);
    background-image: linear-gradient(to bottom, var(--bg-alt), rgba(250, 250, 248, .6));
    overflow: hidden;
}

.gallery-header {
    margin-bottom: 56px;
}

.gallery-title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-top: 12px;
    margin-bottom: 14px;
}

.gallery-sub {
    font-size: .93rem;
    font-weight: 400;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.72;
}

/* Carousel */
.clinic-carousel {
    position: relative;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 6px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    scroll-snap-align: start;
}

.slide-frame {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 0;
    height: clamp(220px, 32vw, 340px);
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.slide-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
}

.carousel-slide:hover .slide-frame {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.slide-caption {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

/* Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xs);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    font-size: 22px;
    line-height: 1;
    color: var(--text);
    transition: background var(--t), box-shadow var(--t);
}

.carousel-btn.prev {
    left: -10px;
}

.carousel-btn.next {
    right: -10px;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

/* Dots */
.carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
}

.carousel-dots button {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: 0;
    background: rgba(22, 22, 22, 0.22);
    cursor: pointer;
    padding: 0;
    transition: width var(--t), background var(--t);
}

.carousel-dots button.is-active {
    width: 18px;
    background: rgba(22, 22, 22, 0.55);
}

/* Responsive carousel columns */
@media (min-width: 768px) {
    .carousel-track {
        grid-auto-columns: calc(50% - 11px);
    }
}

@media (min-width: 1100px) {
    .carousel-track {
        grid-auto-columns: calc(33.333% - 14.7px);
    }
}

/* =========================================
   LOCATION SECTION
   ========================================= */
.location-section {
    padding: 128px 0;
    background: var(--bg);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.location-info h3 {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 24px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.location-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(124, 111, 96, .1);
    border: 1px solid rgba(124, 111, 96, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

.location-detail-text {
    font-size: .88rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
}

.location-detail-text strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 2px;
}

.location-map {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(124, 111, 96, .12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    height: 360px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   CTA FINAL
   ========================================= */
.cta-section {
    background: var(--bg-dark);
    padding: 148px 0;
    overflow: hidden;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 110%, rgba(31, 77, 58, .35), transparent),
        radial-gradient(ellipse 40% 30% at 80% -10%, rgba(124, 111, 96, .08), transparent);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.cta-title {
    font-family: var(--display);
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.04;
    letter-spacing: -.03em;
    margin-bottom: 22px;
}

.cta-title em {
    font-weight: 300;
}

.cta-text {
    font-size: .93rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .54);
    line-height: 1.8;
    margin-bottom: 52px;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 56px;
    padding: 0 52px;
    border-radius: 3px;
    background: var(--white);
    color: var(--bg-dark);
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .05em;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
    box-shadow: 0 4px 28px rgba(255, 255, 255, .12);
}

.btn-cta-final:hover {
    background: rgba(255, 255, 255, .9);
    transform: translateY(-3px);
    box-shadow: 0 12px 44px rgba(255, 255, 255, .2);
}

.btn-cta-final svg {
    flex-shrink: 0;
}

.cta-note {
    margin-top: 28px;
    font-size: .67rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .26);
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1.3fr 1.2fr .85fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 64px 64px;
}

.footer-logo {
    height: 26px;
    filter: invert(1) brightness(.65);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: .83rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    line-height: 1.78;
    margin-bottom: 28px;
    max-width: 260px;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 44px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    background: #25D366;
    color: var(--white);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}

.footer-wa:hover {
    background: #20c05c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

.footer-col-title {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-col-title.mt {
    margin-top: 36px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    font-size: .82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .48);
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-list li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    stroke: var(--accent);
    opacity: .65;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.footer-hours li span:first-child {
    color: rgba(255, 255, 255, .58);
}

.footer-hours li span:last-child {
    color: rgba(255, 255, 255, .32);
    white-space: nowrap;
}

.footer-partners li {
    font-size: .82rem;
    color: rgba(255, 255, 255, .42);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 64px;
}

.footer-bottom span {
    font-size: .67rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .22);
    letter-spacing: .05em;
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.float-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 400;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .38);
    transition: transform var(--t), box-shadow var(--t);
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, .52);
}

.float-wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 3s ease-out infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: .45;
    }

    100% {
        transform: scale(1.85);
        opacity: 0;
    }
}

/* =========================================
   FADE-IN ANIMATION
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
/* =========================================
   PREMIUM SECTION STYLES (shared)
   ========================================= */

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(124, 111, 96, 0.4));
    z-index: 999;
    width: 0%;
    transition: width 60ms linear;
}

/* --- Hero Badge --- */
.hero-badge {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    animation: badge-pulse 3s ease-in-out infinite;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    animation: dot-blink 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

@keyframes dot-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* --- Particle dots background (hero) --- */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float-particle 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.particle:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.particle:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 0.8s;
    animation-duration: 10s;
}

.particle:nth-child(5) {
    left: 85%;
    top: 15%;
    animation-delay: 2.2s;
    animation-duration: 8s;
}

.particle:nth-child(6) {
    left: 40%;
    top: 80%;
    animation-delay: 4s;
    animation-duration: 7.5s;
}

.particle:nth-child(7) {
    left: 60%;
    top: 45%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.particle:nth-child(8) {
    left: 15%;
    top: 85%;
    animation-delay: 2.8s;
    animation-duration: 9.5s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    25% {
        opacity: 0.6;
    }

    50% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0.3;
    }

    75% {
        opacity: 0.5;
    }
}

/* --- Benefits Strip --- */
.benefits-strip {
    padding: 56px 0;
    background: var(--bg);
    border-top: 1px solid rgba(124, 111, 96, 0.08);
    border-bottom: 1px solid rgba(124, 111, 96, 0.08);
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .02em;
}

.benefit-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(124, 111, 96, 0.12);
    border: 1px solid rgba(124, 111, 96, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent);
    stroke-width: 2.5;
}

/* --- Why Choose Us Section --- */
.why-section {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 111, 96, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-header {
    text-align: center;
    margin-bottom: 72px;
}

.why-title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-top: 12px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 32px 24px 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(124, 111, 96, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.55);
}

.why-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 20px;
    background: rgba(124, 111, 96, 0.1);
    border: 1px solid rgba(124, 111, 96, 0.18);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.why-card:hover .why-icon {
    background: rgba(124, 111, 96, 0.2);
    transform: scale(1.05);
}

.why-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
}

.why-card h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.why-card p {
    font-size: .83rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
}

/* --- Social Proof Section --- */
.social-proof-section {
    padding: 80px 0;
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255, 255, 255, 0.04), transparent);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.proof-item {
    text-align: center;
    padding: 32px 16px;
}

.proof-number {
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -.03em;
}

.proof-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 148px 0;
    background: var(--bg);
    background-image: linear-gradient(180deg, var(--bg) 0%, rgba(240, 236, 228, 0.25) 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 72px;
}

.testimonials-title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-top: 12px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(124, 111, 96, 0.1);
    border-radius: 6px;
    padding: 40px 32px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    left: 28px;
    font-family: var(--display);
    font-size: 4rem;
    line-height: 1;
    color: rgba(124, 111, 96, 0.15);
    user-select: none;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 4px;
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    fill: #D4A853;
    stroke: none;
}

.testimonial-text {
    font-size: .9rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
    margin-top: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(124, 111, 96, .2);
    box-shadow: var(--shadow-xs);
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.testimonial-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: .72rem;
    font-weight: 500;
    color: var(--muted-2);
    letter-spacing: .05em;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 148px 0;
    background: var(--bg-alt, #e8e2d8);
    background-image: linear-gradient(170deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.faq-header {
    text-align: center;
    margin-bottom: 72px;
}

.faq-title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-top: 12px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(124, 111, 96, 0.1);
    border-radius: 5px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(124, 111, 96, 0.2);
}

.faq-item.open {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(124, 111, 96, 0.25);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    font-size: .93rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(124, 111, 96, 0.1);
    border: 1px solid rgba(124, 111, 96, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), background 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: rgba(124, 111, 96, 0.2);
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
    stroke-width: 2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: .88rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
}

/* --- Lead Capture Form --- */
.lead-section {
    padding: 128px 0;
    background: var(--bg);
    background-image: linear-gradient(180deg, rgba(240, 236, 228, 0.3) 0%, var(--bg) 100%);
}

.lead-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lead-title {
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 14px;
}

.lead-sub {
    font-size: .9rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lead-field {
    position: relative;
}

.lead-field input,
.lead-field select {
    width: 100%;
    height: 56px;
    padding: 0 24px;
    border-radius: 4px;
    border: 1.5px solid rgba(124, 111, 96, 0.2);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 400;
    color: var(--text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.lead-field input::placeholder {
    color: var(--muted-2);
    font-weight: 400;
}

.lead-field input:focus,
.lead-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(124, 111, 96, 0.1);
    background: rgba(255, 255, 255, 0.65);
}

.lead-field select {
    cursor: pointer;
    color: var(--muted-2);
}

.lead-field select option {
    background: white;
    color: var(--text);
}

.btn-lead {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 56px;
    padding: 0 48px;
    border-radius: 3px;
    border: none;
    background: var(--text);
    color: var(--white, #fff);
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 8px;
}

.btn-lead:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.lead-note {
    margin-top: 16px;
    font-size: .72rem;
    font-weight: 400;
    color: var(--muted-2);
    letter-spacing: .03em;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .spec-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .auth-photo {
        height: 480px;
    }

    .carousel-btn.prev {
        left: 4px;
    }

    .carousel-btn.next {
        right: 4px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .btn-hero,
    .btn-outline,
    .btn-dark,
    .btn-cta-final,
    .btn-lead {
        padding: 0 24px;
        white-space: normal;
        height: auto;
        min-height: 52px;
        text-align: center;
        line-height: 1.4;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .topbar {
        height: 48px;
    }

    .rightnav {
        display: none;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-h1 {
        font-size: clamp(2.6rem, 8vw, 3.2rem);
    }

    .problem-section,
    .spec-section,
    .auth-section,
    .gallery-section {
        padding: 88px 0;
    }

    .problem-title,
    .why-title,
    .spec-title,
    .gallery-title,
    .testimonials-title,
    .faq-title,
    .lead-title {
        font-size: 2.2rem !important;
    }

    .auth-name {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        border: none !important;
        padding: 16px 12px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: var(--radius-md);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .timeline {
        padding-left: 32px;
    }

    .timeline-label {
        font-size: 1.55rem;
    }

    .auth-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .auth-right {
        order: -1;
    }

    .auth-photo {
        height: 360px;
        max-width: 100%;
    }

    .auth-photo-deco,
    .auth-photo-deco2 {
        display: none;
    }

    .spec-cards {
        gap: 14px;
    }

    .spec-card {
        flex: 0 0 85%;
        min-width: 260px;
        padding: 32px 24px;
    }

    .spec-carousel {
        padding: 0 24px;
    }

    .spec-carousel .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .spec-carousel .carousel-btn.prev {
        left: 0;
    }

    .spec-carousel .carousel-btn.next {
        right: 0;
    }

    .carousel-btn.prev {
        left: 4px;
    }

    .carousel-btn.next {
        right: 4px;
    }

    .location-section {
        padding: 88px 0;
    }

    .location-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location-map {
        height: 260px;
    }

    .cta-section {
        padding: 96px 0;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 52px 24px 44px;
    }

    .footer-bottom {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .float-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .proof-number {
        font-size: 2.5rem;
    }

    .proof-item {
        padding: 24px 8px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials-section {
        padding: 88px 0;
    }

    .faq-section {
        padding: 88px 0;
    }

    .lead-section {
        padding: 88px 0;
    }

    .benefits-grid {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .lead-form {
        width: 100%;
    }
}

/* =========================================
   PROCEDIMENTOS SECTION — Premium Editorial
   ========================================= */
.proc-section {
    padding: 148px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.proc-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 111, 96, .04) 0%, transparent 70%);
    pointer-events: none;
}

.proc-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 111, 96, .03) 0%, transparent 70%);
    pointer-events: none;
}

.proc-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.proc-title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-top: 12px;
}

.proc-title em {
    font-weight: 300;
}

.proc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.proc-item {
    position: relative;
    background: rgba(255, 255, 255, .45);
    border: 1px solid rgba(124, 111, 96, .1);
    border-radius: var(--radius-md);
    padding: 44px 36px 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s cubic-bezier(.4, 0, .2, 1), border-color .3s ease;
    overflow: hidden;
}

.proc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), rgba(124, 111, 96, .2));
    border-radius: 0 0 2px 0;
    transition: height .5s cubic-bezier(.4, 0, .2, 1);
}

.proc-item:hover::before {
    height: 100%;
}

.proc-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .08);
    border-color: rgba(124, 111, 96, .2);
}

.proc-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, transparent 50%);
    pointer-events: none;
}

.proc-num {
    font-family: var(--display);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(124, 111, 96, .06);
    margin-bottom: -12px;
    user-select: none;
    pointer-events: none;
    letter-spacing: -.04em;
}

.proc-icon {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    background: rgba(124, 111, 96, .07);
    border: 1px solid rgba(124, 111, 96, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background .3s ease, transform .3s ease;
}

.proc-item:hover .proc-icon {
    background: rgba(124, 111, 96, .14);
    transform: scale(1.05);
}

.proc-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.proc-body h3 {
    font-family: var(--display);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

.proc-body p {
    font-size: .88rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.proc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color var(--t), gap var(--t);
}

.proc-cta::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .35s cubic-bezier(.4, 0, .2, 1);
}

.proc-cta:hover {
    color: var(--text);
    gap: 12px;
}

.proc-cta:hover::after {
    width: 100%;
}

/* =========================================
   SUBESPECIALIDADES SECTION — Premium Grid
   ========================================= */
.subspecs-section {
    padding: 148px 0;
    background: var(--bg-alt);
    background-image: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 35%);
    position: relative;
    overflow: hidden;
}

.subspecs-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 111, 96, .04) 0%, transparent 65%);
    pointer-events: none;
}

.subspecs-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.subspecs-title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-top: 12px;
    margin-bottom: 16px;
}

.subspecs-title em {
    font-weight: 300;
}

.subspecs-sub {
    font-size: .9rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.72;
}

.subspecs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}

.subspec-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 18px 36px;
    background: rgba(255, 255, 255, .4);
    border: 1px solid rgba(124, 111, 96, .1);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.subspec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: width .45s cubic-bezier(.4, 0, .2, 1);
}

.subspec-card:hover::before {
    width: 100%;
}

.subspec-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, rgba(255, 255, 255, .15) 0%, transparent 50%);
    pointer-events: none;
}

.subspec-card:hover {
    background: rgba(255, 255, 255, .65);
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .08);
    border-color: rgba(124, 111, 96, .22);
}

.subspec-num {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--display);
    font-size: .82rem;
    font-weight: 400;
    color: rgba(124, 111, 96, .12);
    letter-spacing: .02em;
}

.subspec-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(124, 111, 96, .06);
    border: 1px solid rgba(124, 111, 96, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.subspec-card:hover .subspec-icon {
    background: rgba(124, 111, 96, .14);
    border-color: rgba(124, 111, 96, .25);
    transform: scale(1.08);
}

.subspec-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .3s ease;
}

.subspec-card:hover .subspec-icon svg {
    stroke: var(--text);
}

.subspec-card h3 {
    font-family: var(--body);
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: .01em;
}

.subspec-cta {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: .5;
    transition: opacity var(--t-slow), color var(--t-slow);
}

.subspec-card:hover .subspec-cta {
    opacity: 1;
    color: var(--text);
}

/* --- Proc + Subspecs responsive --- */
@media (max-width: 1024px) {
    .proc-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .subspecs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .proc-section,
    .subspecs-section {
        padding: 88px 0;
    }

    .proc-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .proc-item {
        padding: 36px 28px 32px;
    }

    .proc-num {
        font-size: 3.5rem;
    }

    .proc-title,
    .subspecs-title {
        font-size: 2.2rem !important;
    }

    .subspecs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .subspec-card {
        padding: 32px 14px 28px;
    }

    .subspec-icon {
        width: 52px;
        height: 52px;
    }

    .subspec-cta {
        opacity: 1;
    }
}

/* =========================================
   CONVÊNIOS SECTION
   ========================================= */
.convenios-section {
    padding: 128px 0;
    background: var(--bg-alt);
    background-image: linear-gradient(180deg, rgba(250, 250, 248, .55) 0%, var(--bg-alt) 35%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.convenios-header {
    text-align: center;
    margin-bottom: 64px;
}

.convenios-title {
    font-family: var(--display);
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-top: 12px;
    margin-bottom: 16px;
}

.convenios-title em {
    font-weight: 300;
}

.convenios-sub {
    font-size: .9rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.72;
}

.convenios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto 44px;
}

.convenios-pill {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(124, 111, 96, .3);
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--body);
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--text-2);
    white-space: nowrap;
    transition: background var(--t), border-color var(--t), color var(--t), transform var(--t), box-shadow var(--t);
    cursor: default;
}

.convenios-pill:hover {
    background: var(--white);
    border-color: rgba(124, 111, 96, .6);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.convenios-note {
    text-align: center;
    font-size: .68rem;
    font-weight: 500;
    color: var(--muted-2);
    letter-spacing: .14em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .convenios-section {
        padding: 88px 0;
    }

    .convenios-title {
        font-size: 2rem !important;
    }

    .convenios-grid {
        gap: 8px 10px;
    }

    .convenios-pill {
        height: 34px;
        padding: 0 16px;
        font-size: .72rem;
    }
}