:root {
    --ink: #17343d;
    --deep: #0a5966;
    --deep-dark: #083f49;
    --aqua: #0a9dab;
    --aqua-soft: #7bd0d3;
    --mint: #dff2f1;
    --mist: #f4f9f8;
    --white: #ffffff;
    --sand: #c6a66a;
    --line: rgba(10, 89, 102, 0.14);
    --muted: #5b7279;
    --shadow-soft: 0 20px 60px rgba(10, 73, 83, 0.12);
    --shadow-card: 0 14px 38px rgba(14, 59, 68, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: var(--deep); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--aqua); }

/*h1, h2, h3, h4, .display-hero, .section-title {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--deep-dark);
    letter-spacing: -0.025em;
}
*/
.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: .65rem .9rem;
    background: var(--deep-dark);
    color: white;
    border-radius: 8px;
    transform: translateY(-140%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); color: white; }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.91);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(8, 63, 73, 0.08);
}
.navbar { min-height: var(--header-height); padding: .5rem 0; }
.navbar-brand { color: var(--deep-dark); text-decoration: none; }
.brand-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    transition: width .25s ease, height .25s ease;
}
.site-header.is-scrolled .brand-logo { width: 52px; height: 52px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.16; }
.brand-copy strong { font-family: var(--font-title); }
.brand-copy small { color: var(--muted); font-size: .72rem; margin-top: .22rem; }
.nav-link { color: var(--ink); font-weight: 600; font-size: .94rem; border-radius: 999px; padding: .55rem .72rem !important; }
.nav-link:hover, .nav-link:focus { color: var(--deep); background: var(--mist); }

.btn { border-radius: 999px; font-weight: 700; padding: .72rem 1.2rem; border-width: 1.5px; }
.btn-lg { padding: .9rem 1.35rem; font-size: 1rem; }
.btn-wa { background: #087f6f; color: #fff; border-color: #087f6f; box-shadow: 0 10px 24px rgba(8, 127, 111, .18); }
.btn-wa:hover, .btn-wa:focus { background: #066d60; color: #fff; border-color: #066d60; transform: translateY(-1px); }
.btn-deep { background: var(--deep); color: #fff; border-color: var(--deep); }
.btn-deep:hover { background: var(--deep-dark); color: #fff; border-color: var(--deep-dark); }
.btn-outline-deep { color: var(--deep); border-color: rgba(10, 89, 102, .42); background: rgba(255,255,255,.4); }
.btn-outline-deep:hover { color: #fff; background: var(--deep); border-color: var(--deep); }

.hero-section {
    position: relative;
    padding-top: var(--header-height);
    background:
        radial-gradient(circle at 72% 26%, rgba(123, 208, 211, .24), transparent 28%),
        radial-gradient(circle at 12% 82%, rgba(198, 166, 106, .09), transparent 26%),
        linear-gradient(125deg, #f8fcfb 0%, #eef8f7 48%, #fbfdfd 100%);
}
.min-vh-hero { min-height: min(900px, 92vh); }
.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 84px;
    background: linear-gradient(to top, rgba(255,255,255,.82), transparent);
    pointer-events: none;
}
.hero-blur-field {
    position: absolute;
    width: 440px;
    height: 440px;
    top: 17%;
    right: 7%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,157,171,.13), rgba(10,89,102,.04) 48%, transparent 70%);
    filter: blur(8px);
    animation: pulseFocus 6s ease-in-out infinite;
}
.hero-orbit {
    position: absolute;
    border: 1px solid rgba(10, 157, 171, .13);
    border-radius: 50%;
    pointer-events: none;
}
.orbit-one { width: 520px; height: 520px; right: -160px; top: 80px; animation: floatOrbit 12s ease-in-out infinite; }
.orbit-two { width: 260px; height: 260px; left: -90px; bottom: 40px; animation: floatOrbit 10s ease-in-out -2s infinite reverse; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--aqua);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .75rem;
    font-weight: 800;
    margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #9ee3df; }
.display-hero {
    max-width: 900px;
    font-size: clamp(2.65rem, 6vw, 5.8rem);
    line-height: .98;
    font-weight: 500;
    margin: 0;
}
.display-hero span { color: var(--aqua); }
.hero-lead {
    max-width: 720px;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: var(--muted);
    margin: 1.6rem 0 0;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.6rem;
    margin-top: 1.7rem;
    color: var(--muted);
    font-size: .93rem;
}
.hero-meta a { color: inherit; text-decoration: none; }
.hero-meta i { color: var(--aqua); margin-right: .35rem; }

.vision-card {
    position: relative;
    margin-left: auto;
    max-width: 470px;
    min-height: 560px;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(7, 70, 82, .97), rgba(10, 112, 123, .94));
    box-shadow: 0 30px 80px rgba(8, 63, 73, .24);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.vision-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 44, 52, .78), transparent 62%);
}
.vision-aperture {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255,255,255,.22) 0 3%, rgba(123,208,211,.32) 4% 11%, rgba(10,157,171,.16) 12% 30%, rgba(255,255,255,.03) 31% 58%, transparent 59%);
    animation: focusLens 7s ease-in-out infinite;
}
.vision-ring { position: absolute; inset: 50%; border-radius: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.25); }
.ring-a { width: 66%; height: 66%; animation: ringPulse 4.5s ease-in-out infinite; }
.ring-b { width: 88%; height: 88%; animation: ringPulse 5.5s ease-in-out -1.5s infinite; }
.vision-core { position: absolute; width: 34px; height: 34px; border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); background: rgba(255,255,255,.82); box-shadow: 0 0 45px rgba(255,255,255,.6); }
.vision-card-copy { position: relative; z-index: 2; padding: 2.2rem; }
.vision-card-copy .small-label { color: #9ee3df; }
.vision-card-copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; margin: .65rem 0 1rem; }
.vision-card-copy p { color: rgba(255,255,255,.78); margin: 0; }
.small-label { text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 800; }

.trust-strip { position: relative; z-index: 3; background: #fff; border-bottom: 1px solid var(--line); }
.trust-item { padding: 1.25rem .9rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--deep); font-family: Georgia, "Times New Roman", serif; font-size: 1.06rem; }
.trust-item span { display: block; font-size: .78rem; color: var(--muted); margin-top: .18rem; }

.section-space { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section-space-sm { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.bg-soft { background: var(--mist); }
.section-title { font-size: clamp(2.35rem, 4.5vw, 4.4rem); line-height: 1.02; font-weight: 500; }
.lead-soft { color: var(--muted); font-size: 1.15rem; max-width: 760px; }

.doctor-frame { position: relative; border-radius: 32px; overflow: visible; }
.doctor-frame > img { width: 100%; display: block; border-radius: 32px; background: var(--mint); box-shadow: var(--shadow-soft); }
.doctor-badge {
    position: absolute;
    right: -24px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: .85rem;
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.25;
}
.doctor-badge i { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--deep); font-size: 1.2rem; }
.doctor-badge strong { color: var(--deep-dark); }
.image-note { color: var(--muted); font-size: .78rem; margin: 1rem 0 0; }
.mission-callout { margin: 1.35rem 0 1.1rem; padding: 1.15rem 1.25rem; border-left: 3px solid var(--aqua); background: linear-gradient(90deg, var(--mist), rgba(255,255,255,.6)); border-radius: 0 14px 14px 0; }
.mission-callout span { color: var(--aqua); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; font-weight: 800; }
.mission-callout p { margin: .35rem 0 0; color: var(--muted); font-size: .96rem; }
.cv-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.cv-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.15rem; background: white; }
.cv-card h3 { font-size: 1.2rem; margin: .35rem 0 .4rem; }
.cv-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.cv-year { color: var(--aqua); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.cv-accordion .accordion-item, .faq-accordion .accordion-item { border: 0; border-bottom: 1px solid var(--line); background: transparent; }
.cv-accordion .accordion-button, .faq-accordion .accordion-button { padding: 1.1rem 0; background: transparent; color: var(--deep-dark); box-shadow: none; font-weight: 700; }
.cv-accordion .accordion-button:not(.collapsed), .faq-accordion .accordion-button:not(.collapsed) { color: var(--aqua); }
.cv-accordion .accordion-body, .faq-accordion .accordion-body { padding: 0 0 1.3rem; color: var(--muted); }
.cv-accordion ul { margin-bottom: 0; }

.care-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.55rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.care-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(10,157,171,.25); }
.care-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--mint); color: var(--deep); font-size: 1.45rem; margin-bottom: 1.2rem; }
.care-card h3 { font-size: 1.6rem; margin-bottom: .65rem; }
.care-card p { color: var(--muted); font-size: .95rem; }
.care-card a, .article-card a, .related-card a { font-weight: 700; text-decoration: none; }
.care-card a i, .article-card a i, .related-card a i { transition: transform .2s ease; display: inline-block; }
.care-card a:hover i, .article-card a:hover i, .related-card a:hover i { transform: translateX(4px); }

.article-group { margin-top: 4rem; }
.article-group:first-of-type { margin-top: 0; }
.article-group-title { font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .85rem; text-transform: uppercase; letter-spacing: .14em; color: var(--deep); margin-bottom: 1.25rem; font-weight: 800; }
.article-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: white; box-shadow: 0 6px 20px rgba(8,63,73,.04); transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.article-visual { height: 145px; position: relative; display: flex; align-items: flex-end; justify-content: space-between; padding: 1rem 1.2rem; overflow: hidden; background: linear-gradient(135deg, var(--mint), #f6fbfb); color: var(--deep); }
.article-visual::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; border: 18px solid rgba(10,157,171,.08); right: -38px; top: -48px; }
.article-visual span { font-family: Georgia, "Times New Roman", serif; font-size: 4.6rem; line-height: .75; color: rgba(10,89,102,.18); }
.article-visual i { font-size: 2rem; position: relative; z-index: 2; }
.article-card-body { padding: 1.25rem; display: flex; flex-direction: column; height: calc(100% - 145px); }
.article-category { color: var(--aqua); font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.article-card h4 { font-size: 1.42rem; margin: .48rem 0 .65rem; }
.article-card p { color: var(--muted); font-size: .88rem; flex-grow: 1; }

.press-section { background: linear-gradient(145deg, var(--deep-dark), #0a6974 75%, #087782); position: relative; overflow: hidden; }
.press-section::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); right: -200px; top: -160px; }
.press-intro { color: rgba(255,255,255,.72); font-size: 1.12rem; }
.press-card { position: relative; z-index: 1; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); padding: 1.55rem; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); color: rgba(255,255,255,.76); transition: background .25s ease, transform .25s ease; }
.press-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.press-type { color: #9ee3df; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.press-card h3 { color: #fff; font-size: 1.7rem; margin: .8rem 0; }
.press-card a { color: #fff; font-weight: 700; text-decoration: none; }
.press-card a:hover { color: #b8efec; }

.contact-section { overflow: hidden; background: var(--deep-dark); }
.contact-copy-wrap { background: linear-gradient(145deg, var(--deep-dark), #0b6873); }
.contact-copy { max-width: 700px; margin-left: auto; padding: clamp(4rem, 8vw, 7rem) clamp(1.4rem, 6vw, 5.5rem); color: rgba(255,255,255,.78); }
.contact-copy h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.02; }
.wa-form .form-label { color: rgba(255,255,255,.86); font-weight: 700; font-size: .88rem; }
.wa-form .form-control, .wa-form .form-select { border: 1px solid rgba(255,255,255,.16); background-color: rgba(255,255,255,.09); color: #fff; border-radius: 12px; padding: .82rem .9rem; }
.wa-form .form-control::placeholder { color: rgba(255,255,255,.45); }
.wa-form .form-control:focus, .wa-form .form-select:focus { border-color: #9ee3df; box-shadow: 0 0 0 .2rem rgba(158,227,223,.15); background-color: rgba(255,255,255,.12); }
.wa-form .form-select option { color: var(--ink); background: #fff; }
.optional { opacity: .65; font-weight: 400; }
.form-status { min-height: 1.6rem; font-size: .86rem; color: #f5dca9; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }
.contact-direct { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-direct a { display: flex; align-items: center; gap: .75rem; min-width: 190px; color: #fff; text-decoration: none; }
.contact-direct i { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #9ee3df; }
.contact-direct span { display: flex; flex-direction: column; font-weight: 700; }
.contact-direct small { color: rgba(255,255,255,.55); font-weight: 500; }
.map-wrap { position: relative; min-height: 720px; background: #dcecea; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 720px; border: 0; filter: saturate(.72) contrast(.96); }
.map-card { position: absolute; left: clamp(1rem, 4vw, 3rem); bottom: clamp(1rem, 4vw, 3rem); max-width: 360px; background: rgba(255,255,255,.95); border-radius: 18px; padding: 1.2rem 1.35rem; box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.map-card span { display: block; color: var(--aqua); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; }
.map-card strong { display: block; color: var(--deep-dark); font-size: 1.1rem; margin: .25rem 0; }
.map-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.site-footer { background: #062f37; color: rgba(255,255,255,.68); }
.footer-logo { object-fit: contain; border-radius: 50%; }
.footer-title { display: block; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; }
.footer-copy { max-width: 520px; }
.footer-heading { color: #fff; font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: 1rem; }
.footer-nav li { margin-bottom: .55rem; }
.footer-nav a { color: rgba(255,255,255,.68); text-decoration: none; font-size: .9rem; }
.footer-nav a:hover { color: #9ee3df; }
.social-links { display: flex; gap: .65rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); color: #fff; text-decoration: none; }
.social-links a:hover { background: rgba(255,255,255,.09); color: #9ee3df; }
.footer-rule { border-color: rgba(255,255,255,.12); margin: 2rem 0 1rem; }
.footer-legal { color: rgba(255,255,255,.48); }

.floating-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1020;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem .95rem;
    background: #087f6f;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(0,0,0,.2);
    text-decoration: none;
    font-weight: 800;
    font-size: .88rem;
}
.floating-wa:hover { color: #fff; background: #066d60; transform: translateY(-2px); }
.floating-wa i { font-size: 1.25rem; }

.article-hero {
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
    background: linear-gradient(145deg, var(--deep-dark), #0a6b76);
    color: rgba(255,255,255,.76);
}
.article-hero-orbit { position: absolute; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; right: -250px; top: -260px; }
.article-breadcrumb .breadcrumb-item, .article-breadcrumb .breadcrumb-item::before { color: rgba(255,255,255,.48); }
.article-breadcrumb a { color: rgba(255,255,255,.72); text-decoration: none; }
.article-hero h1 { color: #fff; font-size: clamp(2.6rem, 5vw, 5.3rem); line-height: 1; max-width: 980px; }
.article-hero-intro { font-size: 1.2rem; max-width: 850px; margin: 1.2rem 0 0; }
.article-author-card { border-left: 1px solid rgba(255,255,255,.25); padding-left: 1.5rem; display: flex; flex-direction: column; gap: .28rem; }
.article-author-card span { color: #9ee3df; text-transform: uppercase; font-size: .7rem; letter-spacing: .1em; font-weight: 800; }
.article-author-card strong { color: #fff; }
.article-author-card small { color: rgba(255,255,255,.62); }
.article-content { max-width: 850px; }
.article-section { margin-bottom: 3.2rem; }
.article-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1rem; }
.article-section p { color: #425c63; font-size: 1.05rem; }
.article-list { margin: 1.2rem 0; padding: 0; list-style: none; }
.article-list li { position: relative; padding-left: 1.65rem; margin-bottom: .75rem; color: #425c63; }
.article-list li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 5px rgba(10,157,171,.1); }
.source-note { display: flex; gap: 1rem; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.3rem; background: var(--mist); }
.source-note > i { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--deep); font-size: 1.2rem; }
.source-note strong { color: var(--deep-dark); }
.source-note p { color: var(--muted); margin: .3rem 0 .45rem; font-size: .92rem; }
.source-note a { font-weight: 700; font-size: .9rem; }
.medical-disclaimer { margin-top: 1.2rem; padding: 1rem 1.15rem; border-left: 3px solid var(--sand); background: #fffaf2; color: #6c604e; font-size: .9rem; }
.article-sidebar { top: 116px; }
.sidebar-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.45rem; margin-bottom: 1.2rem; background: white; box-shadow: 0 6px 22px rgba(8,63,73,.05); }
.sidebar-card h2 { font-size: 1.7rem; }
.sidebar-card p { color: var(--muted); }
.sidebar-card > a:not(.btn) { font-weight: 700; text-decoration: none; }
.sidebar-cta { background: linear-gradient(145deg, #f2fbfa, #fff); }
.sidebar-phone { display: block; text-align: center; margin-top: 1rem; color: var(--deep); text-decoration: none; font-weight: 700; }
.related-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.35rem; background: white; }
.related-card > span { color: var(--aqua); text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; font-weight: 800; }
.related-card h3 { font-size: 1.55rem; margin: .55rem 0; }
.related-card p { color: var(--muted); font-size: .9rem; }

.simple-hero { padding-top: var(--header-height); background: linear-gradient(145deg, var(--deep-dark), #0a6b76); color: rgba(255,255,255,.75); }
.simple-hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 5rem); }
.simple-hero p { font-size: 1.15rem; }
.narrow-container { max-width: 860px; }
.legal-copy h2 { margin: 2.2rem 0 .7rem; font-size: 1.8rem; }
.legal-copy p { color: #425c63; font-size: 1.02rem; }

.not-found-section { padding-top: calc(var(--header-height) + 3rem); min-height: 75vh; display: grid; place-items: center; background: radial-gradient(circle at 50% 30%, var(--mint), transparent 32%), var(--mist); }
.not-found-code { font-family: Georgia, "Times New Roman", serif; font-size: clamp(6rem, 18vw, 14rem); line-height: .8; color: rgba(10,89,102,.08); }
.not-found-section h1 { font-size: clamp(2.2rem, 4vw, 4rem); }
.not-found-section p { color: var(--muted); max-width: 650px; margin: 1rem auto 1.5rem; }

.reveal-item { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulseFocus {
    0%, 100% { transform: scale(.96); opacity: .7; filter: blur(12px); }
    50% { transform: scale(1.05); opacity: 1; filter: blur(2px); }
}
@keyframes floatOrbit {
    0%,100% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(-18px, 12px, 0); }
}
@keyframes focusLens {
    0%,100% { filter: blur(4px); transform: translateX(-50%) scale(.98); opacity: .78; }
    50% { filter: blur(0); transform: translateX(-50%) scale(1.04); opacity: 1; }
}
@keyframes ringPulse {
    0%,100% { transform: translate(-50%,-50%) scale(.92); opacity: .35; }
    50% { transform: translate(-50%,-50%) scale(1.05); opacity: .9; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
    .reveal-item { opacity: 1; transform: none; }
}

@media (max-width: 991.98px) {
    :root { --header-height: 76px; }
    .brand-logo { width: 52px; height: 52px; }
    .navbar-collapse { background: rgba(255,255,255,.99); border: 1px solid var(--line); border-radius: 16px; padding: 1rem; margin-top: .5rem; box-shadow: var(--shadow-card); }
    .min-vh-hero { min-height: auto; }
    .vision-card { min-height: 500px; max-width: 100%; }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .doctor-frame { max-width: 620px; margin: auto; }
    .doctor-badge { right: 14px; }
    .article-author-card { border-left: 0; border-top: 1px solid rgba(255,255,255,.25); padding: 1rem 0 0; }
    .map-wrap, .map-wrap iframe { min-height: 520px; }
    .article-sidebar { position: static !important; }
}

@media (max-width: 767.98px) {
    .brand-copy small { display: none; }
    .display-hero { font-size: clamp(2.5rem, 13vw, 4.5rem); }
    .hero-lead { font-size: 1.05rem; }
    .vision-card { min-height: 430px; border-radius: 26px; }
    .vision-aperture { width: 290px; height: 290px; top: 30px; }
    .vision-card-copy { padding: 1.4rem; }
    .vision-card-copy h2 { font-size: 2.2rem; }
    .cv-grid { grid-template-columns: 1fr; }
    .doctor-badge { position: relative; right: auto; bottom: auto; margin: -35px 16px 0; }
    .contact-direct { flex-direction: column; }
    .floating-wa span { display: none; }
    .floating-wa { width: 56px; height: 56px; justify-content: center; padding: 0; border-radius: 50%; }
    .floating-wa i { font-size: 1.55rem; }
    .source-note { flex-direction: column; }
}


/* v3 visual updates */
.hero-with-eye::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(248,252,251,.98) 0%, rgba(248,252,251,.92) 46%, rgba(248,252,251,.75) 100%),
        url('../img/hero-eye-art.webp') left center / min(58vw, 1000px) auto no-repeat;
    pointer-events: none;
}
.hero-art-eye { display: none; }
.hero-blur-field { animation: none; }
.hero-orbit { display: none; }
.vision-card {
    min-height: 560px;
    background: #0c5864;
}
.vision-card::before {
    background: linear-gradient(to top, rgba(3, 27, 33, .82), rgba(3, 27, 33, .18) 52%, rgba(3,27,33,.02) 100%);
}
.vision-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vision-card-copy { margin-top: auto; }
.doctor-frame > img {
    /*aspect-ratio: 4 / 5;*/
    object-fit: cover;
}
.image-note { display:none; }
.article-visual.has-image {
    display: block;
    height: 210px;
    padding: 0;
    background: #e9f6f5;
    text-decoration: none;
}
.article-visual.has-image::after,
.article-visual.has-image span,
.article-visual.has-image i {
    display: none;
}
.article-visual.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-card-body { height: calc(100% - 210px); }
.press-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    align-items: center;
}
.press-actions .btn {
    border-radius: 999px;
    padding: .45rem .9rem;
    font-weight: 800;
}
.video-modal .modal-content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.video-modal .modal-header {
    border-bottom: 1px solid rgba(10, 89, 102, .1);
    padding: 1rem 1.25rem;
}
.video-modal .modal-body { padding: 0; background: #061f24; }
.video-modal iframe { border: 0; width: 100%; height: 100%; }
.article-feature-image {
    margin: 0 0 2rem;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #e6f4f3;
}
.article-feature-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.related-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
    .hero-with-eye::before {
        background:
            linear-gradient(180deg, rgba(248,252,251,.98) 0%, rgba(248,252,251,.95) 60%, rgba(248,252,251,.98) 100%),
            url('../img/hero-eye-art.webp') center 12% / cover no-repeat;
    }
}
@media (max-width: 767.98px) {
    .article-visual.has-image { height: 200px; }
    .article-card-body { height: calc(100% - 200px); }
    .press-actions { flex-direction: column; align-items: flex-start; }
}

/* v4: contenido visible por defecto.
   La versión anterior ocultaba .reveal-item hasta que JS agregara .is-visible.
   En local, si JS no cargaba, el sitio quedaba casi blanco. */
.reveal-item,
.reveal-item.is-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* v4: reducir alturas demasiado grandes para evitar bloques vacíos exagerados */
.min-vh-hero {
    min-height: clamp(620px, 82vh, 820px);
}
.section-space {
    padding: clamp(3.75rem, 7vw, 6.5rem) 0;
}
.section-space-sm {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

/* v4: asegurar que las tarjetas se vean completas aunque no haya JS */
.care-card,
.article-card,
.press-card,
.cv-card,
.related-card {
    opacity: 1;
}

/* v4: mejorar presencia del hero sin depender de que aparezca la imagen generada */
.hero-with-eye::before {
    opacity: 1;
}
.hero-section .container {
    z-index: 2;
}

/* v4: tarjetas de artículos con imagen siempre visible */
.article-visual.has-image {
    background: #e9f6f5;
}
.article-visual.has-image img,
.article-feature-image img,
.related-image,
.vision-photo,
.doctor-frame > img {
    opacity: 1;
    visibility: visible;
}

/* v4: si el navegador no soporta algo moderno, mantener lectura limpia */
@supports not (backdrop-filter: blur(10px)) {
    .site-header {
        background: rgba(255,255,255,.98);
    }
}

/* v5: logo grande al cargar, compacto al hacer scroll */
@media (min-width: 992px) {
    .site-header {
        overflow: visible;
    }

    .site-header .navbar,
    .site-header .container,
    .site-header .navbar-brand {
        overflow: visible;
    }

    .site-header .navbar-brand {
        position: relative;
        z-index: 3;
    }

    .site-header:not(.is-scrolled) {
        background: rgba(255, 255, 255, 0.82);
        border-bottom-color: rgba(10, 89, 102, 0.08);
    }

    .site-header:not(.is-scrolled) .brand-logo {
        width: 142px;
        height: 142px;
        object-fit: contain;
        margin-top: 8px;
        margin-bottom: -72px;
        padding: 6px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 18px 42px rgba(8, 63, 73, 0.14);
    }

    .site-header:not(.is-scrolled) .brand-copy {
        margin-left: .35rem;
        transform: translateY(-2px);
    }

    .site-header:not(.is-scrolled) .brand-copy strong {
        font-size: 1.22rem;
    }

    .site-header:not(.is-scrolled) .brand-copy small {
        font-size: .76rem;
    }

    .site-header.is-scrolled .brand-logo {
        width: 54px;
        height: 54px;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-header.is-scrolled .brand-copy strong {
        font-size: 1.05rem;
    }

    .site-header.is-scrolled .brand-copy small {
        font-size: .68rem;
    }
}

/* En móvil lo dejamos compacto para no tapar el menú */
@media (max-width: 991.98px) {
    .site-header:not(.is-scrolled) .brand-logo {
        width: 58px;
        height: 58px;
    }
}

/* v6: compactación robusta del logo usando .site-header.is-scrolled y body.page-scrolled */
@media (min-width: 992px) {
    .site-header,
    .site-header .navbar,
    .site-header .container,
    .site-header .navbar-brand {
        overflow: visible;
    }

    .site-header .brand-logo {
        transition: width .22s ease, height .22s ease, margin .22s ease, padding .22s ease, box-shadow .22s ease, border-radius .22s ease, background .22s ease;
    }

    body:not(.page-scrolled) .site-header:not(.is-scrolled) .brand-logo {
        width: 142px !important;
        height: 142px !important;
        object-fit: contain;
        margin-top: 8px !important;
        margin-bottom: -72px !important;
        padding: 6px !important;
        border-radius: 22px !important;
        background: rgba(255, 255, 255, 0.92) !important;
        box-shadow: 0 18px 42px rgba(8, 63, 73, 0.14) !important;
    }

    body.page-scrolled .site-header .brand-logo,
    .site-header.is-scrolled .brand-logo {
        width: 54px !important;
        height: 54px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body.page-scrolled .site-header,
    .site-header.is-scrolled {
        background: rgba(255, 255, 255, 0.97) !important;
        border-color: var(--line) !important;
        box-shadow: 0 10px 30px rgba(8, 63, 73, 0.08) !important;
    }
}
/* v7: hero con ojo artístico como fondo completo */
.hero-with-eye::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg,
            rgba(248, 252, 251, 0.90) 0%,
            rgba(248, 252, 251, 0.76) 42%,
            rgba(248, 252, 251, 0.66) 64%,
            rgba(248, 252, 251, 0.88) 100%
        ),
        url('../img/hero-eye-art.webp') !important;
    background-size: cover !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
    opacity: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* En escritorio: ojo más grande y cargado a la izquierda */
@media (min-width: 992px) {
    .hero-with-eye::before {
        background-size: cover !important;
        background-position: left center !important;
    }
}

/* En móvil: centramos un poco para que no se corte demasiado */
@media (max-width: 991.98px) {
    .hero-with-eye::before {
        background-image:
            linear-gradient(180deg,
                rgba(248, 252, 251, 0.94) 0%,
                rgba(248, 252, 251, 0.82) 54%,
                rgba(248, 252, 251, 0.96) 100%
            ),
            url('../img/hero-eye-art.webp') !important;
        background-size: cover !important;
        background-position: 28% center !important;
    }
}
/* v8: efecto Ken Burns suave en la foto del recuadro "Valoración y cirugía con enfoque preciso" */
.vision-card {
    isolation: isolate;
}

.vision-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    animation: kenBurnsOftalmo 18s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenBurnsOftalmo {
    0% {
        transform: scale(1.04) translate3d(-1.5%, 0, 0);
    }
    50% {
        transform: scale(1.11) translate3d(2.5%, -1.5%, 0);
    }
    100% {
        transform: scale(1.07) translate3d(-2%, 1%, 0);
    }
}

/* Respetar usuarios que prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
    .vision-photo {
        animation: none !important;
        transform: scale(1.04);
    }
}
.footer-rights-notice {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
    line-height: 1.5;
    max-width: 920px;
}

.footer-rights-notice p {
    margin: 0 0 0.45rem;
}

.footer-rights-notice p:last-child {
    margin-bottom: 0;
}
/* Ajuste visual de títulos: más moderno, limpio y legible */
:root {
    --font-main: Aptos, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-title: Aptos, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Quitar sensación de periódico */
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.68;
}

/* Títulos principales */
h1,
h2,
h3,
h4,
.display-hero,
.section-title,
.article-hero h1,
.article-section h2,
.sidebar-card h2,
.related-card h3,
.press-card h3,
.cv-card h3,
.care-card h3,
.article-card h4 {
    font-family: var(--font-title) !important;
    letter-spacing: -0.035em;
    font-weight: 750;
}

/* Hero: más editorial moderno, menos periódico */
.display-hero {
    max-width: 760px;
    font-size: clamp(2.7rem, 5.3vw, 5rem);
    line-height: 0.98;
    font-weight: 800;
    color: #083f49;
}

.display-hero span {
    color: #0a9dab;
}

/* Bajada del hero más amable */
.hero-lead {
    max-width: 680px;
    font-size: clamp(1.08rem, 1.55vw, 1.32rem);
    line-height: 1.62;
    color: #49686f;
}

/* Títulos de sección más ordenados */
.section-title {
    max-width: 760px;
    font-size: clamp(2.15rem, 4vw, 3.8rem);
    line-height: 1.04;
    font-weight: 800;
    color: #083f49;
    margin-bottom: 1rem;
}

/* Subtítulos/lead de sección */
.lead-soft {
    max-width: 720px;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
    color: #5b7279;
}

/* Eyebrow más elegante y menos técnico */
.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    font-weight: 850;
    color: #0a9dab;
    margin-bottom: 0.8rem;
}

/* Tarjetas: títulos más legibles y atractivos */
.care-card h3,
.article-card h4,
.cv-card h3,
.related-card h3,
.press-card h3 {
    font-size: clamp(1.22rem, 1.7vw, 1.55rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: #083f49;
}

/* Textos dentro de tarjetas */
.care-card p,
.article-card p,
.related-card p,
.cv-card p {
    font-size: 0.94rem;
    line-height: 1.62;
    color: #5b7279;
}

/* Artículos: lectura más amigable */
.article-hero h1 {
    max-width: 900px;
    font-size: clamp(2.35rem, 4.4vw, 4.6rem);
    line-height: 1.02;
    font-weight: 820;
}

.article-hero-intro {
    max-width: 780px;
    font-size: clamp(1.08rem, 1.5vw, 1.25rem);
    line-height: 1.68;
}

.article-content {
    max-width: 820px;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    position: relative;
    font-size: clamp(1.65rem, 2.7vw, 2.45rem);
    line-height: 1.13;
    font-weight: 800;
    color: #083f49;
    margin-bottom: 1.15rem;
    padding-left: 1rem;
}

/* Pequeña línea visual para ordenar cada subtítulo del artículo */
.article-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 4px;
    height: 1.15em;
    border-radius: 99px;
    background: linear-gradient(180deg, #0a9dab, #7bd0d3);
}

.article-section p {
    font-size: 1.03rem;
    line-height: 1.78;
    color: #405a61;
}

/* Preguntas frecuentes */
.faq-accordion .accordion-button,
.cv-accordion .accordion-button {
    font-family: var(--font-title);
    font-weight: 760;
    letter-spacing: -0.015em;
    color: #083f49;
}

/* Footer: mantenerlo sobrio */
.footer-title,
.footer-heading {
    font-family: var(--font-title) !important;
}
/* Ajuste visual de títulos: más moderno, limpio y legible */
:root {
    --font-main: Aptos, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-title: Aptos, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Quitar sensación de periódico */
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.68;
}

/* Títulos principales */
h1,
h2,
h3,
h4,
.display-hero,
.section-title,
.article-hero h1,
.article-section h2,
.sidebar-card h2,
.related-card h3,
.press-card h3,
.cv-card h3,
.care-card h3,
.article-card h4 {
    font-family: var(--font-title) !important;
    letter-spacing: -0.035em;
    font-weight: 750;
}

/* Hero: más editorial moderno, menos periódico */
.display-hero {
    max-width: 760px;
    font-size: clamp(2.7rem, 5.3vw, 4rem);
    line-height: 0.98;
    font-weight: 300;
    color: #083f49;
}

.display-hero span {
    color: #0a9dab;
}

/* Bajada del hero más amable */
.hero-lead {
    max-width: 680px;
    font-size: clamp(1.08rem, 1.55vw, 1.32rem);
    line-height: 1.62;
    color: #49686f;
}

/* Títulos de sección más ordenados */
.section-title {
    max-width: 760px;
    font-size: clamp(2.15rem, 4vw, 3rem);
    line-height: 1.04;
    font-weight: 300;
    color: #083f49;
    margin-bottom: 1rem;
}

/* Subtítulos/lead de sección */
.lead-soft {
    max-width: 720px;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
    color: #5b7279;
}

/* Eyebrow más elegante y menos técnico */
.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    font-weight: 850;
    color: #0a9dab;
    margin-bottom: 0.8rem;
}

/* Tarjetas: títulos más legibles y atractivos */
.care-card h3,
.article-card h4,
.cv-card h3,
.related-card h3,
.press-card h3 {
    font-size: clamp(1.22rem, 1.7vw, 1.55rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: #083f49;
}

/* Textos dentro de tarjetas */
.care-card p,
.article-card p,
.related-card p,
.cv-card p {
    font-size: 0.94rem;
    line-height: 1.62;
    color: #5b7279;
}

/* Artículos: lectura más amigable */
.article-hero h1 {
    max-width: 900px;
    font-size: clamp(2.35rem, 4.4vw, 4.6rem);
    line-height: 1.02;
    font-weight: 820;
}

.article-hero-intro {
    max-width: 780px;
    font-size: clamp(1.08rem, 1.5vw, 1.25rem);
    line-height: 1.68;
}

.article-content {
    max-width: 820px;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    position: relative;
    font-size: clamp(1.65rem, 2.7vw, 2.45rem);
    line-height: 1.13;
    font-weight: 800;
    color: #083f49;
    margin-bottom: 1.15rem;
    padding-left: 1rem;
}

/* Pequeña línea visual para ordenar cada subtítulo del artículo */
.article-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 4px;
    height: 1.15em;
    border-radius: 99px;
    background: linear-gradient(180deg, #0a9dab, #7bd0d3);
}

.article-section p {
    font-size: 1.03rem;
    line-height: 1.78;
    color: #405a61;
}

/* Preguntas frecuentes */
.faq-accordion .accordion-button,
.cv-accordion .accordion-button {
    font-family: var(--font-title);
    font-weight: 760;
    letter-spacing: -0.015em;
    color: #083f49;
}

/* Footer: mantenerlo sobrio */
.footer-title,
.footer-heading {
    font-family: var(--font-title) !important;
}
/* Filtro cinematográfico más verdoso / teal oscuro */
.vision-card {
    position: relative;
    overflow: hidden;
    background: #06363b;
}

/* Foto con un tono más frío-verdoso */
.vision-photo {
    filter:
        contrast(1.06)
        saturate(0.88)
        brightness(0.9)
        sepia(0.14)
        hue-rotate(-8deg);
}

/* Overlay verdoso en vez de negro */
.vision-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(135deg, rgba(5, 58, 54, 0.28), rgba(10, 109, 102, 0.34)),
        linear-gradient(to top, rgba(4, 54, 50, 0.78), rgba(4, 54, 50, 0.18) 56%, rgba(4, 54, 50, 0.08));
    mix-blend-mode: multiply;
}

/* Asegura que el texto quede encima */
.vision-card-copy {
    position: relative;
    z-index: 2;
}