/* ============================================================
   MARIANA MORAIS — PSICÓLOGA · LANDING PAGE PREMIUM
   site.css
   ============================================================ */

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

:root {
    --bg:         #F8F4EF;
    --navy:       #112B56;
    --navy-deep:  #0b1f3f;
    --gold:       #C6A46A;
    --gold-light: #E0C898;
    --text:       #2F2F2F;
    --muted:      #666666;
    --white:      #FFFFFF;
    --card:       #FFFFFF;
    --border:     #E9DFD2;

    --font-head: 'Playfair Display', serif;
    --font-sub:  'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --max-w: 1440px;
    --container: 1240px;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(17, 43, 86, 0.07);
    --shadow-md: 0 8px 40px rgba(17, 43, 86, 0.10);
    --shadow-lg: 0 20px 60px rgba(17, 43, 86, 0.13);

    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: all .3s var(--ease); }
ul { list-style: none; }

.site-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* Fade-up animation */
.fade-up {
    opacity: 1;
    transform: none;
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* ── SECTIONS ──────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-tag-light {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-header.light h2 { color: var(--white); }

.section-desc {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(233, 223, 210, 0.6);
    z-index: 1000;
    transition: all .4s ease;
}
.site-header.scrolled {
    background: var(--white);
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(17, 43, 86, 0.07);
}

.header-inner {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.header-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3e6e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
}
.header-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.header-logo-label {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}
.header-logo-name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.header-logo-crp {
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header-nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .3s var(--ease);
}
.header-nav a:hover::after { width: 100%; }
.header-nav a:hover { color: var(--navy); }

.btn-header-cta {
    flex-shrink: 0;
    background: var(--navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all .3s var(--ease);
}
.btn-header-cta:hover {
    background: var(--navy-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(17, 43, 86, 0.25);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    padding-top: 90px;
    /* Height matches the image's natural landscape proportions */
    height: calc(100vw * 0.52);
    min-height: 520px;
    max-height: 780px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* Full-width background image — no cropping */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('dobra01site.png');
    background-size: cover;
    background-position: 65% 90px;  /* clears the fixed header so her head stays visible */
    background-repeat: no-repeat;
    z-index: 0;
}

/* Gradient overlay: left solid bege → transparent at ~58% */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(248, 244, 239, 0.98) 0%,
        rgba(248, 244, 239, 0.96) 22%,
        rgba(248, 244, 239, 0.80) 38%,
        rgba(248, 244, 239, 0.35) 52%,
        rgba(248, 244, 239, 0.00) 62%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    /* Override site-container: span the full viewport with vw-based padding */
    max-width: 100%;
    padding-left: 6vw;
    padding-right: 0;
}

/* Text block — left 38% of the viewport where gradient is solid */
.hero-left {
    width: 38vw;
    max-width: 560px;
    min-width: 320px;
    flex-shrink: 0;
}

.hero-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(198, 164, 106, 0.12);
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 24px;
    border: 1px solid rgba(198, 164, 106, 0.3);
}

.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(28px, 2.8vw, 46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.gold-word {
    color: var(--gold);
    font-style: normal;
}

.hero-sub {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 380px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 26px;
    border-radius: var(--radius);
    transition: all .3s var(--ease);
}
.btn-primary i { font-size: 17px; }
.btn-primary:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(17, 43, 86, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 24px;
    border-radius: var(--radius);
    transition: all .3s var(--ease);
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.hero-trust {
    display: flex;
    gap: 24px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.4;
}
.hero-trust-item i {
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── AUTHORITY BAR ──────────────────────────────────────── */
.authority-bar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.authority-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 164, 106, 0.4), transparent);
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    gap: 0;
}

.authority-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 16px 32px;
    position: relative;
}
.authority-col + .authority-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(198, 164, 106, 0.3), transparent);
}

.authority-col i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(198, 164, 106, 0.2));
}
.authority-col strong {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}
.authority-col span {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.9;
}

.authority-quote {
    align-items: flex-start;
    text-align: left;
}
.authority-quote i {
    font-size: 24px;
    margin-bottom: 8px;
}
.authority-quote p {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

/* ── THERAPY ────────────────────────────────────────────── */
.section-therapy { background: var(--bg); }

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

.therapy-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all .3s var(--ease);
}
.therapy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(198, 164, 106, 0.4);
}
.therapy-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}
.therapy-card h3 {
    font-family: var(--font-sub);
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.4;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.section-about { background: var(--white); }

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-photo-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-photo {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--radius-lg);
    display: block;
}

.about-photo-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}
.about-photo-badge i {
    font-size: 28px;
    color: var(--gold);
}
.about-photo-badge strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}
.about-photo-badge span {
    font-size: 10px;
    color: var(--muted);
}

.about-text-side { padding-bottom: 24px; }

.about-text-side .section-tag { display: block; margin-bottom: 12px; }
.about-text-side h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-lead {
    font-family: var(--font-sub);
    font-size: 18px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text-side p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.about-cred-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--text);
}
.about-cred-item i {
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.about-signature {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.signature-svg {
    width: 200px;
    height: 50px;
}
.about-crp {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.section-how { background: var(--bg); }

.how-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding-top: 20px;
}

.how-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.how-step-num {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.how-step-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .3s var(--ease);
}
.how-step:hover .how-step-icon {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
}
.how-step-icon i {
    font-size: 26px;
    color: var(--gold);
}
.how-step:hover .how-step-icon i { color: var(--white); }

.how-step h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.how-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.how-connector {
    flex-shrink: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-top: 52px;
    opacity: 0.4;
}

/* ── SPECIALTIES ────────────────────────────────────────── */
.section-specialties { background: var(--white); }

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.spec-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all .3s var(--ease);
}
.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(198, 164, 106, 0.4);
}

.spec-icon {
    width: 52px;
    height: 52px;
    background: rgba(198, 164, 106, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.spec-icon i {
    font-size: 26px;
    color: var(--gold);
}

.spec-card h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}
.spec-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
}

.spec-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.spec-link i { font-size: 14px; transition: transform .25s; }
.spec-link:hover i { transform: translateX(4px); }

/* ── DIFFERENTIALS ──────────────────────────────────────── */
.section-differentials {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.section-differentials::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 164, 106, 0.4), transparent);
}

.section-differentials .section-header { margin-bottom: 52px; }

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.diff-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 36px;
    position: relative;
}
.diff-col + .diff-col::before {
    content: '';
    position: absolute;
    left: 0; top: 15%; height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(198, 164, 106, 0.25), transparent);
}

.diff-col i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(198, 164, 106, 0.2));
}
.diff-col h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 12px;
}
.diff-col p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.section-testimonials { background: var(--bg); }

.testimonials-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.testimonials-left { padding-top: 16px; }
.testimonials-left .section-tag { display: block; margin-bottom: 14px; }
.testimonials-left h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 2.5vw, 38px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.testimonials-left p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.star-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    padding: 12px 18px 12px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(17, 43, 86, 0.08);
}
.star-badge-google {
    min-width: 76px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-shrink: 0;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(233, 223, 210, 0.9);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(17, 43, 86, 0.05);
}
.star-badge-google span:nth-child(1),
.star-badge-google span:nth-child(4) { color: #4285F4; }
.star-badge-google span:nth-child(2),
.star-badge-google span:nth-child(6) { color: #EA4335; }
.star-badge-google span:nth-child(3) { color: #FBBC05; }
.star-badge-google span:nth-child(5) { color: #34A853; }
.star-badge-google span {
    display: inline-block;
}
.star-badge-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1;
}
.star-badge-copy strong {
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
}
.star-badge-stars {
    display: block;
    color: #FBBC05;
    font-size: 12px;
    letter-spacing: 1.4px;
}
.star-badge-copy small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2px;
}

.testimonials-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all .3s var(--ease);
}
.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}
.review-meta strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}
.review-stars i {
    font-size: 12px;
    color: #FBBC05;
}

.google-logo {
    width: 28px;
    height: 28px;
    background: #4285F4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: sans-serif;
    flex-shrink: 0;
}

.review-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}

/* ── FAQ ────────────────────────────────────────────────── */
.section-faq { background: var(--white); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 20px 0;
    transition: color .25s;
}
.faq-q:hover { color: var(--navy); }
.faq-q i {
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}
.faq-item.open .faq-q { color: var(--navy); font-weight: 600; }
.faq-item.open .faq-q i { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    padding-bottom: 20px;
}

/* ── CTA FINAL ──────────────────────────────────────────── */
.section-cta-final {
    background: var(--bg);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.cta-final-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-photo-side {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cta-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: 55% center;
    border-radius: var(--radius-lg);
    display: block;
}

.cta-text-side { padding: 20px 0; }
.cta-text-side .section-tag { display: block; margin-bottom: 16px; }
.cta-text-side h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.cta-text-side p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}
.cta-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text);
    font-weight: 500;
}
.cta-feat i {
    width: 22px;
    height: 22px;
    background: rgba(198, 164, 106, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gold);
    flex-shrink: 0;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 20px 36px;
    border-radius: var(--radius);
    transition: all .3s var(--ease);
}
.btn-cta-final i { font-size: 22px; }
.btn-cta-final:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(17, 43, 86, 0.3);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 60px;
    padding-top: 72px;
    padding-bottom: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(198, 164, 106, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
}
.footer-logo span {
    display: block;
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
}
.footer-logo strong {
    display: block;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-brand p {
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: all .3s var(--ease);
}
.footer-socials a:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col ul li {
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.footer-col ul li i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.8);
    transition: all .3s var(--ease);
}
.footer-social-btn i { font-size: 16px; color: var(--gold); }
.footer-social-btn:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom-inner span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── FLOATING WHATSAPP ─────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    min-width: 64px;
    height: 64px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    box-shadow: 0 16px 38px rgba(37, 211, 102, 0.34), 0 6px 20px rgba(17, 43, 86, 0.18);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.whatsapp-float i {
    font-size: 28px;
    line-height: 1;
}

.whatsapp-float:hover {
    background: #1DB954;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(37, 211, 102, 0.38), 0 8px 24px rgba(17, 43, 86, 0.22);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1180px) {
    .site-container { padding-left: 32px; padding-right: 32px; }
    .header-nav { gap: 20px; }
    .btn-header-cta { padding: 13px 18px; }
    .hero-left { width: 43vw; }
    .specialties-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-inner { gap: 48px; }
    .testimonials-right { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
    .site-header,
    .header-inner {
        height: 78px;
    }

    .header-nav {
        display: none;
    }

    .header-logo-icon {
        width: 38px;
        height: 38px;
    }

    .btn-header-cta {
        font-size: 10px;
        padding: 12px 16px;
        border-radius: 10px;
    }

    .hero {
        height: auto;
        min-height: 0;
        max-height: none;
        padding-top: 78px;
        display: block;
        overflow: visible;
        background: var(--bg);
    }

    .hero-bg {
        position: relative;
        height: min(82vw, 520px);
        min-height: 360px;
        background-size: cover;
        background-position: 63% top;
    }

    .hero-bg::after {
        background: linear-gradient(
            to bottom,
            rgba(248, 244, 239, 0.00) 0%,
            rgba(248, 244, 239, 0.18) 42%,
            rgba(248, 244, 239, 0.72) 74%,
            rgba(248, 244, 239, 0.96) 100%
        );
    }

    .hero-bg::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 150px;
        background: linear-gradient(
            to bottom,
            rgba(248, 244, 239, 0) 0%,
            rgba(248, 244, 239, 0.72) 48%,
            var(--bg) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    .hero-inner {
        height: auto;
        max-width: var(--container);
        margin: -92px auto 0;
        padding: 0 32px 44px;
        display: block;
    }

    .hero-left {
        width: 100%;
        min-width: 0;
        max-width: 620px;
    }

    .hero-headline {
        font-size: clamp(36px, 7vw, 56px);
        line-height: 1.08;
        max-width: 620px;
    }

    .hero-sub {
        max-width: 520px;
        font-size: 15px;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .authority-grid,
    .therapy-grid,
    .differentials-grid,
    .faq-grid,
    .cta-final-inner,
    .about-inner,
    .testimonials-inner {
        grid-template-columns: 1fr;
    }

    .authority-grid {
        gap: 18px;
    }

    .authority-col {
        padding: 20px;
    }

    .authority-col + .authority-col::before,
    .diff-col + .diff-col::before {
        display: none;
    }

    .authority-quote {
        align-items: center;
        text-align: center;
    }

    .about-inner,
    .cta-final-inner {
        gap: 36px;
    }

    .about-photo,
    .cta-photo {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .how-timeline {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 0;
    }

    .how-step {
        width: 100%;
        padding: 24px 0;
    }

    .how-connector {
        width: 1px;
        height: 24px;
        margin: 0 auto;
        background: linear-gradient(to bottom, var(--gold), transparent);
    }

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

    .testimonials-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 72px;
    }

    .site-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .section-header h2,
    .about-text-side h2,
    .cta-text-side h2,
    .testimonials-left h2 {
        font-size: 32px;
        line-height: 1.15;
    }

    .section-tag,
    .section-tag-light,
    .hero-tag {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .site-header,
    .header-inner {
        height: 72px;
    }

    .header-inner {
        gap: 12px;
    }

    .header-logo {
        gap: 10px;
        min-width: 0;
    }

    .header-logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        font-size: 19px;
    }

    .header-logo-label,
    .header-logo-crp {
        display: none;
    }

    .header-logo-name {
        font-size: 13px;
        white-space: nowrap;
    }

    .btn-header-cta {
        font-size: 9px;
        letter-spacing: .7px;
        padding: 11px 12px;
        white-space: nowrap;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-bg {
        height: 92vw;
        min-height: 330px;
        max-height: 440px;
        background-size: cover;
        background-position: 63% top;
    }

    .hero-inner {
        margin-top: -78px;
        padding: 0 20px 42px;
    }

    .hero-tag {
        margin-bottom: 18px;
        padding: 6px 11px;
    }

    .hero-headline {
        font-size: clamp(34px, 10vw, 44px);
        letter-spacing: 0;
        margin-bottom: 16px;
    }

    .hero-sub {
        font-size: 14.5px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hero-btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 26px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cta-final {
        width: 100%;
        min-height: 54px;
        justify-content: center;
        text-align: center;
        padding: 15px 18px;
        border-radius: 14px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-trust-item {
        align-items: flex-start;
        font-size: 12px;
    }

    .authority-bar {
        padding: 34px 0;
    }

    .authority-col {
        padding: 18px 10px;
    }

    .authority-col strong {
        font-size: 26px;
    }

    .therapy-grid,
    .specialties-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .therapy-card,
    .spec-card,
    .review-card {
        border-radius: 18px;
        padding: 24px 20px;
    }

    .diff-col {
        padding: 26px 8px;
    }

    .about-inner,
    .cta-final-inner,
    .testimonials-inner {
        gap: 32px;
    }

    .about-photo-wrap,
    .cta-photo-side {
        border-radius: 18px;
    }

    .about-photo,
    .cta-photo {
        aspect-ratio: 1 / 1;
        border-radius: 18px;
    }

    .about-photo {
        object-position: 58% center;
    }

    .cta-photo {
        object-position: 55% center;
    }

    .about-photo-badge {
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .about-text-side {
        padding-bottom: 0;
    }

    .about-lead {
        font-size: 17px;
        line-height: 1.6;
    }

    .about-cred-item,
    .cta-feat {
        align-items: flex-start;
        font-size: 13px;
    }

    .signature-svg {
        width: 168px;
    }

    .how-step {
        padding: 20px 8px;
    }

    .faq-q {
        font-size: 14px;
        padding: 18px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 52px;
        padding-bottom: 42px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site-footer {
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        width: 58px;
        min-width: 58px;
        height: 58px;
        padding: 0;
        border-radius: 50%;
        box-shadow: 0 12px 28px rgba(37, 211, 102, 0.34), 0 5px 16px rgba(17, 43, 86, 0.18);
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float i {
        font-size: 29px;
    }
}

@media (max-width: 420px) {
    .site-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .btn-header-cta {
        padding: 10px 11px;
    }

    .hero-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-bg {
        height: 98vw;
        min-height: 310px;
        background-position: 62% top;
    }

    .hero-headline {
        font-size: clamp(31px, 10vw, 39px);
    }

    .hero-sub br {
        display: none;
    }

    .section-header h2,
    .about-text-side h2,
    .cta-text-side h2,
    .testimonials-left h2 {
        font-size: 29px;
    }

    .about-photo,
    .cta-photo {
        aspect-ratio: 4 / 5;
    }
}

/* ── MOBILE DESIGN REFINEMENT BY FOLD ───────────────────── */
@media (max-width: 720px) {
    body {
        background: #F9F5F0;
    }

    .site-header {
        background: rgba(255, 255, 255, 0.96);
        border-bottom-color: rgba(233, 223, 210, 0.85);
    }

    .header-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-logo-name {
        font-size: 12.5px;
        letter-spacing: .2px;
    }

    .btn-header-cta {
        min-height: 42px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(17, 43, 86, 0.12);
    }

    .hero-inner {
        padding-bottom: 34px;
    }

    .hero-tag {
        max-width: 100%;
        overflow-wrap: anywhere;
        background: rgba(248, 244, 239, 0.86);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 8px 22px rgba(17, 43, 86, 0.05);
    }

    .hero-headline {
        max-width: 360px;
    }

    .hero-sub {
        max-width: 350px;
    }

    .hero-trust {
        padding: 14px;
        background: rgba(255, 255, 255, 0.64);
        border: 1px solid rgba(233, 223, 210, 0.8);
        border-radius: 18px;
    }

    .hero-trust-item i {
        margin-top: 2px;
    }

    .authority-bar {
        padding: 28px 0;
        border-top: 1px solid rgba(198, 164, 106, 0.18);
    }

    .authority-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .authority-col {
        min-height: 132px;
        justify-content: center;
        padding: 18px 12px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(198, 164, 106, 0.15);
        border-radius: 16px;
    }

    .authority-col i {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .authority-col strong {
        font-size: 24px;
    }

    .authority-col span {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .authority-quote {
        grid-column: 1 / -1;
        min-height: 0;
        padding: 20px 18px;
    }

    .authority-quote p {
        font-size: 16px;
        text-align: center;
    }

    .section-therapy {
        padding-top: 58px;
    }

    .section-therapy .section-header,
    .section-specialties .section-header,
    .section-faq .section-header {
        text-align: left;
    }

    .section-therapy .section-desc,
    .section-specialties .section-desc {
        margin-left: 0;
    }

    .therapy-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 16px;
        align-items: center;
        text-align: left;
        padding: 20px;
        background: rgba(255, 255, 255, 0.72);
    }

    .therapy-card i {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        background: rgba(198, 164, 106, 0.11);
        border-radius: 12px;
        font-size: 23px;
    }

    .therapy-card h3 {
        font-size: 17px;
    }

    .section-about {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .about-photo-wrap::after {
        content: '';
        position: absolute;
        inset: auto 0 0;
        height: 28%;
        border-radius: 0 0 18px 18px;
        background: linear-gradient(to bottom, rgba(17, 43, 86, 0), rgba(17, 43, 86, 0.18));
        pointer-events: none;
    }

    .about-photo-badge {
        z-index: 2;
        max-width: calc(100% - 24px);
        box-shadow: 0 14px 34px rgba(17, 43, 86, 0.12);
    }

    .about-text-side .section-tag,
    .cta-text-side .section-tag,
    .testimonials-left .section-tag {
        margin-bottom: 10px;
    }

    .about-text-side h2,
    .cta-text-side h2,
    .testimonials-left h2 {
        max-width: 340px;
    }

    .about-credentials {
        gap: 10px;
        margin-bottom: 26px;
    }

    .about-cred-item {
        padding: 12px 14px;
        background: rgba(248, 244, 239, 0.78);
        border: 1px solid rgba(233, 223, 210, 0.85);
        border-radius: 14px;
    }

    .section-how {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .how-timeline {
        gap: 12px;
    }

    .how-step {
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "icon num"
            "icon title"
            "icon text";
        column-gap: 16px;
        align-items: start;
        text-align: left;
        padding: 18px;
        background: rgba(255, 255, 255, 0.58);
        border: 1px solid rgba(233, 223, 210, 0.82);
        border-radius: 18px;
    }

    .how-step-num {
        grid-area: num;
        margin: 0 0 4px;
    }

    .how-step-icon {
        grid-area: icon;
        width: 54px;
        height: 54px;
        margin: 0;
    }

    .how-step h3 {
        grid-area: title;
        margin-bottom: 5px;
    }

    .how-step p {
        grid-area: text;
    }

    .how-connector {
        display: none;
    }

    .spec-card {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 10px 16px;
        align-items: start;
    }

    .spec-icon {
        grid-row: span 3;
        width: 48px;
        height: 48px;
        margin: 0;
    }

    .spec-card h3 {
        font-size: 18px;
    }

    .spec-link {
        width: fit-content;
        border-top: 0;
        padding-top: 0;
    }

    .section-differentials {
        padding: 58px 0;
    }

    .section-differentials .section-header {
        margin-bottom: 24px;
    }

    .diff-col {
        align-items: flex-start;
        text-align: left;
        padding: 22px 20px;
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(198, 164, 106, 0.14);
        border-radius: 18px;
    }

    .diff-col i {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .diff-col h3 {
        font-size: 18px;
    }

    .section-testimonials {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .testimonials-left p {
        margin-bottom: 18px;
    }

    .star-badge {
        width: 100%;
        max-width: 300px;
        padding: 13px 14px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(233, 223, 210, 0.95);
        border-radius: 18px;
        box-shadow: 0 14px 30px rgba(17, 43, 86, 0.08);
    }

    .star-badge-google {
        min-width: 74px;
        height: 36px;
    }

    .star-badge-copy strong {
        font-size: 15px;
    }

    .star-badge-stars {
        font-size: 12px;
    }

    .star-badge-copy small {
        font-size: 10px;
    }

    .review-card {
        gap: 14px;
        background: rgba(255, 255, 255, 0.78);
    }

    .review-card p {
        font-size: 13px;
    }

    .section-faq {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .faq-grid {
        gap: 0;
        background: rgba(248, 244, 239, 0.55);
        border: 1px solid rgba(233, 223, 210, 0.9);
        border-radius: 18px;
        padding: 2px 16px;
    }

    .faq-item:last-child {
        border-bottom: none;
    }

    .faq-q {
        min-height: 58px;
    }

    .section-cta-final {
        padding: 58px 0 64px;
    }

    .cta-final-inner {
        gap: 26px;
    }

    .cta-photo-side {
        position: relative;
        box-shadow: 0 18px 46px rgba(17, 43, 86, 0.12);
    }

    .cta-photo-side::after {
        content: '';
        position: absolute;
        inset: auto 0 0;
        height: 30%;
        background: linear-gradient(to bottom, rgba(17, 43, 86, 0), rgba(17, 43, 86, 0.2));
        pointer-events: none;
    }

    .cta-features {
        margin-bottom: 26px;
    }

    .btn-cta-final {
        box-shadow: 0 12px 30px rgba(17, 43, 86, 0.18);
    }

    .site-footer {
        border-top: 1px solid rgba(198, 164, 106, 0.18);
    }

    .footer-inner {
        gap: 28px;
    }

    .footer-col {
        padding-bottom: 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-col:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .footer-social-links {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .authority-grid {
        gap: 10px;
    }

    .authority-col {
        min-height: 124px;
    }

    .hero-headline {
        max-width: 330px;
    }

    .therapy-card,
    .spec-card,
    .how-step,
    .diff-col,
    .review-card {
        padding-left: 16px;
        padding-right: 16px;
    }
}
