:root {
    --centi-teal: #035c63;
    --centi-teal-deep: #02474d;
    --centi-teal-soft: #dff5f3;
    --centi-purple: #662482;
    --centi-pink: #d6416d;
    --centi-lime: #99c93d;
    --centi-sky: #4fc3df;
    --centi-yellow: #f9d670;
    --centi-coral: #ff8c6b;
    --centi-ink: #17383e;
    --centi-muted: #5a6c7d;
    --centi-paper: #f8fafa;
    --centi-white: #ffffff;
    --centi-radius: 16px;
    --centi-shadow: 0 18px 44px rgba(3, 92, 99, .11);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--centi-paper);
    color: var(--centi-ink);
    font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: var(--centi-teal);
}

img {
    max-width: 100%;
    height: auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    z-index: 20;
    padding: .75rem 1rem;
    background: var(--centi-teal);
    color: #fff;
}

.skip-link:focus {
    left: 1rem;
}

.site-shell {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(3, 92, 99, .1);
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--centi-purple), var(--centi-sky), var(--centi-lime), var(--centi-yellow), var(--centi-pink));
    opacity: .9;
}

.site-header__inner,
.site-footer__inner,
.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-header__inner {
    min-height: 82px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.site-brand img,
.site-brand .custom-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 58px;
    object-fit: contain;
}

.site-brand__mark {
    color: var(--centi-teal);
    font-size: 2rem;
    font-weight: 800;
}

.site-nav__list,
.site-footer__nav {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__list {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.site-nav a,
.site-footer a {
    color: var(--centi-ink);
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: .5rem .58rem;
    border-radius: 999px;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(3, 92, 99, .08);
    outline: 0;
}

.site-nav__item {
    position: relative;
}
.site-nav__item.is-current > a {
    color: var(--centi-purple);
}
.site-nav__caret {
    width: 12px;
    height: 12px;
    margin-left: .3rem;
    color: currentColor;
    transition: transform .18s ease;
}
.site-nav__item--has-children:hover > a .site-nav__caret,
.site-nav__item--has-children:focus-within > a .site-nav__caret {
    transform: rotate(180deg);
}
.site-nav__submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    z-index: 40;
    min-width: 260px;
    max-width: 320px;
    padding: .5rem;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(3, 92, 99, .12);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(3, 92, 99, .16);
    transform: translate(-50%, -8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}
.site-nav__item--has-children:hover > .site-nav__submenu,
.site-nav__item--has-children:focus-within > .site-nav__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.site-nav__submenu a {
    display: block;
    padding: .5rem .75rem;
    border-radius: 10px;
    font-size: .88rem;
    line-height: 1.25;
    white-space: normal;
}
.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
    background: rgba(3, 92, 99, .08);
    color: var(--centi-purple);
}

.therapy-mega {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 30;
    width: min(1120px, calc(100vw - 40px));
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity .18s ease, transform .18s ease;
}

.site-header.is-mega-open .therapy-mega {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.therapy-mega__inner {
    display: grid;
    grid-template-columns: minmax(220px, .85fr) minmax(0, 2.15fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 90px rgba(3, 92, 99, .24);
    backdrop-filter: blur(20px) saturate(1.08);
}

.therapy-mega__intro {
    padding: 1.25rem;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(102, 36, 130, .95), rgba(3, 92, 99, .92));
    color: #fff;
}

.therapy-mega__intro span {
    color: var(--centi-yellow);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.therapy-mega__intro h2 {
    margin: .5rem 0 .75rem;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.08;
}

.therapy-mega__intro p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, .86);
    font-size: .94rem;
    line-height: 1.4;
}

.therapy-mega__intro a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.therapy-mega__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
}

.therapy-mega__card {
    display: grid;
    align-content: start;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(3, 92, 99, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    color: var(--centi-ink);
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(3, 92, 99, .08);
}

.therapy-mega__card img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.therapy-mega__card strong,
.therapy-mega__card span {
    display: block;
    padding-inline: .85rem;
}

.therapy-mega__card strong {
    padding-top: .85rem;
    color: var(--centi-teal-deep);
    font-size: .98rem;
    line-height: 1.1;
}

.therapy-mega__card span {
    padding-top: .35rem;
    padding-bottom: .9rem;
    color: var(--centi-muted);
    font-size: .82rem;
    line-height: 1.3;
}

.hero-section,
.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #edf9f8 58%, #fff8dd 100%);
}

.hero-section {
    padding: 3.2rem 0 2.5rem;
}

.hero-section__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr);
    gap: 2.75rem;
    align-items: center;
}

.hero-section h1,
.page-hero h1,
.section-heading h2,
.split-section h2 {
    margin: 0;
    color: var(--centi-teal);
    font-size: 3.85rem;
    line-height: 1.02;
}

.hero-section h1 {
    max-width: 10.5ch;
    color: var(--centi-teal-deep);
}

.hero-section p,
.section-heading p,
.split-section p {
    max-width: 58ch;
}

.hero-section__copy > p:not(.eyebrow) {
    max-width: 49ch;
    margin: 1.25rem 0 0;
    color: var(--centi-muted);
    font-size: 1.05rem;
}

.eyebrow {
    margin: 0 0 .8rem;
    color: var(--centi-purple);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .75rem 1.25rem;
    border: 2px solid var(--centi-teal);
    border-radius: 999px;
    color: var(--centi-teal);
    font-weight: 800;
    text-decoration: none;
}

.button--primary {
    background: var(--centi-teal);
    color: #fff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.75rem;
}

.hero-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #dceeed;
    box-shadow: var(--centi-shadow);
}

.hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 55%, rgba(2, 71, 77, .58) 100%);
    pointer-events: none;
}

.hero-media__image {
    display: block;
    width: 100%;
    min-height: 390px;
    max-height: 490px;
    object-fit: cover;
    object-position: center 42%;
}

.hero-media figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    color: var(--centi-ink);
    backdrop-filter: blur(10px);
}

.hero-media figcaption strong {
    color: var(--centi-teal-deep);
    font-size: 1.3rem;
    line-height: 1;
    white-space: nowrap;
}

.hero-media figcaption span {
    color: var(--centi-muted);
    font-size: .92rem;
    line-height: 1.25;
}

.trust-strip {
    position: relative;
    z-index: 1;
    margin-top: -1px;
    padding: 1.25rem 0;
    background: #fff;
    border-block: 1px solid rgba(3, 92, 99, .08);
}

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

.trust-strip article {
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--centi-yellow);
    background: rgba(223, 245, 243, .45);
    border-radius: 14px;
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    color: var(--centi-teal-deep);
    line-height: 1.15;
}

.trust-strip span {
    margin-top: .35rem;
    color: var(--centi-muted);
    font-size: .92rem;
    line-height: 1.35;
}

.content-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.content-section--soft {
    background: linear-gradient(135deg, #ffffff 0%, #f6fbf1 45%, #f7f0fa 100%);
}

.content-section--soft .split-section {
    gap: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(102, 36, 130, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 18px 44px rgba(102, 36, 130, .08);
}

.content-section--soft .split-section h2 {
    max-width: 780px;
    font-size: 2.6rem;
    line-height: 1.08;
}

.content-section--soft .split-section .eyebrow {
    color: var(--centi-pink);
}

.content-section--soft .split-section .button {
    min-width: 128px;
    border-color: var(--centi-purple);
    color: var(--centi-purple);
    background: #fff;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.feature-card,
.team-card {
    overflow: hidden;
    border-radius: var(--centi-radius);
    background: #fff;
    box-shadow: var(--centi-shadow);
}

.feature-card {
    padding: 1.5rem;
    border-top: 6px solid var(--centi-sky);
}

.feature-card:nth-child(4n + 2) {
    border-top-color: var(--centi-lime);
}

.feature-card:nth-child(4n + 3) {
    border-top-color: var(--centi-yellow);
}

.feature-card:nth-child(4n + 4) {
    border-top-color: var(--centi-pink);
}

.feature-card h3,
.feature-card h2,
.team-card h2 {
    margin-top: 0;
    color: var(--centi-teal);
}

.team-card img,
.profile-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.team-card__body {
    padding: 1.25rem;
}

.team-card__terms {
    color: var(--centi-muted);
    font-weight: 700;
}

.profile-photo {
    width: min(420px, 100%);
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--centi-shadow);
}

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

.content-body--wide {
    max-width: 1080px;
}

.lead-text {
    margin-top: 0;
    color: var(--centi-ink);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.35;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.clean-list {
    padding-left: 1.2rem;
    margin: 0;
}

.clean-list li + li {
    margin-top: .65rem;
}

.therapy-card {
    position: relative;
    min-height: 210px;
}

.therapy-card::before {
    content: "";
    display: block;
    width: 52px;
    height: 12px;
    margin-bottom: 1.2rem;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--centi-yellow), var(--centi-coral));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-grid figure {
    overflow: hidden;
    margin: 0;
    border-radius: var(--centi-radius);
    background: #fff;
    box-shadow: var(--centi-shadow);
}

.gallery-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.testimonial-card {
    border-top: 6px solid var(--centi-purple);
}

.contact-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--centi-shadow);
}

.contact-band h2 {
    margin-top: 0;
    color: var(--centi-teal);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.site-footer {
    position: relative;
    padding: 3rem 0 1.25rem;
    background: #ffffff;
    color: var(--centi-ink);
    border-top: 1px solid rgba(3, 92, 99, .1);
}

.site-footer::before {
    position: absolute;
    inset: 0 0 auto;
    height: 8px;
    content: "";
    background: linear-gradient(90deg, var(--centi-purple), var(--centi-sky), var(--centi-lime), var(--centi-yellow), var(--centi-pink));
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(160px, .9fr) minmax(220px, 1.4fr) minmax(220px, 1fr);
    gap: 2rem;
    align-items: start;
}

.site-footer__col {
    min-width: 0;
}

.site-footer__brand {
    max-width: 360px;
}

.site-footer__brand strong {
    display: block;
    color: var(--centi-teal-deep);
    font-size: 1.35rem;
    line-height: 1.1;
    margin-bottom: .5rem;
}

.site-footer__social {
    display: flex;
    gap: .5rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}
.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(3, 92, 99, .08);
    color: var(--centi-teal-deep);
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.site-footer__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    background: var(--centi-purple);
    color: #fff;
    transform: translateY(-2px);
    outline: 0;
}

.site-footer__column--therapies ul {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
    row-gap: .45rem;
}
.site-footer__column--therapies li:first-child {
    grid-column: 1 / -1;
}

.site-footer__brand p,
.site-footer__column p,
.site-footer__bottom {
    color: var(--centi-muted);
    font-size: .92rem;
    line-height: 1.45;
}

.site-footer .site-footer__tv {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: .75rem;
    padding: .6rem 1rem;
    border-radius: 999px;
    background: var(--centi-teal);
    color: #fff;
    box-shadow: 0 10px 24px rgba(3, 92, 99, .18);
    font-weight: 800;
    text-decoration: none;
}

.site-footer .site-footer__tv:hover,
.site-footer .site-footer__tv:focus-visible {
    background: var(--centi-purple);
    color: #fff;
    outline: 3px solid rgba(102, 36, 130, .18);
    outline-offset: 3px;
}

.site-footer__column h2 {
    margin: 0 0 .8rem;
    color: var(--centi-purple);
    font-size: .82rem;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer__column ul {
    display: grid;
    gap: .55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__column a {
    color: var(--centi-ink);
    font-size: .94rem;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
    color: var(--centi-purple);
}

.site-footer__contact {
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .72);
    background: linear-gradient(135deg, rgba(79, 195, 223, .22), rgba(249, 214, 112, .22));
    box-shadow: 0 18px 44px rgba(3, 92, 99, .1);
    backdrop-filter: blur(12px);
}

.site-footer__contact a {
    display: block;
    margin-top: .45rem;
}

.site-footer__whatsapp {
    display: inline-flex !important;
    width: fit-content;
    align-items: center;
    gap: .55rem;
    min-height: 44px;
    padding: .65rem 1rem;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 999px;
    background: rgba(37, 211, 102, .95);
    color: #053b22 !important;
    box-shadow: 0 14px 34px rgba(37, 211, 102, .28);
}

.site-footer__whatsapp svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .75rem 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(3, 92, 99, .1);
    font-size: .85rem;
}

.site-footer a {
    text-decoration-thickness: 2px;
}

@media (max-width: 1080px) {
    .site-footer__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
    .site-footer__col {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
    .site-footer__column--therapies ul {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 780px) {
    .site-header__inner,
    .split-section,
    .contact-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav__list {
        align-items: flex-start;
        flex-direction: column;
    }

    .therapy-mega {
        display: none;
    }

    .site-brand img,
    .site-brand .custom-logo {
        max-width: 190px;
        max-height: 56px;
    }

    .site-header__inner {
        min-height: 92px;
        padding: .75rem 0;
    }

    .hero-section__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-section h1,
    .page-hero h1,
    .section-heading h2,
    .split-section h2 {
        font-size: 2.6rem;
    }

    .hero-media__image {
        min-height: 320px;
    }

    .hero-media figcaption,
    .trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .hero-media figcaption {
        align-items: flex-start;
        flex-direction: column;
    }

    .content-section--soft .split-section {
        padding: 1.5rem;
    }

    .content-section--soft .split-section h2 {
        font-size: 2rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
[data-reveal],
[data-reveal-child] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}
[data-reveal].is-revealed,
[data-reveal-child].is-revealed {
    opacity: 1;
    transform: none;
}
[data-reveal-children] > * { transition-delay: 0s; }
[data-reveal-children] > *:nth-child(2) { transition-delay: .05s; }
[data-reveal-children] > *:nth-child(3) { transition-delay: .1s; }
[data-reveal-children] > *:nth-child(4) { transition-delay: .15s; }
[data-reveal-children] > *:nth-child(5) { transition-delay: .2s; }
[data-reveal-children] > *:nth-child(6) { transition-delay: .25s; }
[data-reveal-children] > *:nth-child(n+7) { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal-child] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Hero com background image
   ============================================================ */
.page-hero {
    position: relative;
    overflow: hidden;
}
.page-hero--bg {
    min-height: 420px;
    padding: 6rem 0 5rem;
    background: var(--page-hero-bg) center/cover no-repeat, linear-gradient(135deg, #035c63 0%, #02474d 100%);
    color: #fff;
}
.page-hero--bg .page-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 20% 30%, rgba(3, 92, 99, .55), transparent 65%),
        linear-gradient(180deg, rgba(2, 71, 77, .45) 0%, rgba(2, 71, 77, .82) 100%);
    pointer-events: none;
}
.page-hero--bg .page-hero__inner {
    position: relative;
    z-index: 1;
}
.page-hero--bg h1,
.page-hero--bg .page-hero__intro,
.page-hero--bg .eyebrow {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.page-hero--bg .eyebrow {
    color: var(--centi-yellow);
}
.page-hero--bg h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    max-width: 18ch;
}
.page-hero--bg .page-hero__intro {
    max-width: 60ch;
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* ============================================================
   Conteúdo rico (WP content)
   ============================================================ */
.content-prose { color: var(--centi-ink); font-size: 1.04rem; line-height: 1.72; }
.content-prose h2,
.content-prose h3,
.content-prose h4 {
    color: var(--centi-teal-deep);
    margin: 2rem 0 .6rem;
    line-height: 1.18;
}
.content-prose h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.content-prose h3 { font-size: 1.35rem; }
.content-prose p { margin: 0 0 1rem; }
.content-prose p:first-of-type::first-letter {
    float: left;
    margin: .15em .35em 0 0;
    color: var(--centi-purple);
    font-size: 3.2em;
    font-weight: 800;
    line-height: .85;
}
.content-prose ul, .content-prose ol { padding-left: 1.4rem; margin: 0 0 1.2rem; }
.content-prose li + li { margin-top: .4rem; }
.content-prose img { border-radius: 18px; box-shadow: var(--centi-shadow); margin: 1.4rem 0; }
.content-prose blockquote {
    margin: 1.5rem 0;
    padding: 1.2rem 1.4rem;
    border-left: 4px solid var(--centi-yellow);
    background: rgba(223, 245, 243, .5);
    border-radius: 14px;
    color: var(--centi-teal-deep);
    font-style: normal;
}
.content-prose a {
    color: var(--centi-purple);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* ============================================================
   Detalhe de terapia
   ============================================================ */
.therapy-detail__grid {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(0, 2fr);
    gap: 2.5rem;
    align-items: start;
}
.therapy-detail__aside { position: sticky; top: 100px; }
.therapy-detail__card {
    padding: 1.75rem;
    border-radius: 24px;
    background: linear-gradient(160deg, #ffffff 0%, #edf9f8 60%, #f7f0fa 100%);
    border: 1px solid rgba(3, 92, 99, .1);
    box-shadow: 0 22px 60px rgba(3, 92, 99, .12);
}
.therapy-detail__card h2 {
    margin: .35rem 0 .75rem;
    color: var(--centi-teal-deep);
    font-size: 1.55rem;
    line-height: 1.15;
}
.therapy-detail__card > p {
    color: var(--centi-muted);
    line-height: 1.55;
}
.therapy-detail__highlights {
    margin: 1.25rem 0 1.5rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .5rem;
}
.therapy-detail__highlights li {
    position: relative;
    padding: .55rem .75rem .55rem 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(3, 92, 99, .08);
    color: var(--centi-ink);
    font-weight: 600;
    font-size: .94rem;
}
.therapy-detail__highlights li::before {
    content: "";
    position: absolute;
    left: .75rem;
    top: 50%;
    width: .85rem;
    height: .85rem;
    margin-top: -.42rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--centi-yellow), var(--centi-coral));
    box-shadow: 0 0 0 4px rgba(249, 214, 112, .25);
}
@media (max-width: 880px) {
    .therapy-detail__grid { grid-template-columns: 1fr; }
    .therapy-detail__aside { position: static; }
}

/* ============================================================
   Lista de terapias com cards visuais
   ============================================================ */
.therapy-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.therapy-list__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    color: var(--centi-ink);
    text-decoration: none;
    box-shadow: var(--centi-shadow);
    border: 1px solid rgba(3, 92, 99, .08);
    transform: translateZ(0);
    transition: transform .35s ease, box-shadow .35s ease;
}
.therapy-list__card:hover,
.therapy-list__card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(3, 92, 99, .22);
    outline: none;
}
.therapy-list__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--centi-teal), var(--centi-purple));
}
.therapy-list__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.therapy-list__card:hover .therapy-list__media img { transform: scale(1.06); }
.therapy-list__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}
.therapy-list__body { padding: 1.25rem 1.4rem 1.4rem; }
.therapy-list__body h3 {
    margin: 0 0 .4rem;
    color: var(--centi-teal-deep);
    font-size: 1.18rem;
    line-height: 1.15;
}
.therapy-list__body p {
    margin: 0;
    color: var(--centi-muted);
    font-size: .94rem;
    line-height: 1.45;
}

/* ============================================================
   Footer TV button — ícone
   ============================================================ */
.site-footer .site-footer__tv {
    gap: .5rem;
    padding: .6rem 1.1rem;
}
.site-footer .site-footer__tv svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

/* ============================================================
   CENTIFLIX
   ============================================================ */
.centiflix {
    background: #0b0d10;
    color: #fff;
    margin: 0;
    padding-bottom: 4rem;
}
.centiflix .site-shell { color: inherit; }
.centiflix__hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #000;
}
.centiflix__hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.centiflix__hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 13, 16, .15) 0%, rgba(11, 13, 16, .5) 55%, #0b0d10 100%),
        linear-gradient(90deg, rgba(11, 13, 16, .85) 0%, rgba(11, 13, 16, .2) 60%, transparent 100%);
}
.centiflix__hero-shade--mosaic {
    background:
        radial-gradient(ellipse at 18% 60%, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 30%, transparent 70%),
        linear-gradient(180deg, rgba(11, 13, 16, .55) 0%, rgba(11, 13, 16, .35) 30%, rgba(11, 13, 16, .85) 80%, #0b0d10 100%),
        linear-gradient(90deg, rgba(11, 13, 16, .85) 0%, rgba(11, 13, 16, .35) 55%, rgba(11, 13, 16, .2) 100%);
}
.centiflix__hero-inner {
    position: relative;
    padding: 3.5rem 0 2.6rem;
    max-width: 720px;
}

/* Mosaico de fundo (substitui imagem AI estática) */
.centiflix__mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 4px;
    transform: rotate(-4deg) scale(1.18);
    transform-origin: center;
    filter: saturate(1.1) brightness(.78);
    pointer-events: none;
    animation: centiflix-mosaic-drift 60s ease-in-out infinite alternate;
}
.centiflix__mosaic-tile {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 16 / 10;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    animation: centiflix-mosaic-fade .9s ease both;
    animation-delay: calc(var(--i, 0) * 70ms);
}
.centiflix__mosaic-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@keyframes centiflix-mosaic-drift {
    0%   { transform: rotate(-4deg) scale(1.18) translate3d(0, 0, 0); }
    50%  { transform: rotate(-3deg) scale(1.22) translate3d(-2%, -1.5%, 0); }
    100% { transform: rotate(-5deg) scale(1.2)  translate3d(1.5%, 1%, 0); }
}
@keyframes centiflix-mosaic-fade {
    from { opacity: 0; transform: translateY(8px) scale(.96); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}
@media (max-width: 980px) {
    .centiflix__mosaic { grid-template-columns: repeat(4, 1fr); transform: rotate(-3deg) scale(1.25); }
}
@media (max-width: 600px) {
    .centiflix__mosaic { grid-template-columns: repeat(3, 1fr); transform: rotate(-3deg) scale(1.35); }
}
@media (prefers-reduced-motion: reduce) {
    .centiflix__mosaic { animation: none; }
    .centiflix__mosaic-tile { animation: none; }
}
.centiflix__brand {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .7);
}
.centiflix__brand span { color: #e50914; }
.centiflix__hero h1 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.04;
    font-weight: 900;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .55);
}
.centiflix__lead {
    margin: 0 0 1.5rem;
    max-width: 56ch;
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}
.centiflix__hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.centiflix__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 46px;
    padding: .7rem 1.4rem;
    border: 0;
    border-radius: 4px;
    background: #fff;
    color: #0b0d10;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: background .2s ease, transform .2s ease;
}
.centiflix__cta:hover, .centiflix__cta:focus-visible {
    background: rgba(255, 255, 255, .85);
    outline: none;
    transform: translateY(-1px);
}
.centiflix__cta svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.centiflix__cta--ghost {
    background: rgba(109, 109, 110, .7);
    color: #fff;
}
.centiflix__cta--ghost:hover { background: rgba(109, 109, 110, .9); }

.centiflix__row { padding: 1.6rem 0 .4rem; }
.centiflix__row-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .4rem;
}
.centiflix__row-title {
    margin: 0;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .01em;
}
.centiflix__rail-counter {
    color: rgba(255,255,255,.55);
    font-size: .82rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
}
.centiflix__rail-wrap {
    position: relative;
}
.centiflix__rail-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 72px;
    border: 0;
    border-radius: 6px;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease, background .2s ease, transform .2s ease;
    backdrop-filter: blur(4px);
}
.centiflix__rail-btn svg { width: 28px; height: 28px; fill: #fff; }
.centiflix__rail-btn--prev { left: max(8px, calc((100vw - 1200px) / 2 - 12px)); }
.centiflix__rail-btn--next { right: max(8px, calc((100vw - 1200px) / 2 - 12px)); }
.centiflix__rail-wrap:hover .centiflix__rail-btn,
.centiflix__rail-btn:focus-visible { opacity: 1; }
.centiflix__rail-btn:hover { background: rgba(229, 9, 20, .85); transform: translateY(-50%) scale(1.05); }
.centiflix__rail-btn[disabled] { opacity: 0 !important; pointer-events: none; }
@media (max-width: 780px) {
    .centiflix__rail-btn { opacity: 1; width: 38px; height: 56px; }
    .centiflix__rail-btn--prev { left: 4px; }
    .centiflix__rail-btn--next { right: 4px; }
}
.centiflix__rail {
    display: flex;
    gap: .9rem;
    overflow-x: auto;
    padding: 1rem max(20px, calc((100vw - 1200px) / 2)) 2.4rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    user-select: none;
    cursor: grab;
}
.centiflix__rail.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.centiflix__rail::-webkit-scrollbar { display: none; }
.centiflix__card {
    flex: 0 0 auto;
    width: clamp(220px, 22vw, 320px);
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    padding: 0;
    scroll-snap-align: start;
    transition: transform .4s cubic-bezier(.2, .6, .2, 1);
}
.centiflix__card:hover,
.centiflix__card:focus-visible {
    transform: scale(1.07);
    outline: none;
    z-index: 2;
}
.centiflix__card-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1d22;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
}
.centiflix__card-media img,
.centiflix__card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.centiflix__card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .55));
    opacity: 0;
    transition: opacity .25s ease;
}
.centiflix__card-play svg { width: 56px; height: 56px; fill: #fff; filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .5)); }
.centiflix__card:hover .centiflix__card-play,
.centiflix__card:focus-visible .centiflix__card-play { opacity: 1; }
.centiflix__card-title {
    display: block;
    margin: .65rem .15rem 0;
    color: rgba(255, 255, 255, .88);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.centiflix__card--photo .centiflix__card-media { aspect-ratio: 4 / 5; }
.centiflix__card--no-title .centiflix__card-title { display: none; }

/* CENTIFLIX modal */
.centiflix__modal {
    width: min(1100px, 92vw);
    max-width: none;
    border: 0;
    border-radius: 12px;
    padding: 0;
    background: #0b0d10;
    color: #fff;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .8);
}
.centiflix__modal::backdrop { background: rgba(0, 0, 0, .85); backdrop-filter: blur(6px); }
.centiflix__modal-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}
.centiflix__modal-stage iframe,
.centiflix__modal-stage video,
.centiflix__modal-stage img {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: contain;
    background: #000;
}
.centiflix__modal-title {
    padding: 1rem 1.25rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
}
.centiflix__modal-close {
    position: absolute;
    top: .5rem;
    right: .75rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
.centiflix__modal-close:hover { background: rgba(229, 9, 20, .9); }
html.is-centiflix-open { overflow: hidden; }

@media (max-width: 780px) {
    .centiflix__hero { min-height: 420px; }
    .centiflix__hero-inner { padding: 2.4rem 0 1.8rem; }
    .centiflix__row-title { font-size: 1.1rem; }
    .therapy-list__grid { grid-template-columns: 1fr; }
    .page-hero--bg { padding: 4rem 0 3rem; min-height: 320px; }
}
