:root {
    --lilac: #d4c8e3;
    --lilac-deep: #aa94c4;
    --lilac-soft: #f3eff7;
    --green: #d2dbcb;
    --green-deep: #83947a;
    --green-soft: #f0f4ed;
    --ink: #151417;
    --muted: #69666d;
    --paper: #fffefd;
    --warm: #f8f5f1;
    --white: #ffffff;
    --border: rgba(21, 20, 23, 0.12);
    --shadow: 0 24px 70px rgba(39, 31, 49, 0.12);
    --shadow-soft: 0 12px 35px rgba(39, 31, 49, 0.08);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 42px;
    --container: 1180px;
    --header-height: 84px;
    --font-display: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    --font-body: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.65rem, 5.8vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow-container { width: min(calc(100% - 40px), 790px); margin-inline: auto; }
.section { padding: clamp(78px, 10vw, 132px) 0; position: relative; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px; background: var(--ink); color: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 25px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(21,20,23,.18); }
.button-secondary { background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: var(--white); }
.button-small { min-height: 43px; padding: 10px 19px; font-size: .92rem; }
.button-full { width: 100%; }
.text-link, .card-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.text-link span, .card-link span { transition: transform .2s ease; }
.text-link:hover span, .card-link:hover span { transform: translateX(5px); }
.card-link { font-size: .92rem; }
.back-link { display: inline-flex; margin-bottom: 28px; color: var(--muted); font-weight: 600; }
.back-link:hover { color: var(--ink); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(255, 254, 253, .9);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--border); box-shadow: 0 8px 28px rgba(30, 24, 37, .06); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 278px; max-width: 42vw; }
.brand img { width: 100%; max-height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a:not(.button) { position: relative; font-size: .92rem; font-weight: 650; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--ink); transition: right .25s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 50%; background: var(--lilac-soft); }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }

.messages { position: fixed; top: calc(var(--header-height) + 14px); left: 50%; z-index: 110; transform: translateX(-50%); }
.message { padding: 13px 18px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-soft); }
.message-error { border-color: #c95757; }
.message-success { border-color: var(--green-deep); }

.hero { min-height: calc(100vh - var(--header-height)); padding: clamp(55px, 7vw, 95px) 0 80px; position: relative; overflow: hidden; background: linear-gradient(115deg, var(--paper) 0 58%, var(--lilac-soft) 58% 100%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(45px, 7vw, 95px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; margin-bottom: 28px; }
.hero-copy > p { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero-note { display: flex; align-items: center; gap: 12px; max-width: 520px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: .92rem; }
.hero-note-icon { display: grid; place-items: center; flex: 0 0 36px; height: 36px; border-radius: 50%; background: var(--green); color: var(--ink); font-size: 1.2rem; }
.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.hero-photo-frame { position: relative; width: min(100%, 520px); aspect-ratio: .82; padding: 16px; border-radius: 48% 48% 28% 28% / 32% 32% 20% 20%; background: var(--green); box-shadow: var(--shadow); transform: rotate(1.2deg); overflow: hidden; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; background: var(--paper); }
.hero-placeholder { object-fit: contain; padding: 5%; }
.hero-badge { position: absolute; right: -8px; bottom: 42px; padding: 16px 22px; border-radius: 18px 0 0 18px; background: var(--white); box-shadow: var(--shadow-soft); font-size: .88rem; line-height: 1.35; }
.hero-symbol { position: absolute; width: 150px; left: -45px; top: 34px; opacity: .78; transform: rotate(-12deg); }
.hero-decor { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-decor-one { width: 180px; height: 180px; left: -70px; top: 12%; border: 1px solid var(--lilac); }
.hero-decor-two { width: 80px; height: 80px; right: 4%; bottom: 7%; background: var(--green); opacity: .65; }

.trust-strip { position: relative; z-index: 4; margin-top: -30px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink); color: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.trust-grid div { padding: 26px 30px; border-right: 1px solid rgba(255,255,255,.16); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 5px; font-family: var(--font-display); font-size: 1.06rem; }
.trust-grid span { color: rgba(255,255,255,.68); font-size: .84rem; }

.section-heading { margin-bottom: 50px; }
.section-heading h2 { max-width: 760px; }
.section-heading > p { max-width: 650px; color: var(--muted); }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 55px; }
.split-heading > div:last-child p { color: var(--muted); }
.centered { max-width: 790px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered p { margin: 20px auto 0; color: var(--muted); }
.card-grid { display: grid; gap: 22px; }
.procedure-grid { grid-template-columns: repeat(3, 1fr); }
.procedure-card { position: relative; min-height: 330px; padding: 34px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.procedure-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -70px; bottom: -70px; border-radius: 50%; background: var(--lilac); opacity: .38; transition: transform .3s ease; }
.procedure-card:nth-child(2n)::after { background: var(--green); }
.procedure-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); background: var(--warm); }
.procedure-card:hover::after { transform: scale(1.3); }
.procedure-icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 34px; border-radius: 50%; background: var(--lilac-soft); font-size: 1.45rem; }
.procedure-card:nth-child(2n) .procedure-icon { background: var(--green-soft); }
.procedure-card h2, .procedure-card h3 { margin-bottom: 15px; }
.procedure-card p { color: var(--muted); }
.procedure-card .card-link { position: absolute; bottom: 30px; left: 34px; z-index: 2; }
.list-page-grid .procedure-card { min-height: 350px; }

.section-about { background: var(--green-soft); overflow: hidden; }
.section-about::before { content: ""; position: absolute; inset: 0; background-image: url("../images/brand/pattern-green.png"); background-size: 650px auto; opacity: .14; pointer-events: none; }
.about-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.about-visual { position: relative; padding: 35px 0 0 35px; }
.about-photo-wrap { width: 100%; aspect-ratio: .88; border-radius: 42% 42% var(--radius) var(--radius); overflow: hidden; background: var(--lilac); box-shadow: var(--shadow); }
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-seal { position: absolute; width: 155px; right: -28px; bottom: -25px; padding: 13px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-soft); animation: slow-spin 24s linear infinite; }
@keyframes slow-spin { to { transform: rotate(360deg); } }
.about-copy h2 { margin-bottom: 24px; }
.rich-text { color: var(--muted); }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text h2, .rich-text h3 { margin: 2.2rem 0 1rem; color: var(--ink); }
.rich-text ul { padding-left: 22px; }
.mini-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 30px 0; }
.mini-facts div { padding: 18px; border-top: 1px solid var(--border); }
.mini-facts strong, .mini-facts span { display: block; }
.mini-facts span { color: var(--muted); font-size: .9rem; }

.journey-section { background: var(--paper); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 55px; }
.journey-step { position: relative; padding: 34px; border-top: 1px solid var(--ink); }
.journey-step > span { display: inline-block; margin-bottom: 55px; color: var(--lilac-deep); font-size: .8rem; font-weight: 800; }
.journey-step h3 { margin-bottom: 14px; }
.journey-step p { color: var(--muted); }
.center-action { margin-top: 45px; text-align: center; }

.professional-section { background: var(--lilac-soft); overflow: hidden; }
.professional-pattern { position: absolute; inset: auto 0 0; height: 220px; background-image: url("../images/brand/pattern-lilac.png"); background-size: 620px; opacity: .15; }
.professional-section .container { position: relative; }
.professional-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.professional-column { padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.72); backdrop-filter: blur(10px); }
.column-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 2px 20px; border-bottom: 1px solid var(--border); }
.column-title > span { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; }
.column-title a { font-size: .86rem; font-weight: 700; }
.feature-row { display: grid; grid-template-columns: 95px 1fr auto; align-items: center; gap: 18px; padding: 26px 2px; border-bottom: 1px solid var(--border); }
.feature-row:last-child { border-bottom: 0; }
.feature-kicker { color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.feature-row h3 { margin-bottom: 6px; font-size: 1.24rem; }
.feature-row p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.45; }
.feature-arrow { font-size: 1.4rem; }
.feature-price { white-space: nowrap; font-weight: 800; }
.feature-row:hover h3 { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.testimonials-section { overflow: hidden; }
.testimonial-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(330px, 42%); gap: 22px; padding: 10px 0 28px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.testimonial-card { min-height: 340px; margin: 0; padding: 38px; border-radius: var(--radius); background: var(--ink); color: var(--white); scroll-snap-align: start; }
.testimonial-card:nth-child(2n) { background: var(--lilac); color: var(--ink); }
.quote-mark { display: block; height: 68px; color: var(--green); font-family: Georgia, serif; font-size: 5rem; line-height: 1; }
.testimonial-card:nth-child(2n) .quote-mark { color: var(--white); }
.testimonial-card > p { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.5; }
.testimonial-card footer { margin-top: 30px; }
.testimonial-card footer strong, .testimonial-card footer span { display: block; }
.testimonial-card footer span { opacity: .66; font-size: .86rem; }

.article-section { background: var(--warm); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.article-image { display: block; aspect-ratio: 1.45; overflow: hidden; background: var(--lilac-soft); }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-image img { transform: scale(1.04); }
.article-body { padding: 28px; }
.article-body time { display: block; margin-bottom: 13px; color: var(--muted); font-size: .78rem; }
.article-body h2, .article-body h3 { margin-bottom: 14px; }
.article-body p { color: var(--muted); }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 8vw, 105px); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 40px); align-self: start; }
.faq-intro h2 { margin-bottom: 20px; }
.faq-intro p { color: var(--muted); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; list-style: none; font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--lilac-soft); transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item > div { padding: 0 52px 22px 0; color: var(--muted); }

.location-section { background: var(--warm); }
.location-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 100px); align-items: center; }
.location-copy h2 { margin-bottom: 26px; }
.location-copy > p { padding: 15px 0; margin: 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.location-copy > p strong { color: var(--ink); }
.location-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 28px; }
.location-map { min-height: 440px; border-radius: var(--radius-lg); overflow: hidden; background: var(--lilac-soft); box-shadow: var(--shadow-soft); }
.location-map iframe { width: 100%; height: 440px; border: 0; }
.map-placeholder { height: 440px; display: grid; place-items: center; align-content: center; gap: 18px; background-image: url("../images/brand/pattern-lilac.png"); background-size: 620px; color: var(--muted); }
.map-placeholder img { width: 140px; padding: 12px; border-radius: 50%; background: rgba(255,255,255,.8); }

.final-cta { padding: 65px 0 85px; background: var(--paper); }
.final-cta-inner { position: relative; display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 36px; padding: 48px; border-radius: var(--radius-lg); background: var(--green); overflow: hidden; }
.final-cta-inner::after { content: ""; position: absolute; width: 240px; height: 240px; right: -100px; top: -110px; border: 1px solid rgba(21,20,23,.18); border-radius: 50%; }
.final-cta-inner > img { width: 110px; }
.final-cta-inner h2 { max-width: 700px; margin-bottom: 12px; font-size: clamp(1.8rem, 3.3vw, 3rem); }
.final-cta-inner p { margin: 0; color: rgba(21,20,23,.68); }
.final-cta-inner .button { position: relative; z-index: 2; white-space: nowrap; }
.compact-cta { padding-top: 20px; }

.page-hero { position: relative; padding: 100px 0 92px; background: var(--lilac-soft); overflow: hidden; }
.page-hero-pattern { position: absolute; inset: 0 0 0 48%; background-image: url("../images/brand/pattern-lilac.png"); background-size: 600px; opacity: .18; }
.page-hero-inner { position: relative; max-width: 900px; }
.page-hero h1 { margin-bottom: 20px; font-size: clamp(2.7rem, 5.5vw, 5.1rem); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.16rem; }

.about-page-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.about-page-photo { position: sticky; top: calc(var(--header-height) + 35px); }
.about-page-photo > img { width: 100%; aspect-ratio: .88; object-fit: cover; border-radius: 46% 46% var(--radius) var(--radius); background: var(--lilac-soft); }
.photo-caption { margin: -28px 20px 0; position: relative; padding: 18px 22px; border-radius: 14px; background: var(--ink); color: var(--white); box-shadow: var(--shadow-soft); }
.photo-caption strong, .photo-caption span { display: block; }
.photo-caption span { color: rgba(255,255,255,.65); font-size: .85rem; }
.content-column h2 { margin-bottom: 25px; }
.large-rich-text { font-size: 1.08rem; }
.editor-note, .setup-notice, .info-panel { margin-top: 28px; padding: 18px 20px; border-left: 3px solid var(--lilac-deep); border-radius: 0 12px 12px 0; background: var(--lilac-soft); color: var(--muted); font-size: .9rem; }
.values-section { background: var(--warm); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-grid article { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.value-grid article > span { display: block; margin-bottom: 55px; color: var(--lilac-deep); font-weight: 800; }
.value-grid h3 { margin-bottom: 12px; }
.value-grid p { color: var(--muted); }

.detail-hero { padding: 85px 0; background: var(--green-soft); }
.detail-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(50px, 8vw, 100px); }
.detail-hero h1 { margin-bottom: 22px; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.detail-hero p { max-width: 650px; margin-bottom: 30px; color: var(--muted); font-size: 1.18rem; }
.detail-visual { min-height: 420px; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-soft); }
.detail-visual > img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.detail-icon-card { position: relative; min-height: 420px; display: grid; place-items: center; overflow: hidden; }
.detail-icon-card > span { position: relative; z-index: 2; display: grid; place-items: center; width: 150px; height: 150px; border-radius: 50%; background: var(--lilac); font-size: 4rem; }
.detail-icon-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.detail-content-grid { display: grid; grid-template-columns: 1fr 380px; gap: clamp(45px, 8vw, 100px); align-items: start; }
.article-content { font-size: 1.08rem; }
.article-content > h2:first-child { margin-top: 0; }
.sticky-contact { position: sticky; top: calc(var(--header-height) + 30px); padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.sticky-contact h2 { margin-bottom: 16px; font-size: 2rem; }
.sticky-contact p { color: var(--muted); }
.sticky-contact small { display: block; margin-top: 14px; color: var(--muted); font-size: .78rem; text-align: center; }
.related-section { background: var(--warm); }
.course-detail-hero { background: var(--lilac-soft); }
.course-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.course-meta span { padding: 7px 11px; border-radius: 999px; background: var(--lilac-soft); color: var(--muted); font-size: .78rem; }
.hero-course-meta span { background: rgba(255,255,255,.75); }

.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.course-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform .3s ease, box-shadow .3s ease; }
.course-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.course-cover { position: relative; aspect-ratio: 1.35; background: var(--lilac-soft); overflow: hidden; }
.course-cover img { width: 100%; height: 100%; object-fit: cover; }
.course-cover > span { position: absolute; left: 18px; top: 18px; padding: 7px 12px; border-radius: 999px; background: var(--ink); color: var(--white); font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.course-body { padding: 28px; }
.course-date { color: var(--lilac-deep); font-size: .82rem; font-weight: 800; }
.course-body h2 { margin-bottom: 15px; font-size: 1.65rem; }
.course-body > p:not(.course-date) { color: var(--muted); }
.course-body .course-meta { margin: 22px 0; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { border-radius: var(--radius); background: var(--warm); overflow: hidden; }
.product-cover { display: block; aspect-ratio: .82; padding: 28px; background: var(--lilac-soft); overflow: hidden; }
.product-cover img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 22px rgba(39,31,49,.14)); transition: transform .35s ease; }
.product-card:hover .product-cover img { transform: translateY(-6px) rotate(-1deg); }
.product-body { padding: 28px; }
.product-type { display: block; margin-bottom: 10px; color: var(--lilac-deep); font-size: .75rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-body h2 { margin-bottom: 15px; font-size: 1.7rem; }
.product-body p { color: var(--muted); }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }
.product-footer strong { font-size: 1.25rem; }
.product-footer a { font-size: .86rem; font-weight: 700; }
.product-detail-section { background: linear-gradient(90deg, var(--lilac-soft) 0 33%, var(--paper) 33% 100%); }
.product-detail-grid { display: grid; grid-template-columns: .75fr 1fr 380px; gap: clamp(35px, 5vw, 70px); align-items: start; }
.product-detail-cover { position: sticky; top: calc(var(--header-height) + 35px); }
.product-detail-cover img { width: 100%; border-radius: var(--radius); filter: drop-shadow(0 25px 35px rgba(39,31,49,.18)); }
.product-detail-copy h1 { margin-bottom: 20px; font-size: clamp(2.6rem, 4.5vw, 4.4rem); }
.lead { color: var(--muted); font-size: 1.18rem; }
.secure-features { display: grid; gap: 8px; margin-top: 28px; color: var(--muted); font-size: .88rem; }
.checkout-card { position: sticky; top: calc(var(--header-height) + 35px); padding: 30px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.checkout-label { display: block; color: var(--muted); font-size: .8rem; }
.checkout-price { display: block; margin-bottom: 14px; font-family: var(--font-display); font-size: 2.5rem; }
.checkout-card > p { color: var(--muted); font-size: .9rem; }
.checkout-card > small { display: block; margin-top: 14px; color: var(--muted); font-size: .75rem; }

.site-form { width: 100%; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: grid; gap: 7px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { font-size: .86rem; font-weight: 700; }
.form-field label > span[aria-hidden] { color: #a43e3e; }
.form-field input:not([type="checkbox"]), .form-field select, .form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: 0;
    background: var(--white);
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 115px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--lilac-deep); box-shadow: 0 0 0 4px rgba(212,200,227,.38); }
.has-error input, .has-error select, .has-error textarea { border-color: #b94141 !important; }
.field-error { color: #9e3030; }
.checkbox-label { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 500 !important; line-height: 1.4; }
.checkbox-label input { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--ink); }
.site-form .button { margin-top: 24px; }
.form-note { display: block; margin-top: 12px; color: var(--muted); text-align: center; }
.compact-form .form-field { margin-bottom: 14px; }
.compact-form .button { margin-top: 8px; }

.appointment-page { min-height: calc(100vh - var(--header-height)); padding: 85px 0; background: linear-gradient(110deg, var(--green-soft) 0 45%, var(--paper) 45% 100%); }
.appointment-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 8vw, 105px); align-items: center; }
.appointment-copy h1 { margin-bottom: 24px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.appointment-copy > p { max-width: 580px; color: var(--muted); font-size: 1.08rem; }
.contact-points { display: grid; gap: 17px; margin-top: 35px; }
.contact-points > div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.contact-points span { display: grid; place-items: center; height: 38px; border-radius: 50%; background: var(--green); font-size: .72rem; font-weight: 800; }
.contact-points p { margin: 0; color: var(--muted); }
.contact-points strong { color: var(--ink); }
.form-card { padding: clamp(28px, 5vw, 52px); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }

.status-page { min-height: 70vh; display: grid; place-items: center; padding: 90px 0; background: var(--lilac-soft); }
.status-card { max-width: 680px; margin: 0 auto; padding: clamp(35px, 6vw, 65px); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); text-align: center; }
.status-icon { display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 24px; border-radius: 50%; background: var(--green); font-size: 2rem; font-weight: 800; }
.status-icon.failure { background: #f1d2d2; }
.status-icon.pending { background: var(--lilac); }
.status-card h1 { margin-bottom: 18px; font-size: clamp(2.1rem, 4vw, 3.4rem); }
.status-card p { color: var(--muted); }
.status-card .button { margin-top: 18px; }
.status-card > small { display: block; margin-top: 18px; color: var(--muted); }

.article-hero { padding: 95px 0 70px; background: var(--lilac-soft); }
.article-hero h1 { margin-bottom: 25px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.article-hero p { color: var(--muted); font-size: 1.18rem; }
.article-hero time { color: var(--muted); font-size: .82rem; }
.article-featured-image { margin-top: -30px; position: relative; }
.article-featured-image img { width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.article-body-page { padding-top: 70px; padding-bottom: 90px; font-size: 1.08rem; }
.article-body-page p { margin-bottom: 1.5rem; }
.article-disclaimer { padding: 25px 0; background: var(--green-soft); }
.article-disclaimer p { margin: 4px 0 0; color: var(--muted); }
.legal-page .rich-text h2:first-child { margin-top: 0; }

.empty-state { max-width: 650px; margin: 30px auto; padding: 50px; border: 1px dashed var(--lilac-deep); border-radius: var(--radius); background: var(--lilac-soft); text-align: center; }
.empty-state img { width: 100px; margin: 0 auto 22px; }
.empty-state h2 { margin-bottom: 12px; }
.empty-state p { color: var(--muted); }

.site-footer { position: relative; padding-top: 75px; background: var(--ink); color: var(--white); overflow: hidden; }
.footer-pattern { position: absolute; inset: 0 0 auto; height: 170px; background-image: url("../images/brand/pattern-lilac.png"); background-size: 600px; opacity: .08; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 45px; padding-bottom: 55px; }
.footer-brand img { width: 290px; max-width: 100%; padding: 12px; border-radius: 8px; background: var(--white); }
.footer-brand p { max-width: 350px; margin: 22px 0 8px; color: rgba(255,255,255,.65); }
.footer-brand small { color: rgba(255,255,255,.45); }
.footer-grid h2 { margin-bottom: 18px; font-size: 1.05rem; letter-spacing: 0; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a, .footer-grid > div > p { margin: 0; color: rgba(255,255,255,.62); font-size: .88rem; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .78rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: #25d366; box-shadow: 0 10px 30px rgba(0,0,0,.18); transition: transform .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 31px; fill: var(--white); }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 18px; z-index: 120; max-width: 720px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 20px; border: 1px solid var(--border); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .86rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
    .main-nav { gap: 18px; }
    .main-nav > a:not(.button) { font-size: .85rem; }
    .hero-grid, .detail-hero-grid { gap: 45px; }
    .hero-visual { min-height: 520px; }
    .product-detail-grid { grid-template-columns: .72fr 1fr; }
    .product-detail-copy { grid-column: 2; }
    .checkout-card { grid-column: 1 / -1; position: static; max-width: 700px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1.6fr repeat(2, 1fr); }
    .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 900px) {
    :root { --header-height: 74px; }
    .container, .narrow-container { width: min(calc(100% - 30px), var(--container)); }
    .nav-toggle { display: block; position: relative; z-index: 102; }
    .main-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; padding: 80px 24px; background: var(--paper); transform: translateX(100%); transition: transform .32s ease; }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav > a:not(.button) { font-family: var(--font-display); font-size: 1.55rem; }
    .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .brand { width: 238px; max-width: 64vw; }
    .hero { background: linear-gradient(180deg, var(--paper) 0 52%, var(--lilac-soft) 52% 100%); }
    .hero-grid, .about-grid, .about-page-grid, .detail-hero-grid, .faq-grid, .appointment-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .location-grid { grid-template-columns: 1fr; }
    .hero-copy > p, .hero-copy h1 { margin-inline: auto; }
    .hero-actions, .hero-note { justify-content: center; margin-inline: auto; }
    .hero-visual { min-height: 560px; }
    .hero-photo-frame { width: min(86vw, 500px); }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
    .trust-grid div:last-child { border-bottom: 0; }
    .split-heading { grid-template-columns: 1fr; gap: 24px; }
    .procedure-grid, .article-grid, .course-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
    .about-visual { max-width: 560px; margin: 0 auto; }
    .journey-grid { grid-template-columns: 1fr; }
    .journey-step > span { margin-bottom: 22px; }
    .professional-grid { grid-template-columns: 1fr; }
    .testimonial-track { grid-auto-columns: minmax(300px, 74%); }
    .faq-intro, .about-page-photo, .product-detail-cover { position: static; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-content-grid { grid-template-columns: 1fr; }
    .sticky-contact { position: static; }
    .product-detail-section { background: linear-gradient(180deg, var(--lilac-soft) 0 28%, var(--paper) 28% 100%); }
    .product-detail-grid { grid-template-columns: .8fr 1.2fr; }
    .product-detail-copy { grid-column: auto; }
    .appointment-page { background: linear-gradient(180deg, var(--green-soft) 0 44%, var(--paper) 44% 100%); }
    .appointment-copy { text-align: center; }
    .appointment-copy > p { margin-inline: auto; }
    .contact-points { max-width: 520px; margin-inline: auto; text-align: left; }
    .final-cta-inner { grid-template-columns: 80px 1fr; }
    .final-cta-inner > img { width: 80px; }
    .final-cta-inner .button { grid-column: 1 / -1; justify-self: start; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
    h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
    h2 { font-size: clamp(2rem, 9vw, 2.9rem); }
    .section { padding: 72px 0; }
    .hero { padding-top: 45px; }
    .hero-copy > p { font-size: 1.02rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-visual { min-height: 450px; }
    .hero-symbol { width: 100px; left: -5px; }
    .hero-badge { right: -2px; bottom: 30px; font-size: .76rem; }
    .trust-strip { margin-top: -20px; }
    .procedure-grid, .article-grid, .course-grid, .product-grid, .value-grid { grid-template-columns: 1fr; }
    .procedure-card { min-height: 305px; padding: 28px; }
    .procedure-card .card-link { left: 28px; }
    .mini-facts { grid-template-columns: 1fr; }
    .about-seal { width: 115px; right: -8px; }
    .feature-row { grid-template-columns: 1fr auto; }
    .feature-kicker { grid-column: 1 / -1; }
    .feature-row p { display: none; }
    .testimonial-track { grid-auto-columns: 88%; }
    .testimonial-card { min-height: 310px; padding: 30px; }
    .page-hero { padding: 75px 0 65px; }
    .page-hero-pattern { inset-left: 25%; }
    .detail-hero { padding: 65px 0; }
    .detail-visual, .detail-visual > img, .detail-icon-card { min-height: 320px; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-detail-copy { grid-column: auto; }
    .product-detail-cover { max-width: 420px; margin: 0 auto; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field-full { grid-column: auto; }
    .form-card { padding: 25px; }
    .final-cta-inner { grid-template-columns: 1fr; padding: 34px 26px; text-align: center; }
    .final-cta-inner > img { margin: auto; }
    .final-cta-inner .button { grid-column: auto; width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
    .whatsapp-float { width: 54px; height: 54px; right: 15px; bottom: 15px; }
}

/* Atualização: foco em pacientes, galeria e múltiplos locais */
.professional-nav-link {
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--green-soft);
}

.testimonials-section {
    overflow: hidden;
    background: linear-gradient(135deg, var(--lilac-soft), var(--green-soft));
}
.testimonial-card,
.testimonial-card:nth-child(2n) {
    border: 1px solid rgba(109, 88, 132, .13);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}
.testimonial-card:nth-child(3n + 2) { background: var(--lilac); }
.testimonial-card:nth-child(3n) { background: var(--green); }
.testimonial-card .quote-mark,
.testimonial-card:nth-child(2n) .quote-mark {
    color: var(--lilac-deep);
}
.testimonial-card footer span { color: var(--muted); opacity: 1; }

.gallery-section { background: var(--paper); }
.care-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 18px;
}
.care-gallery-item {
    position: relative;
    grid-column: span 4;
    grid-row: span 3;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--lilac-soft);
    box-shadow: var(--shadow-soft);
}
.care-gallery-item:nth-child(5n + 1) { grid-column: span 7; grid-row: span 4; }
.care-gallery-item:nth-child(5n + 2) { grid-column: span 5; grid-row: span 4; }
.care-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.care-gallery-item:hover img { transform: scale(1.035); }
.care-gallery-item figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 11px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    font-size: .88rem;
}

.locations-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(28px, 5vw, 65px);
    align-items: stretch;
}
.location-list { display: grid; gap: 14px; }
.location-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}
.location-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--lilac);
    font-weight: 800;
}
.location-card h3 { margin: 2px 0 9px; font-size: 1.2rem; }
.location-card p { margin: 0 0 8px; color: var(--muted); }
.location-card small { display: block; margin-top: 5px; color: var(--muted); }
.location-note { margin-top: 12px; color: var(--muted); font-size: .9rem; }
.location-note p { margin: 0; }
.location-map { min-height: 560px; }
.interactive-map { width: 100%; min-height: 560px; height: 100%; z-index: 1; }
.map-placeholder { min-height: 560px; height: 100%; padding: 35px; text-align: center; }
.map-placeholder strong { font-family: var(--font-display); font-size: 1.3rem; }
.map-placeholder span { max-width: 410px; }
.leaflet-container { font-family: var(--font-body); background: var(--lilac-soft); }
.brand-map-marker {
    width: 30px;
    height: 30px;
    border: 5px solid var(--white);
    border-radius: 50% 50% 50% 12%;
    background: var(--lilac-deep);
    box-shadow: 0 7px 20px rgba(61, 46, 76, .25);
    transform: rotate(-45deg);
}
.map-popup-content strong,
.map-popup-content span { display: block; }
.map-popup-content strong { margin-bottom: 4px; font-size: .95rem; }
.map-popup-content span { color: var(--muted); font-size: .82rem; }

.professional-hub-section { background: var(--paper); }
.professional-entry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.professional-entry-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(32px, 5vw, 58px);
    border-radius: var(--radius-lg);
    background: var(--lilac-soft);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.professional-entry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.professional-entry-card-green { background: var(--green-soft); }
.professional-entry-card::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: var(--lilac);
    opacity: .58;
}
.professional-entry-card-green::after { background: var(--green); }
.professional-entry-number { font-size: .84rem; font-weight: 800; letter-spacing: .12em; }
.professional-entry-card > div { position: relative; z-index: 1; }
.professional-entry-card h2 { margin-bottom: 18px; }
.professional-entry-card p { max-width: 470px; color: var(--muted); font-size: 1.05rem; }
.professional-entry-card strong { display: inline-flex; gap: 10px; margin-top: 22px; }
.professional-preview-section { background: var(--warm); }
.professional-products-section { background: var(--paper); }

.appointment-unavailable {
    padding: 55px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}
.appointment-unavailable > img { width: 115px; margin: 0 auto 24px; }
.appointment-unavailable h1 { margin-bottom: 22px; font-size: clamp(2.2rem, 5vw, 4rem); }
.appointment-unavailable p { max-width: 650px; margin: 0 auto 28px; color: var(--muted); }

@media (max-width: 900px) {
    .locations-layout, .professional-entry-grid { grid-template-columns: 1fr; }
    .location-map, .interactive-map, .map-placeholder { min-height: 460px; }
    .care-gallery-item,
    .care-gallery-item:nth-child(5n + 1),
    .care-gallery-item:nth-child(5n + 2) { grid-column: span 6; grid-row: span 3; }
}

@media (max-width: 640px) {
    .care-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .care-gallery-item,
    .care-gallery-item:nth-child(5n + 1),
    .care-gallery-item:nth-child(5n + 2) { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
    .location-card { grid-template-columns: 40px 1fr; padding: 19px; }
    .location-number { width: 40px; height: 40px; }
    .location-map, .interactive-map, .map-placeholder { min-height: 380px; }
    .professional-entry-card { min-height: 340px; padding: 32px 26px; }
    .appointment-unavailable { padding: 38px 24px; }
}

/* Atualização: depoimentos sem rolagem e CTAs naturais para pacientes */
.section-inline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 34px;
    padding: 24px 28px;
    border: 1px solid rgba(109, 88, 132, .14);
    border-radius: var(--radius);
    background: linear-gradient(115deg, var(--lilac-soft), var(--green-soft));
}
.section-inline-cta div { display: grid; gap: 3px; }
.section-inline-cta strong { font-family: var(--font-display); font-size: 1.16rem; }
.section-inline-cta span { color: var(--muted); }
.section-inline-cta .button { flex: 0 0 auto; }

.testimonials-section { overflow: visible; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
    margin-top: 48px;
}
.testimonial-card,
.testimonial-card:nth-child(2n) {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: 0;
    padding: 34px;
    border: 1px solid rgba(109, 88, 132, .13);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}
.testimonial-card:nth-child(3n + 2) { background: var(--lilac); }
.testimonial-card:nth-child(3n) { background: var(--green); }
.testimonial-card > p { flex: 1; font-size: 1.12rem; }
.testimonial-card footer { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(21,20,23,.1); }
.testimonial-action {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 38px;
    text-align: center;
}
.testimonial-action > span { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; }

@media (max-width: 980px) {
    .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section-inline-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    .testimonial-grid { grid-template-columns: 1fr; margin-top: 34px; }
    .testimonial-card,
    .testimonial-card:nth-child(2n) { min-height: 0; padding: 28px; }
    .section-inline-cta { padding: 24px; }
    .section-inline-cta .button,
    .testimonial-action .button { width: 100%; }
}

/* Atualização final: carrosséis, área profissional e conversão pelo WhatsApp */
.testimonial-carousel { margin-top: 48px; }
.testimonial-carousel-shell { position: relative; padding-inline: 58px; }
.testimonial-viewport { overflow: hidden; border-radius: var(--radius); }
.testimonial-carousel .testimonial-track {
    display: flex;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    gap: 22px;
    padding: 8px 0 18px;
    overflow: visible;
    scroll-snap-type: none;
    scrollbar-width: none;
    transition: transform .72s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}
.testimonial-carousel .testimonial-card,
.testimonial-carousel .testimonial-card:nth-child(2n) {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 340px;
    margin: 0;
    padding: 34px;
    border: 1px solid rgba(109, 88, 132, .13);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
    scroll-snap-align: none;
}
.testimonial-carousel .testimonial-card:nth-child(3n + 2) { background: var(--lilac); }
.testimonial-carousel .testimonial-card:nth-child(3n) { background: var(--green); }
.testimonial-carousel .testimonial-card > p { flex: 1; font-size: 1.08rem; }
.testimonial-carousel .testimonial-card footer { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(21,20,23,.1); }
.testimonial-carousel .testimonial-card footer small { display: block; margin-top: 5px; color: var(--muted); }
.carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(109, 88, 132, .22);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
    transform: translateY(-50%);
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.carousel-arrow:hover:not(:disabled) { transform: translateY(-50%) scale(1.06); background: var(--lilac-soft); }
.carousel-arrow:disabled { opacity: .28; cursor: default; }
.carousel-arrow-prev { left: 0; }
.carousel-arrow-next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 9px; min-height: 12px; margin-top: 16px; }
.carousel-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(109,88,132,.25); transition: width .25s ease, background .25s ease; }
.carousel-dot[aria-current="true"] { width: 28px; background: var(--lilac-deep); }
.testimonial-carousel.has-single-page .carousel-arrow,
.testimonial-carousel.has-single-page .carousel-dots { display: none; }

.location-card-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 17px; margin-top: 18px; }
.locations-layout-no-map { grid-template-columns: 1fr; }
.locations-layout-no-map .location-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.map-popup-content a { display: inline-flex; margin-top: 8px; color: var(--lilac-deep); font-weight: 800; }

.professional-invite-section { padding: 40px 0; background: var(--paper); }
.professional-invite {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 34px 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(120deg, var(--lilac-soft), var(--green-soft));
}
.professional-invite h2 { margin-bottom: 12px; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.professional-invite p { margin: 0; color: var(--muted); }
.professional-entry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.professional-entry-card { min-height: 390px; }
.professional-entry-card-content { background: linear-gradient(145deg, var(--warm), var(--lilac-soft)); }
.professional-entry-card-content::after { background: var(--lilac-deep); opacity: .2; }
.professional-bio-section { background: var(--green-soft); }
.professional-bio-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(35px, 7vw, 90px); align-items: center; }
.professional-bio-image { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-soft); }
.professional-bio-image img { width: 100%; aspect-ratio: .9; object-fit: cover; }
.professional-bio-copy h2 { margin-bottom: 26px; }
.professional-content-section { background: var(--lilac-soft); }
.professional-testimonials-section { background: linear-gradient(135deg, var(--paper), var(--green-soft)); }

.procedure-detail-content { display: grid; gap: 28px; }
.procedure-info-block { padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.procedure-info-block:last-child { border-bottom: 0; }
.procedure-info-highlight {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 22px;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}
.procedure-info-highlight:nth-child(2n) { background: var(--lilac-soft); }
.procedure-info-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--green); font-weight: 800; }
.procedure-info-highlight h2 { margin-bottom: 13px; font-size: clamp(1.45rem, 2.6vw, 2.15rem); }
.procedure-info-highlight p:last-child { margin-bottom: 0; }
.procedure-faq-section { background: var(--green-soft); }

.course-gallery-section { background: var(--paper); }
.centered-link { justify-content: center; width: 100%; margin-top: 20px; }
.interest-section { background: var(--lilac-soft); }
.interest-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(35px, 7vw, 90px); align-items: start; }
.interest-copy { position: sticky; top: calc(var(--header-height) + 30px); }
.interest-copy h2 { margin-bottom: 20px; }
.interest-copy p { color: var(--muted); }
.interest-form { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }

.product-detail-cover { position: relative; }
.availability-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
    font-size: .74rem;
    font-weight: 800;
}
.product-cover { position: relative; }
.availability-available { background: var(--green); }
.availability-coming_soon { background: var(--lilac); }
.availability-free { background: var(--green-deep); color: var(--white); }
.availability-unavailable { background: var(--warm); color: var(--muted); }
.checkout-status-title { display: block; margin: 8px 0 18px; font-family: var(--font-display); font-size: 2rem; line-height: 1.12; }
.license-notice { margin-top: 28px; padding: 19px 22px; border-left: 3px solid var(--green-deep); border-radius: 0 14px 14px 0; background: var(--green-soft); color: var(--muted); }
.license-notice strong { display: block; margin-bottom: 5px; color: var(--ink); }
.license-notice p:last-child { margin-bottom: 0; }

@media (max-width: 1080px) {
    .professional-entry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .professional-bio-grid, .interest-grid { grid-template-columns: 1fr; }
    .interest-copy { position: static; }
    .professional-invite { align-items: flex-start; flex-direction: column; }
    .locations-layout-no-map .location-list { grid-template-columns: 1fr; }
}

@media (max-width: 699px) {
    .testimonial-carousel { margin-top: 34px; }
    .testimonial-carousel-shell { padding-inline: 0; }
    .testimonial-carousel .testimonial-card,
    .testimonial-carousel .testimonial-card:nth-child(2n) { min-height: 310px; padding: 28px; }
    .carousel-arrow { top: auto; bottom: -2px; width: 40px; height: 40px; transform: none; }
    .carousel-arrow:hover:not(:disabled) { transform: scale(1.04); }
    .carousel-arrow-prev { left: 0; }
    .carousel-arrow-next { right: 0; }
    .carousel-dots { align-items: center; margin-top: 20px; padding-inline: 52px; }
    .professional-entry-grid { grid-template-columns: 1fr; }
    .professional-entry-card { min-height: 330px; }
    .professional-invite { padding: 28px 24px; }
    .professional-invite .button { width: 100%; }
    .procedure-info-highlight { grid-template-columns: 1fr; }
    .interest-form { padding: 24px; }
    .location-card-actions { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-carousel .testimonial-track { transition: none; }
}

/* SEO update: public location pages */
.location-directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.location-directory-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(52, 45, 58, 0.1);
    border-radius: 1.4rem;
    background: #fff;
    box-shadow: 0 16px 40px rgba(52, 45, 58, 0.06);
}

.location-directory-card h2 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.location-directory-card h2 a,
.location-card h3 a {
    color: inherit;
    text-decoration: none;
}

.location-directory-card small {
    display: block;
    margin-top: 0.65rem;
}

.location-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.location-detail-copy h1 {
    max-width: 780px;
}

.location-detail-facts {
    display: grid;
    gap: 0.9rem;
    margin: 2rem 0;
}

.location-detail-facts div {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(212, 200, 227, 0.24);
}

.location-detail-facts strong {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.location-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.location-detail-card {
    padding: 1.7rem;
    border-radius: 1.5rem;
    background: rgba(210, 219, 203, 0.42);
}

.location-detail-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 1rem;
}

@media (max-width: 860px) {
    .location-directory-grid,
    .location-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .location-directory-card {
        grid-template-columns: 1fr;
    }

    .location-detail-actions .button {
        width: 100%;
        justify-content: center;
    }
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.78;
}

.article-references {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(52, 45, 58, 0.12);
}

.article-references h2 {
    font-size: 1.2rem;
}

/* Artigos científicos */
.article-type-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 0.65rem;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: var(--lilac-soft);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-scientific-byline {
    margin-top: -0.35rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.scientific-citation {
    margin-top: 1.4rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.58);
}

.scientific-citation p {
    margin: 0.25rem 0;
    font-size: 0.92rem;
}

.article-section-title {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.scientific-access-panel {
    margin-top: 2.2rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--lilac-soft);
}

.scientific-access-panel h2 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.scientific-access-panel p {
    color: var(--muted);
}

.scientific-access-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.footer-bottom .developer-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s ease;
}

.footer-bottom .developer-link:hover,
.footer-bottom .developer-link:focus-visible {
    color: var(--white);
}

@media (max-width: 560px) {
    .scientific-access-actions .button {
        width: 100%;
    }
}
