/* ============================================
   Centro de Hérnia do Paraná — Redesign 2026
   Paleta: Azul Claro & Branco
   ============================================ */
:root {
    /* Blues — claros e profissionais */
    --navy:        #063559;
    --navy-mid:    #0A4D84;
    --navy-light:  #1468AA;
    --blue:        #1888CB;
    --blue-mid:    #38A8E0;
    --blue-light:  #6DC2EE;
    --blue-pale:   #E5F3FB;
    --blue-bg:     #F2F8FD;

    --white:       #FFFFFF;
    --off-white:   #F5F9FD;
    --light:       #DCE9F5;
    --gray-light:  #A8BDD0;
    --gray:        #5E7A90;
    --text:        #182838;
    --text-light:  #435C70;

    --wa:          #25D366;
    --wa-dark:     #1DA851;
    --green:       #10B981;
    --red-soft:    #EF4444;
    --gold:        #D4A843;

    --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --sh-sm:   0 1px 4px rgba(6,53,89,.06);
    --sh-md:   0 4px 20px rgba(6,53,89,.09);
    --sh-lg:   0 12px 48px rgba(6,53,89,.13);
    --sh-xl:   0 20px 64px rgba(6,53,89,.17);
    --sh-blue: 0 6px 28px rgba(24,136,203,.3);

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 24px;
    --r-xl: 32px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:78px; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    background: var(--white);
    overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ─── KEYFRAMES ─── */
@keyframes heroIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroImgIn {
    from { opacity: 0; transform: translateX(32px) scale(.97); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes pulseWa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50%       { box-shadow: 0 4px 32px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1); }
}
@keyframes barShimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(.94); }
    to   { opacity: 1; transform: scale(1); }
}

/* ─── ACCENT BAR ─── */
.accent-bar {
    height: 3px;
    background: linear-gradient(90deg, #0A4D84, #1888CB, #38A8E0, #1888CB, #0A4D84);
    background-size: 300% 100%;
    animation: barShimmer 7s ease infinite;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 28px; border: none; border-radius: var(--r-sm);
    font-family: var(--font-sans); font-size: .97rem; font-weight: 600; line-height: 1.4;
    cursor: pointer; transition: all .25s cubic-bezier(.4,0,.2,1); white-space: nowrap;
    letter-spacing: .01em;
}
.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 100%);
    color: var(--white); box-shadow: var(--sh-blue);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
    transform: translateY(-2px); box-shadow: 0 10px 32px rgba(24,136,203,.4);
}
.btn-whatsapp { background: var(--wa); color: var(--white); }
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.38); }
.btn-outline { background: transparent; color: var(--navy-mid); border: 2px solid var(--navy-mid); }
.btn-outline:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.9); }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ─── TOP BAR ─── */
.top-bar { background: var(--navy-mid); color: rgba(255,255,255,.82); font-size: .82rem; padding: 9px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.top-bar-phone {
    color: #7EC8F8; font-weight: 600; display: flex; align-items: center; gap: 6px;
    transition: color .2s;
}
.top-bar-phone:hover { color: var(--white); }

/* ─── HEADER ─── */
.header {
    background: var(--white);
    position: sticky; top: 0; z-index: 200;
    border-bottom: 1px solid var(--light);
    transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(6,53,89,.1); }
.header-inner {
    display: flex; align-items: center; gap: 24px;
    padding: 12px 24px;
}
/* Logo image */
.logo { display: flex; align-items: center; gap: 0; }
.logo-img { height: 48px; width: auto; display: block; }

.nav-desktop { display: flex; gap: 4px; margin-left: auto; }
.nav-desktop a {
    color: var(--text-light); font-size: .875rem; font-weight: 500;
    padding: 8px 14px; border-radius: var(--r-sm);
    transition: color .2s, background .2s;
}
.nav-desktop a:hover { color: var(--navy-mid); background: var(--blue-pale); }

.btn-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 100%);
    color: var(--white); padding: 10px 22px; font-size: .875rem;
    border-radius: var(--r-sm); font-weight: 600;
    transition: all .25s; white-space: nowrap; box-shadow: var(--sh-blue);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-header:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(24,136,203,.4); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-mid); transition: .3s; border-radius: 2px; }
.nav-mobile { display: none; flex-direction: column; padding: 16px 24px 20px; background: var(--white); border-top: 1px solid var(--light); }
.nav-mobile a { color: var(--text); padding: 12px 0; font-size: .97rem; font-weight: 500; border-bottom: 1px solid var(--light); transition: color .2s; }
.nav-mobile a:hover { color: var(--blue); }
.nav-mobile .btn { margin-top: 14px; }

/* ─── HERO ─── */
.hero {
    background: linear-gradient(145deg, #0A4D84 0%, #1468AA 40%, #1888CB 100%);
    color: var(--white); padding: 92px 0 112px; position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 78% 38%, rgba(56,168,224,.22) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(10,77,132,.55) 0%, transparent 45%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 72px; align-items: center; position: relative; z-index: 1; }

/* Hero entrance animations */
.hero-badge-row   { animation: heroIn .6s .05s ease-out both; }
.hero h1          { animation: heroIn .7s .18s ease-out both; }
.hero-subtitle    { animation: heroIn .7s .32s ease-out both; }
.hero-ctas        { animation: heroIn .7s .46s ease-out both; }
.hero-trust       { animation: heroIn .7s .60s ease-out both; }
.hero-image-wrap  { animation: heroImgIn .8s .22s ease-out both; }
.hero-photo-frame { animation: floatY 8s ease-in-out infinite 1s; }

.hero-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.93); padding: 6px 16px; border-radius: 100px;
    font-size: .78rem; font-weight: 500; letter-spacing: .3px;
    backdrop-filter: blur(8px);
}
.hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-light); flex-shrink: 0; }

.hero h1 {
    font-family: var(--font-serif); font-size: 3.05rem; line-height: 1.12;
    margin-bottom: 22px; font-weight: 700; letter-spacing: -.01em;
}
.hero h1 em { font-style: normal; color: #7DD8F5; display: block; }
.hero-subtitle { font-size: 1.06rem; opacity: .84; margin-bottom: 36px; line-height: 1.82; max-width: 500px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-trust { display: flex; align-items: stretch; }
.hero-trust-item { text-align: center; padding: 0 30px; }
.hero-trust-item:first-child { padding-left: 0; }
.trust-number { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.trust-count { font-family: var(--font-serif); font-size: 2.3rem; font-weight: 700; color: var(--white); line-height: 1; }
.trust-plus { font-size: 1.4rem; color: #7DD8F5; font-weight: 700; }
.trust-label { font-size: .72rem; opacity: .68; display: block; margin-top: 8px; line-height: 1.4; text-transform: uppercase; letter-spacing: .6px; }
.stars-mini { color: #FFD060; font-size: .85rem; letter-spacing: 1px; display: block; }
.hero-trust-divider { width: 1px; background: rgba(255,255,255,.16); flex-shrink: 0; margin: 2px 0; }

.hero-image-wrap { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-photo-frame {
    width: 360px; height: 450px; border-radius: var(--r-xl);
    overflow: hidden; position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1);
}
.hero-photo-frame::before {
    content: '';
    position: absolute; inset: -3px;
    background: linear-gradient(145deg, var(--blue-mid), var(--navy-mid), var(--blue));
    border-radius: calc(var(--r-xl) + 3px);
    z-index: -1;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.hero-photo-badge {
    background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-md);
    padding: 14px 22px; text-align: center; width: 100%; max-width: 360px;
}
.badge-label { display: block; color: var(--white); font-weight: 600; font-size: .9rem; }
.badge-univ { display: block; color: #7DD8F5; font-size: .76rem; margin-top: 4px; }

/* ─── PROOF BAR ─── */
.proof-bar { background: var(--blue-bg); padding: 20px 0; border-bottom: 1px solid var(--light); }
.proof-bar-inner { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--text-light); font-weight: 500; }
.proof-item svg { color: var(--blue); flex-shrink: 0; }
.proof-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue-light); flex-shrink: 0; opacity: .6; }
.stars-bar { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

/* ─── SECTION TYPOGRAPHY ─── */
.section-label {
    display: inline-block; color: var(--blue); font-weight: 600; font-size: .74rem;
    text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 12px;
}
.section-label.center { display: block; text-align: center; }

.section-title {
    font-family: var(--font-serif); font-size: 2.2rem; color: var(--navy-mid);
    text-align: center; margin-bottom: 14px; line-height: 1.25; letter-spacing: -.01em;
    position: relative;
}
.section-title::after {
    content: '';
    display: block; width: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    margin: 14px auto 0; border-radius: 2px;
    transition: width .7s cubic-bezier(.4,0,.2,1);
}
.section-title.is-visible::after { width: 56px; }

.section-subtitle {
    text-align: center; color: var(--gray); font-size: .97rem;
    max-width: 580px; margin: 0 auto; line-height: 1.78;
}

/* ─── PAIN SECTION ─── */
.pain-section { padding: 100px 0; background: var(--white); }
.pain-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pain-text h2 { font-family: var(--font-serif); font-size: 2.1rem; color: var(--navy-mid); margin-bottom: 20px; line-height: 1.28; letter-spacing: -.01em; }
.pain-text > p { color: var(--text-light); font-size: .97rem; margin-bottom: 28px; line-height: 1.82; }
.pain-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 20px; }
.pain-list li { display: flex; gap: 16px; align-items: flex-start; }
.pain-icon-wrap {
    width: 40px; height: 40px; min-width: 40px; flex-shrink: 0;
    background: var(--blue-pale); border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.pain-icon-wrap svg { color: var(--blue); }
.pain-list strong { display: block; font-size: .93rem; color: var(--text); margin-bottom: 3px; font-weight: 600; }
.pain-list span { font-size: .86rem; color: var(--text-light); line-height: 1.55; }

/* Pain visual card */
.pain-info-card {
    background: linear-gradient(145deg, #0A4D84 0%, #1468AA 100%);
    border-radius: var(--r-lg); padding: 44px 40px;
    color: var(--white); box-shadow: var(--sh-xl);
    position: relative; overflow: hidden;
}
.pain-info-card::before {
    content: '';
    position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(56,168,224,.2) 0%, transparent 70%);
    pointer-events: none;
}
.pain-card-header {
    display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
    padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12);
    position: relative; z-index: 1;
}
.pain-card-icon {
    width: 50px; height: 50px;
    background: rgba(56,168,224,.2); border: 1px solid rgba(56,168,224,.35);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pain-card-icon svg { color: #7DD8F5; }
.pain-card-header h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); line-height: 1.35; }
.pain-stat-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; position: relative; z-index: 1; }
.pain-stat-item { display: flex; align-items: center; gap: 18px; }
.pain-stat-num {
    font-family: var(--font-serif); font-size: 2rem; font-weight: 700;
    color: #7DD8F5; line-height: 1; flex-shrink: 0; min-width: 76px;
}
.pain-stat-text { font-size: .87rem; color: rgba(255,255,255,.72); line-height: 1.55; }
.pain-stat-text strong { color: var(--white); font-weight: 600; display: block; font-size: .92rem; margin-bottom: 2px; }
.pain-urgency-note {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--r-sm); padding: 18px 20px;
    display: flex; align-items: flex-start; gap: 12px;
    position: relative; z-index: 1;
}
.pain-urgency-note svg { color: #7DD8F5; flex-shrink: 0; margin-top: 2px; }
.pain-urgency-note p { font-size: .86rem; color: rgba(255,255,255,.78); line-height: 1.62; }
.pain-urgency-note strong { color: var(--white); }

/* ─── TECHNIQUE ─── */
.technique-section { padding: 100px 0; background: var(--blue-bg); }
.technique-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin: 52px 0 64px; }
.technique-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); }
.technique-img { width: 100%; height: 520px; object-fit: cover; object-position: center 30%; display: block; }
.technique-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(6,53,89,.88), transparent);
    padding: 28px;
}
.technique-tag { color: var(--white); font-size: .87rem; font-weight: 500; }
.technique-details { display: flex; flex-direction: column; gap: 30px; }
.technique-step { display: flex; gap: 20px; align-items: flex-start; }
.ts-number {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue) 100%);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-sans); font-size: 1rem; font-weight: 700; flex-shrink: 0;
    line-height: 1; box-shadow: 0 4px 16px rgba(24,136,203,.3);
}
.ts-content h3 { font-size: 1rem; color: var(--navy-mid); margin-bottom: 6px; font-weight: 600; }
.ts-content p { font-size: .88rem; color: var(--text-light); line-height: 1.78; }
.ts-content strong { color: var(--text); }

.technique-compare {
    background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh-md); overflow: hidden;
}
.technique-compare h3 { font-size: 1.05rem; color: var(--navy-mid); padding: 24px 28px 0; font-family: var(--font-serif); font-weight: 600; }
.compare-table { margin-top: 16px; }
.compare-row { display: grid; grid-template-columns: 1fr 1.1fr 1fr; border-bottom: 1px solid var(--light); }
.compare-row:last-child { border-bottom: none; }
.compare-row.compare-header { background: var(--blue-bg); }
.compare-row > div { padding: 13px 16px; font-size: .87rem; display: flex; align-items: center; }
.compare-label { font-weight: 600; color: var(--text-light); padding-left: 28px !important; }
.compare-col { justify-content: center; text-align: center; }
.compare-col.highlight-col { background: rgba(24,136,203,.05); font-weight: 600; }
.compare-header .highlight-col { background: var(--navy-mid); color: var(--white); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; }
.compare-header div:last-child { background: var(--light); color: var(--gray); font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; }
.good { color: var(--green); }
.bad  { color: var(--red-soft); }
.neutral { color: var(--gray); }

/* ─── SPECIALIST ─── */
.specialist-section { padding: 100px 0; background: var(--white); }
.specialist-inner { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 72px; align-items: start; }
.specialist-photo-wrap { position: relative; }
.specialist-photo-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-xl); }
.specialist-photo-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; display: block; }
.specialist-photo-accent {
    position: absolute; bottom: -18px; right: -18px;
    width: 76px; height: 76px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy-mid) 100%);
    border-radius: var(--r-md); box-shadow: var(--sh-lg);
    display: flex; align-items: center; justify-content: center;
}
.specialist-photo-accent svg { color: var(--white); }
.specialist-content { padding-top: 8px; }
.specialist-content h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--navy-mid); margin: 8px 0 6px; letter-spacing: -.01em; }
.specialist-subtitle { color: var(--blue); font-size: .9rem; margin-bottom: 8px; font-weight: 500; }
.specialist-rqe { font-size: .76rem; color: var(--gray); margin-bottom: 22px; line-height: 1.6; }
.specialist-bio { color: var(--text-light); font-size: .97rem; line-height: 1.85; margin-bottom: 30px; }
.specialist-bio strong { color: var(--text); }

.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
.credential-item {
    display: flex; gap: 12px; align-items: flex-start;
    background: var(--blue-pale); padding: 16px; border-radius: var(--r-sm);
    border: 1px solid var(--light);
    transition: border-color .22s, transform .22s, box-shadow .22s;
}
.credential-item:hover { border-color: rgba(24,136,203,.35); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.cred-icon { width: 36px; height: 36px; min-width: 36px; background: rgba(24,136,203,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cred-icon svg { color: var(--blue); }
.credential-item strong { display: block; font-size: .84rem; color: var(--navy-mid); line-height: 1.3; font-weight: 600; }
.credential-item span { font-size: .77rem; color: var(--gray); display: block; margin-top: 2px; }

/* ─── DIFFERENTIALS ─── */
.differentials-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--navy-mid) 0%, #1468AA 60%, var(--blue) 100%);
    color: var(--white); position: relative; overflow: hidden;
}
.differentials-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}
.differentials-section .section-label { color: #7DD8F5; }
.differentials-section .section-title { color: var(--white); }
.differentials-section .section-title::after { background: rgba(255,255,255,.4); }
.differentials-section .section-subtitle { color: rgba(255,255,255,.68); }
.diff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; position: relative; z-index: 1; }
.diff-card {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    padding: 32px 26px; border-radius: var(--r-md);
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
.diff-card:hover { background: rgba(255,255,255,.12); transform: translateY(-5px); border-color: rgba(255,255,255,.22); }
.diff-card.featured { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
.diff-card.featured:hover { background: rgba(255,255,255,.2); }
.diff-icon-wrap {
    width: 52px; height: 52px;
    background: rgba(255,255,255,.12); border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: #7DD8F5;
    transition: background .22s;
}
.diff-card:hover .diff-icon-wrap { background: rgba(255,255,255,.2); }
.diff-card h3 { font-size: 1.02rem; color: var(--white); margin-bottom: 10px; font-weight: 600; }
.diff-card p { font-size: .87rem; color: rgba(255,255,255,.68); line-height: 1.78; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 100px 0; background: var(--blue-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.testimonial-card {
    background: var(--white); padding: 30px 26px;
    border-radius: var(--r-md); box-shadow: var(--sh-sm);
    border: 1px solid var(--light);
    display: flex; flex-direction: column; gap: 14px;
    transition: box-shadow .25s, transform .25s;
}
.testimonial-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.testimonial-top { display: flex; align-items: center; justify-content: space-between; }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-source {
    font-size: .72rem; color: var(--blue); background: var(--blue-pale);
    padding: 3px 10px; border-radius: 100px; font-weight: 600;
}
.testimonial-text {
    font-size: .91rem; color: var(--text-light); line-height: 1.82; font-style: italic; flex: 1;
    padding-left: 20px; position: relative;
}
.testimonial-text::before {
    content: '\201C'; font-size: 2.8rem; color: var(--blue-pale);
    font-family: var(--font-serif); font-style: normal;
    line-height: 1; position: absolute; left: 0; top: -4px;
}
.testimonial-author { font-size: .82rem; font-weight: 600; color: var(--navy-mid); padding-top: 10px; border-top: 1px solid var(--light); }
.testimonials-cta { text-align: center; margin-top: 40px; }

/* ─── INVESTMENT ─── */
.investment-section { padding: 100px 0; background: var(--white); }
.investment-card {
    max-width: 920px; margin: 52px auto 0;
    border: 1px solid var(--light); border-radius: var(--r-lg);
    box-shadow: var(--sh-lg); overflow: hidden;
}
.investment-header {
    background: linear-gradient(135deg, var(--navy-mid) 0%, #1468AA 100%);
    padding: 26px 36px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.investment-header h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); font-weight: 600; }
.investment-tag {
    background: rgba(56,168,224,.25); color: #7DD8F5;
    border: 1px solid rgba(56,168,224,.45); padding: 6px 16px;
    border-radius: 100px; font-size: .78rem; font-weight: 600; white-space: nowrap;
}
.investment-body { display: grid; grid-template-columns: 1.2fr 1fr; }
.investment-includes { padding: 34px 36px; border-right: 1px solid var(--light); display: flex; flex-direction: column; gap: 14px; }
.include-item { display: flex; gap: 13px; align-items: flex-start; font-size: .93rem; color: var(--text-light); }
.include-check {
    width: 22px; height: 22px; min-width: 22px;
    background: var(--green); border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: white; font-size: .7rem; flex-shrink: 0; margin-top: 1px; font-weight: 700;
}
.investment-cta-side { padding: 34px 28px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.investment-price-note { font-size: .88rem; color: var(--gray); line-height: 1.68; }
.payment-options { font-size: .78rem; color: var(--gray); text-align: center; }

/* ─── FAQ ─── */
.faq-section { padding: 100px 0; background: var(--blue-bg); }
.faq-list { max-width: 800px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--white); border-radius: var(--r-sm);
    border: 1px solid var(--light); overflow: hidden; transition: border-color .22s;
}
.faq-item.active { border-color: rgba(24,136,203,.3); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; background: none; border: none; font-family: var(--font-sans);
    font-size: .96rem; font-weight: 600; color: var(--text); cursor: pointer; text-align: left; gap: 16px;
    transition: color .2s;
}
.faq-question:hover { color: var(--navy-mid); }
.faq-arrow {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--blue-pale); border: 1px solid var(--light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--blue); transition: transform .3s, background .22s;
    flex-shrink: 0; line-height: 1;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: .91rem; color: var(--text-light); line-height: 1.82; }
.faq-item.active .faq-arrow { transform: rotate(45deg); background: var(--blue); color: var(--white); border-color: var(--blue); }
.faq-item.active .faq-answer { max-height: 400px; }

/* ─── LOCATION ─── */
.location-section { padding: 100px 0; background: var(--white); }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.location-info h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--navy-mid); margin: 10px 0 28px; letter-spacing: -.01em; }
.location-details { display: flex; flex-direction: column; gap: 22px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon {
    width: 42px; height: 42px; min-width: 42px;
    background: var(--blue-pale); border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.loc-icon svg { color: var(--blue); }
.loc-item strong { display: block; font-size: .76rem; color: var(--blue); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; font-weight: 600; }
.loc-item span, .loc-item a { font-size: .93rem; color: var(--text-light); line-height: 1.62; }
.loc-item a { color: var(--navy-light); font-weight: 500; }
.loc-item a:hover { color: var(--blue); text-decoration: underline; }
.location-map iframe { border-radius: var(--r-md); box-shadow: var(--sh-md); }

/* ─── BOOKING ─── */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(145deg, var(--navy-mid) 0%, #1265AB 55%, #1888CB 100%);
    color: var(--white); position: relative; overflow: hidden;
}
.booking-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 30px 30px; pointer-events: none;
}
.booking-cta-wrap { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.booking-cta-wrap .section-label { color: #7DD8F5; }
.booking-cta-wrap h2 { font-size: 2.1rem; margin: 10px 0 16px; line-height: 1.28; font-weight: 700; color: var(--white); }
.booking-cta-wrap > p { font-size: .97rem; opacity: .84; line-height: 1.82; margin-bottom: 0; color: var(--white); }
.booking-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 32px 0 20px; }
.booking-disclaimer { font-size: .82rem; opacity: .55; margin-top: 0; color: var(--white); }

/* ─── FOOTER ─── */
.footer { background: var(--navy); color: rgba(255,255,255,.65); }
.footer-top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px; padding: 60px 24px 44px;
}
.footer-brand-title { color: var(--white); font-size: 1.08rem; font-family: var(--font-serif); font-weight: 700; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: .83rem; line-height: 1.78; max-width: 270px; }
.footer-badge {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
    background: rgba(24,136,203,.15); border: 1px solid rgba(56,168,224,.3);
    border-radius: var(--r-sm); padding: 8px 14px; font-size: .77rem; color: #7DD8F5;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { color: var(--white); font-size: .8rem; letter-spacing: .5px; margin-bottom: 4px; text-transform: uppercase; }
.footer-col a, .footer-col span { font-size: .83rem; color: rgba(255,255,255,.55); transition: color .2s; line-height: 1.75; }
.footer-col a:hover { color: #7DD8F5; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px;
    text-align: center; display: flex; flex-direction: column; gap: 5px;
}
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.32); }

/* ─── FLOATING ELEMENTS ─── */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 24px; width: 58px; height: 58px;
    background: var(--wa); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    z-index: 150; transition: transform .2s;
    animation: pulseWa 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.mobile-sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    padding: 10px 16px 16px; background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,.1); z-index: 149;
    border-top: 1px solid var(--light);
}

/* ─── SCROLL ANIMATION CLASSES ─── */
.anim-fade {
    opacity: 0; transform: translateY(22px);
    transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.anim-fade.is-visible { opacity: 1; transform: translateY(0); }
/* Stagger delays */
.anim-fade:nth-child(1) { transition-delay: .04s; }
.anim-fade:nth-child(2) { transition-delay: .12s; }
.anim-fade:nth-child(3) { transition-delay: .20s; }
.anim-fade:nth-child(4) { transition-delay: .28s; }
.anim-fade:nth-child(5) { transition-delay: .36s; }
.anim-fade:nth-child(6) { transition-delay: .44s; }

.anim-scale {
    opacity: 0; transform: scale(.94);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.anim-scale.is-visible { opacity: 1; transform: scale(1); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1024px) {
    .nav-desktop, .btn-header { display: none; }
    .menu-toggle { display: flex; margin-left: auto; }

    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image-wrap { align-items: center; }
    .hero-badge-row { justify-content: center; }

    .pain-inner { grid-template-columns: 1fr; gap: 48px; }
    .pain-visual { order: -1; }

    .technique-grid { grid-template-columns: 1fr; }
    .technique-img { height: 380px; }

    .specialist-inner { grid-template-columns: 1fr; gap: 48px; }
    .specialist-photo-wrap { max-width: 380px; margin: 0 auto; }

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

@media(max-width:768px) {
    .hero { padding: 56px 0 72px; }
    .hero h1 { font-size: 2.1rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-trust { flex-wrap: wrap; gap: 0; row-gap: 20px; }
    .hero-trust-item { padding: 0 18px; }
    .hero-trust-divider { display: none; }
    .hero-photo-frame { width: 280px; height: 350px; }

    .top-bar-text { display: none; }
    .top-bar-inner { justify-content: center; }

    .proof-bar-inner { gap: 14px; }
    .proof-dot { display: none; }

    .section-title { font-size: 1.8rem; }
    .pain-section, .technique-section, .specialist-section,
    .differentials-section, .testimonials-section, .investment-section,
    .faq-section, .location-section, .booking-section { padding: 72px 0; }

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

    .investment-body { grid-template-columns: 1fr; }
    .investment-includes { border-right: none; border-bottom: 1px solid var(--light); padding-bottom: 24px; }
    .investment-header { flex-direction: column; align-items: flex-start; }
    .investment-cta-side .btn { width: 100%; white-space: normal; text-align: center; }
    .investment-cta-side { align-items: stretch; }

    .location-inner { grid-template-columns: 1fr; }

    .booking-cta-wrap h2 { font-size: 1.7rem; }
    .booking-cta-buttons { flex-direction: column; align-items: center; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }

    .mobile-sticky-cta { display: block; }
    .whatsapp-float { bottom: 76px; }
    .footer { padding-bottom: 72px; }
}

@media(max-width:599px) {
    .compare-row { display: block; border-bottom: 2px solid var(--light); }
    .compare-row:last-child { border-bottom: none; }
    .compare-row.compare-header { display: none; }
    .compare-label {
        display: block; padding: 10px 16px;
        background: var(--blue-bg); color: var(--navy-mid);
        font-weight: 700; font-size: .79rem;
        text-transform: uppercase; letter-spacing: .5px;
        border-bottom: 1px solid var(--light);
    }
    .compare-col {
        display: flex; align-items: center; justify-content: flex-start;
        padding: 10px 16px; font-size: .86rem; gap: 8px;
        border-bottom: 1px solid var(--light);
    }
    .compare-col:last-child { border-bottom: none; }
    .compare-col::before {
        content: attr(data-label);
        font-size: .68rem; color: var(--gray); font-weight: 700;
        text-transform: uppercase; letter-spacing: .3px;
        min-width: 76px; flex-shrink: 0;
    }
    .compare-col.highlight-col { background: rgba(24,136,203,.05); }
}

@media(max-width:480px) {
    .diff-grid { grid-template-columns: 1fr; }
    .hero-trust-item { padding: 0 14px; }
    .pain-info-card { padding: 32px 26px; }
    .specialist-photo-accent { display: none; }
    .investment-header { padding: 20px 20px; }
    .investment-includes { padding: 24px 20px; }
    .investment-cta-side { padding: 24px 20px; }
    .investment-tag { font-size: .72rem; padding: 4px 12px; }
}
