:root {
    --surface: #fbf9fa;
    --surface-low: #f5f3f4;
    --surface-high: #e9e8e9;
    --surface-highest: #e4e2e3;
    --card: #ffffff;
    --text: #1b1c1d;
    --muted: #43474c;
    --primary: #162839;
    --primary-soft: #2c3e50;
    --secondary: #006b58;
    --secondary-soft: #82f7d8;
    --outline: rgba(116, 119, 125, 0.28);
    --shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
    --radius: 4px;
    --radius-lg: 18px;
    --container: 1200px;
    --section-gap: 120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(44, 62, 80, 0.10), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(0, 107, 88, 0.08), transparent 22%),
        radial-gradient(circle at 78% 78%, rgba(44, 62, 80, 0.05), transparent 26%),
        linear-gradient(180deg, #fdfcfc 0%, #f8f5f6 42%, #fbf9fa 100%);
    color: var(--text);
    font-family: "Source Sans 3", Arial, sans-serif;
    line-height: 1.6;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 34%),
        linear-gradient(295deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 38%);
}

body::after {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.18) 0,
            rgba(255, 255, 255, 0.18) 1px,
            transparent 1px,
            transparent 120px
        );
    opacity: 0.28;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.04) 40%, transparent 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.site-shell::before {
    top: -140px;
    left: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 72%);
    filter: blur(12px);
}

.site-shell::after {
    top: 420px;
    right: -180px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 107, 88, 0.08) 0%, rgba(0, 107, 88, 0) 70%);
    filter: blur(18px);
}

main,
.site-header,
.site-footer {
    position: relative;
    z-index: 1;
}

main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1400px, 92vw);
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.18) 76%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.7;
}

main > * {
    position: relative;
    z-index: 1;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 249, 250, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--outline);
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.05);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 24px;
}

.brand,
.site-footer h3 {
    font-family: "Libre Caslon Text", Georgia, serif;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.brand-logo {
    width: auto;
    height: 38px;
    flex-shrink: 0;
}

.brand-text {
    display: block;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--secondary);
    border-color: var(--secondary);
}

.site-nav .button {
    padding-bottom: 12px;
    border-bottom: 0;
}

.site-nav a.button-nav {
    padding: 12px 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--secondary) 0%, #0a7b66 100%);
    border: 1px solid rgba(0, 107, 88, 0.95);
    box-shadow: 0 12px 26px rgba(0, 107, 88, 0.18);
}

.site-nav a.button-nav:hover,
.site-nav a.button-nav:focus-visible {
    color: #ffffff;
    border-color: #0a7b66;
    background: linear-gradient(135deg, #0a7b66 0%, var(--primary-soft) 100%);
    box-shadow: 0 14px 30px rgba(22, 40, 57, 0.16);
}

.site-nav a.button-nav.is-active {
    color: #ffffff;
    border-color: rgba(0, 107, 88, 0.95);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px 0;
    background: var(--primary);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.button-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.button-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.button-light {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--outline);
}

.button-accent {
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
}

.hero-section,
.section {
    padding: var(--section-gap) 0;
}

.section#protocolo {
    padding-top: 0;
    padding-bottom: 0;
}

.section {
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1200px, calc(100% - 32px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(196, 198, 205, 0), rgba(196, 198, 205, 0.55), rgba(196, 198, 205, 0));
    opacity: 0.45;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-grid,
.grid-two,
.grid-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
}

.hero-section {
    padding-top: 0;
    padding-bottom: 64px;
}

.hero-banner-full {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    min-height: min(80vh, 900px);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: #d9d5d2;
    box-shadow: 0 24px 60px rgba(22, 40, 57, 0.12);
}

.hero-banner-image {
    width: 100%;
    height: min(80vh, 900px);
    object-fit: cover;
    object-position: 64% 18%;
    box-shadow: none;
}

.hero-banner-scrim,
.hero-banner-blur,
.hero-overlay-shell {
    position: absolute;
    inset: 0;
}

.hero-banner-scrim {
    background:
        linear-gradient(90deg, rgba(22, 40, 57, 0.64) 0%, rgba(22, 40, 57, 0.36) 36%, rgba(22, 40, 57, 0.14) 60%, rgba(22, 40, 57, 0.10) 100%),
        linear-gradient(180deg, rgba(14, 23, 31, 0.08) 0%, rgba(14, 23, 31, 0.22) 100%);
    z-index: 1;
}

.hero-banner-blur {
    width: min(46vw, 680px);
    right: auto;
    background: rgba(22, 40, 57, 0.16);
    backdrop-filter: blur(13px) saturate(114%);
    -webkit-backdrop-filter: blur(13px) saturate(114%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.84) 70%, transparent 100%);
    z-index: 2;
}

.hero-overlay-shell {
    z-index: 3;
    display: flex;
    align-items: center;
    padding: clamp(28px, 4vw, 52px);
}

.hero-overlay-content {
    width: min(640px, 100%);
    min-height: clamp(220px, 32vh, 340px);
    margin-left: clamp(8px, 1.5vw, 20px);
}

.hero-copy-floating > * {
    opacity: 0;
    animation: hero-fade-float 1.3s ease forwards, hero-soft-drift 6.5s ease-in-out infinite;
    will-change: transform, opacity;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--secondary-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 8px 20px rgba(14, 23, 31, 0.24);
    animation-delay: 0.1s, 1.25s;
}

.hero-display {
    margin: 0 0 24px;
    max-width: 13ch;
    color: #ffffff;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(2.15rem, 4.6vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    text-shadow: 0 14px 36px rgba(14, 23, 31, 0.28);
    animation-delay: 0.28s, 1.38s;
}

.hero-description {
    max-width: 56ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.94rem, 1.15vw, 1.08rem);
    line-height: 1.65;
    text-shadow: 0 10px 24px rgba(14, 23, 31, 0.20);
    animation-delay: 0.46s, 1.52s;
}

.hero-disclaimer {
    max-width: 58ch;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    line-height: 1.55;
    text-shadow: 0 10px 24px rgba(14, 23, 31, 0.18);
    animation-delay: 0.58s, 1.62s;
}

.hero-kicker-subline {
    display: block;
    margin: 8px 0 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 8px 20px rgba(14, 23, 31, 0.24);
}

.hero-actions {
    margin-top: 22px;
}

.protocol-section .hero-actions {
    margin-top: 28px;
    margin-bottom: 34px;
}

.protocol-section .metrics-grid {
    margin-top: 0;
}

.protocol-section {
    padding-bottom: calc(var(--section-gap) * 0.42);
}

.protocol-followup-section {
    padding-top: calc(var(--section-gap) * 0.58);
}

.protocol-followup-section .grid-two {
    gap: 20px;
    align-items: start;
}

.protocol-followup-section .metric-card {
    min-height: 100%;
}

@keyframes hero-fade-float {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-soft-drift {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-title,
.section-title,
.cta-title,
.admin-title {
    margin: 0 0 24px;
    font-family: "Libre Caslon Text", Georgia, serif;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.1;
}

.hero-title-compact {
    max-width: 14ch;
    margin-bottom: 18px;
    font-size: clamp(2rem, 4.5vw, 3.3rem);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.hero-lead,
.section-copy,
.section-copy p,
.service-card p,
.metric-card p,
.timeline-card p,
.contact-card p,
.admin-card p {
    color: var(--muted);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.hero-mockup-stage {
    display: flex;
    justify-content: center;
}

.hero-mockup-frame {
    position: relative;
    width: min(100%, 420px);
    padding: 18px;
}

.hero-mockup-outline {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: 44px 120px 44px 120px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
        radial-gradient(circle at top right, rgba(0, 107, 88, 0.06), transparent 34%);
    box-shadow:
        0 26px 50px rgba(22, 40, 57, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-mockup-outline::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(0, 107, 88, 0.16);
    border-radius: 30px 92px 30px 92px;
}

.hero-mockup-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 5 / 6.8;
    object-fit: cover;
    object-position: center;
    border-radius: 28px 88px 28px 88px;
    box-shadow: 0 20px 40px rgba(22, 40, 57, 0.14);
}

.feature-immersive {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 690px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-immersive::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.feature-immersive-copy {
    position: relative;
    z-index: 1;
}

.feature-immersive-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: center;
    min-height: 690px;
    padding-top: 54px;
    padding-bottom: 54px;
}

.feature-immersive-copy {
    grid-column: 1 / span 3;
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 20px;
}

.feature-immersive-copy > * {
    width: 100%;
}

.feature-immersive-copy .section-title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: static;
    left: auto;
    transform: none;
    color: #ffffff;
    text-align: left;
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(2.15rem, 3.7vw, 3.7rem);
    text-shadow: 0 14px 36px rgba(14, 23, 31, 0.34);
}

.feature-immersive-copy .section-copy {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.14rem, 1.3vw, 1.24rem);
    line-height: 1.75;
    text-align: left;
    text-wrap: pretty;
    text-shadow: 0 10px 26px rgba(14, 23, 31, 0.28);
}

.feature-immersive-copy .section-copy:first-of-type {
    max-width: 100%;
    width: 100%;
    font-size: clamp(1.12rem, 1.26vw, 1.22rem);
    white-space: normal;
}

.feature-immersive-copy .section-copy:nth-of-type(2) {
    max-width: 100%;
    width: 100%;
    font-size: clamp(1.12rem, 1.26vw, 1.22rem);
    white-space: normal;
}

.feature-line-lock {
    white-space: normal;
}

.feature-immersive-copy .section-copy:last-of-type {
    margin-bottom: 24px;
}

.feature-immersive-copy .check-list {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.feature-immersive-copy .check-list li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid rgba(130, 247, 216, 0.18);
    border-radius: 100px;
    background:
        linear-gradient(180deg, rgba(22, 40, 57, 0.48), rgba(22, 40, 57, 0.34)),
        rgba(22, 40, 57, 0.24);
    box-shadow:
        0 18px 40px rgba(14, 23, 31, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 8px 22px rgba(14, 23, 31, 0.30);
}

.feature-immersive-copy .check-list li::before {
    content: "•";
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--secondary-soft);
    font-size: 1.4rem;
    line-height: 1;
    margin-right: 2px;
    text-shadow: 0 0 12px rgba(130, 247, 216, 0.6);
}

.protocol-mockup-stage {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.protocol-mockup-frame {
    position: relative;
    width: min(100%, 660px);
    padding: 24px;
}

.protocol-mockup-outline {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: 36px 128px 36px 128px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.26)),
        radial-gradient(circle at top left, rgba(0, 107, 88, 0.08), transparent 34%);
    box-shadow:
        0 26px 48px rgba(22, 40, 57, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.protocol-mockup-outline::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: 24px 92px 24px 92px;
}

.protocol-mockup-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px 76px 20px 76px;
    box-shadow: 0 20px 38px rgba(22, 40, 57, 0.14);
}

.rx-mockup-stage {
    display: flex;
    justify-content: center;
}

.rx-mockup-frame {
    position: relative;
    width: min(100%, 560px);
    padding: 20px;
}

.rx-mockup-outline {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px 108px 34px 108px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at top left, rgba(130, 247, 216, 0.08), transparent 34%);
    box-shadow:
        0 28px 52px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.rx-mockup-outline::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(130, 247, 216, 0.14);
    border-radius: 24px 78px 24px 78px;
}

.rx-mockup-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 18px 66px 18px 66px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.hero-visual {
    position: relative;
}

.hero-highlight-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--outline);
    background: var(--card);
    box-shadow: var(--shadow);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -32px 24px 24px -24px;
    background: rgba(0, 107, 88, 0.05);
    border-radius: 50%;
    filter: blur(24px);
}

.hero-image,
.feature-image,
.doctor-image,
.technology-image,
.service-wide-image {
    position: relative;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-image,
.feature-image,
.technology-image {
    border-radius: 0;
}

.doctor-image {
    border-radius: 20px;
}

.info-strip,
.metrics-grid,
.tech-grid,
.contact-panel,
.services-grid,
.process-grid,
.admin-grid,
.location-grid {
    display: grid;
    gap: 24px;
}

.info-strip-shell {
    position: relative;
    z-index: 1;
    margin-top: 56px;
}

.info-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 0;
}

.info-card,
.metric-card,
.timeline-card,
.tech-card,
.contact-card,
.service-card,
.process-card,
.admin-card,
.stat-card,
.location-card {
    background: var(--card);
    border: 1px solid var(--outline);
}

.info-card,
.metric-card,
.timeline-card,
.tech-card,
.contact-card,
.service-card,
.process-card,
.admin-card,
.location-card {
    padding: 28px;
}

.info-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 30px 28px 28px;
    border-radius: 28px;
    border: 1px solid rgba(160, 184, 196, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(248, 250, 251, 0.82)),
        rgba(255, 255, 255, 0.78);
    box-shadow:
        0 22px 48px rgba(22, 40, 57, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(18px);
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(94, 171, 163, 0.26) 100%);
}

.info-card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px solid rgba(94, 171, 163, 0.26);
    background: rgba(94, 171, 163, 0.12);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.info-card strong,
.metric-card strong,
.timeline-card strong,
.tech-card strong,
.service-card h3,
.process-card h3,
.location-card h3 {
    color: var(--primary);
}

.info-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.14rem;
    line-height: 1.4;
}

.info-card p {
    margin: 0;
    color: rgba(22, 40, 57, 0.76);
    line-height: 1.72;
}

.soft-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(245, 243, 244, 0.86)),
        var(--surface-low);
}

.protocol-section {
    background:
        linear-gradient(180deg, rgba(232, 240, 237, 0.82), rgba(247, 249, 248, 0.96)),
        #eef4f1;
}

.dark-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #20384d 100%);
    color: #fff;
}

.dark-section .section-title,
.dark-section h3,
.dark-section h4 {
    color: #fff;
}

.dark-section .eyebrow {
    color: var(--secondary-soft);
}

.dark-section .section-copy,
.dark-section p {
    color: rgba(255, 255, 255, 0.78);
}

.dark-section .info-card strong {
    color: var(--secondary-soft);
}

.dark-section .info-card p {
    color: rgba(255, 255, 255, 0.82);
}

.dark-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 36px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--primary);
    font-weight: 600;
}

.check-list li::before {
    content: "•";
    color: var(--secondary);
    font-size: 1.35rem;
    line-height: 1;
}

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

.metric-card {
    border-left: 4px solid var(--secondary);
}

.outcome-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.outcome-mockup-stage {
    display: flex;
    justify-content: center;
}

.outcome-mockup-frame {
    position: relative;
    width: min(100%, 470px);
    padding: 20px;
}

.outcome-mockup-outline {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: 96px 32px 96px 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.24)),
        radial-gradient(circle at center right, rgba(0, 107, 88, 0.08), transparent 34%);
    box-shadow:
        0 24px 46px rgba(22, 40, 57, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.outcome-mockup-outline::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(0, 107, 88, 0.14);
    border-radius: 72px 22px 72px 22px;
}

.outcome-mockup-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: 36% center;
    border-radius: 68px 18px 68px 18px;
    box-shadow: 0 20px 38px rgba(22, 40, 57, 0.14);
}

.timeline-wrap {
    position: relative;
}

.timeline-wrap::before {
    content: "";
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--outline);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    position: relative;
}

.timeline-card {
    text-align: center;
    background: transparent;
    border: 0;
    padding: 0 12px;
}

.timeline-number {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.bio-title-name {
    color: var(--secondary);
}

.bio-grid .professional-id strong {
    color: var(--secondary);
}

.bio-resume {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(22, 40, 57, 0.10);
}

.bio-resume-head {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
}

.bio-resume-title {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bio-resume-note {
    color: rgba(22, 40, 57, 0.62);
    line-height: 1.6;
}

.bio-resume-list {
    margin: 0;
    padding: 0;
    list-style: none;
    column-count: 2;
    column-gap: 28px;
}

.bio-resume-list li {
    break-inside: avoid;
    position: relative;
    margin: 0 0 14px;
    padding-left: 18px;
    color: rgba(22, 40, 57, 0.80);
    line-height: 1.72;
}

.bio-resume-list li::before {
    content: "";
    position: absolute;
    top: 0.78em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--secondary);
}

.stats-row {
    display: flex;
    gap: 44px;
    margin-top: 28px;
}

.stat-card {
    padding: 0;
    background: transparent;
    border: 0;
}

.stat-value {
    display: block;
    color: var(--primary);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tech-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
}

.tech-panel {
    background: var(--surface);
    border: 1px solid var(--outline);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.tech-panel > p {
    margin-bottom: 0;
}

.technology-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    height: 100%;
}

.tech-card {
    background: #fff;
    border: 1px solid var(--outline);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-card:hover,
.service-card:hover,
.process-card:hover {
    border-color: rgba(0, 107, 88, 0.5);
    transform: translateY(-4px);
}

.contact-section {
    background:
        radial-gradient(circle at top right, rgba(130, 247, 216, 0.08), transparent 26%),
        linear-gradient(135deg, #2c3e50 0%, #223646 100%);
    color: #fff;
}

.contact-panel {
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
}

.contact-section .section-title,
.contact-section h3,
.contact-section h4 {
    color: #fff;
}

.contact-section .section-copy,
.contact-section p,
.contact-section label,
.contact-section li {
    color: rgba(255, 255, 255, 0.78);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.form-group select option {
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-soft);
    background: rgba(255, 255, 255, 0.08);
}

.consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
}

.consent a {
    color: var(--secondary-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.consent input {
    margin-top: 3px;
}

.field-error {
    color: #ffd0d0;
    font-size: 0.9rem;
}

.flash {
    padding: 16px 18px;
    border: 1px solid transparent;
}

.flash-success {
    color: #dff8f1;
    border-color: rgba(130, 247, 216, 0.4);
    background: rgba(130, 247, 216, 0.12);
}

.flash-error {
    color: #ffe2de;
    border-color: rgba(255, 218, 214, 0.35);
    background: rgba(186, 26, 26, 0.14);
}

.locations-stack {
    display: grid;
    gap: 20px;
}

.location-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.location-card a {
    color: #82f7d8;
    font-weight: 700;
}

.services-hero {
    padding-top: 120px;
    padding-bottom: 88px;
}

.services-hero-grid,
.services-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    gap: 48px;
    align-items: center;
}

.services-hero-copy {
    display: grid;
    align-content: start;
    gap: 22px;
    max-width: 760px;
    min-width: 0;
}

.services-hero-copy .eyebrow,
.services-hero-copy .hero-title,
.services-hero-copy .hero-lead {
    margin: 0;
}

.services-hero-copy .hero-title {
    max-width: 14ch;
}

.services-hero-copy .hero-lead {
    max-width: 58ch;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 4px;
}

.services-hero-pills,
.cta-box-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.services-hero-pills {
    margin-top: 2px;
}

.services-hero-pills span,
.cta-box-points span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(22, 40, 57, 0.10);
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(22, 40, 57, 0.06);
}

.services-summary-card {
    position: relative;
    overflow: hidden;
    align-self: center;
    justify-self: end;
    width: min(100%, 420px);
    padding: 36px 34px;
    border: 1px solid rgba(160, 184, 196, 0.28);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 251, 0.84)),
        rgba(255, 255, 255, 0.84);
    box-shadow:
        0 22px 48px rgba(22, 40, 57, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.services-summary-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(94, 171, 163, 0.22) 100%);
}

.services-summary-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.services-summary-title {
    display: block;
    margin-bottom: 18px;
    color: var(--primary);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.2;
}

.services-summary-list,
.service-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-summary-list {
    display: grid;
    gap: 14px;
}

.services-summary-list li,
.service-feature-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(22, 40, 57, 0.82);
    line-height: 1.72;
}

.services-summary-list li::before,
.service-feature-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
}

.services-overview {
    padding-top: 40px;
}

.services-highlight-grid {
    display: grid;
    gap: 18px;
}

.services-highlight-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(22, 40, 57, 0.08);
    border-radius: 24px;
    padding: 24px 26px;
    box-shadow: 0 18px 38px rgba(22, 40, 57, 0.06);
}

.services-highlight-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.04rem;
    line-height: 1.4;
}

.services-highlight-card p {
    margin: 0;
    color: rgba(22, 40, 57, 0.76);
    line-height: 1.7;
}

.testimonials-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 246, 0.96)),
        #f6f8f7;
}

.testimonials-section-head,
.testimonials-home-actions {
    text-align: center;
}

.testimonials-section-head {
    max-width: 760px;
    margin: 0 auto 44px;
}

.testimonials-home-rail,
.testimonials-page-grid {
    display: grid;
    gap: 24px;
}

.testimonials-home-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card,
.testimonial-page-card {
    border-radius: 28px;
    border: 1px solid rgba(22, 40, 57, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 248, 0.88)),
        rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 40px rgba(22, 40, 57, 0.08);
    overflow: hidden;
}

.testimonial-card-trigger {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.testimonial-thumb-shell {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #dfe6e3;
}

.testimonial-thumb-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 40, 57, 0.04), rgba(22, 40, 57, 0.28));
}

.testimonial-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-play {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    box-shadow: 0 16px 28px rgba(22, 40, 57, 0.16);
}

.testimonial-card-copy,
.testimonial-page-copy {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.testimonial-card-copy strong,
.testimonial-page-copy strong,
.testimonial-page-headline {
    color: var(--primary);
}

.testimonial-card-copy strong,
.testimonial-page-copy strong {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.3rem;
}

.testimonial-card-copy p,
.testimonial-page-description {
    margin: 0;
    color: rgba(22, 40, 57, 0.78);
    line-height: 1.72;
}

.testimonials-home-actions {
    margin-top: 32px;
}

.testimonials-page-hero {
    padding-top: 88px;
    padding-bottom: 20px;
}

.testimonials-page-shell {
    width: min(100%, 1080px);
    margin: 0 auto;
}

.testimonials-page-hero-inner {
    display: block;
}

.testimonials-page-copy {
    max-width: 100%;
}

.testimonials-page-copy .hero-title {
    max-width: 21ch;
    margin-bottom: 14px;
}

.testimonials-page-copy .hero-lead {
    max-width: 78ch;
    margin: 0;
}

.testimonials-page-section {
    padding-top: 12px;
}

.testimonial-page-headline,
.testimonial-page-description {
    margin: 0;
}

.testimonials-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-page-headline {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.28;
}

.testimonial-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.video-modal[hidden] {
    display: none;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 20px;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 24, 0.78);
    backdrop-filter: blur(8px);
}

.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    border-radius: 28px;
    background: #0f1c28;
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.7rem;
    cursor: pointer;
}

.video-modal-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #09131b;
}

.video-modal-media iframe,
.video-modal-media video,
.video-modal-placeholder {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-copy {
    display: grid;
    gap: 10px;
    padding: 24px 26px 28px;
}

.video-modal-copy strong {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.35rem;
}

.video-modal-copy p,
.video-modal-placeholder p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.video-modal-placeholder {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 32px;
    text-align: center;
}

.video-modal-placeholder strong {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.5rem;
    color: #ffffff;
}

body.modal-open {
    overflow: hidden;
}

.services-section-intro {
    max-width: 820px;
    margin-bottom: 52px;
}

.services-section-intro-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.services-treatment-section {
    padding-top: 48px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    border-radius: 28px;
    border: 1px solid rgba(160, 184, 196, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 251, 0.82)),
        rgba(255, 255, 255, 0.8);
    box-shadow:
        0 18px 40px rgba(22, 40, 57, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.68);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card-content {
    display: grid;
    gap: 18px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0, 107, 88, 0.08);
    border: 1px solid rgba(0, 107, 88, 0.14);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.service-card h3 {
    margin: 0 0 16px;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(1.7rem, 2.4vw, 2rem);
    line-height: 1.2;
}

.service-card p {
    margin: 0;
}

.service-feature-list {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.service-card-footer {
    display: grid;
    gap: 18px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(22, 40, 57, 0.10);
}

.service-ideal-for {
    margin: 0;
    color: rgba(22, 40, 57, 0.78);
    line-height: 1.68;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--secondary);
    font-size: 0.92rem;
    font-weight: 700;
}

.service-card-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.service-card-wide .service-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
}

.service-wide-image {
    min-height: 100%;
    height: 100%;
    object-position: center;
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
    position: relative;
    min-height: 210px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.process-number {
    position: absolute;
    top: 18px;
    right: 24px;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 3.4rem;
    color: rgba(0, 107, 88, 0.12);
}

.cta-box {
    background: var(--primary);
    color: #fff;
    padding: 56px 48px;
    text-align: center;
    border-radius: 30px;
}

.cta-box .cta-title {
    color: #fff;
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 2.6rem);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
    margin: 0 auto;
}

.cta-box-services {
    display: grid;
    gap: 26px;
    justify-items: center;
}

.cta-box-copy {
    display: grid;
    gap: 18px;
    justify-items: center;
}

.cta-box-services .eyebrow {
    margin-bottom: 0;
    color: #82f7d8;
}

.cta-actions-center {
    justify-content: center;
    margin-top: 0;
}

.cta-box .button-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-box .button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.site-footer {
    background:
        radial-gradient(circle at top left, rgba(130, 247, 216, 0.08), transparent 24%),
        linear-gradient(180deg, #162839 0%, #122231 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 80px 0 24px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    display: block;
    margin-bottom: 10px;
}

.site-footer p {
    margin: 0 0 10px;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
    margin-bottom: 18px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 40px;
}

.professional-id {
    display: grid;
    gap: 4px;
    margin-top: 18px;
    font-size: 0.95rem;
}

.professional-id strong {
    color: #ffffff;
}

.professional-id p {
    margin: 0;
}

.footer-disclaimer {
    margin-top: 32px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.92rem;
    line-height: 1.7;
    text-align: center;
}

.footer-disclaimer p {
    margin: 0;
}

.footer-note {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.footer-note p {
    margin: 0;
}

.footer-signature,
.lp-footer-signature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.footer-signature a,
.lp-footer-signature a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-signature img,
.lp-footer-signature img {
    width: auto;
    height: 52px;
    opacity: 0.9;
}

.admin-shell {
    padding: 120px 0 80px;
}

.admin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 32px;
}

.admin-card strong {
    display: block;
    color: var(--secondary);
    font-size: 2rem;
}

.table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--outline);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--outline);
    vertical-align: top;
}

th {
    background: var(--surface-low);
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.empty-state {
    background: #fff;
    border: 1px solid var(--outline);
    padding: 40px;
    text-align: center;
    color: var(--muted);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    :root {
        --section-gap: 88px;
    }

    .testimonials-page-hero-inner,
    .services-hero-grid,
    .services-overview-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .testimonials-page-shell {
        width: 100%;
    }

    .services-hero-copy {
        max-width: 100%;
    }

    .services-hero-copy .hero-title,
    .services-hero-copy .hero-lead {
        max-width: none;
    }

    .services-summary-card {
        justify-self: start;
        width: min(100%, 680px);
    }

    .hero-grid,
    .grid-two,
    .grid-split,
    .outcome-grid,
    .bio-grid,
    .tech-layout,
    .contact-panel,
    .services-grid,
    .process-grid,
    .footer-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .service-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .service-card-wide .service-copy {
        padding: 32px 28px;
    }

    .hero-banner-blur {
        width: min(56vw, 560px);
    }

    .hero-display {
        max-width: 12ch;
    }

    .info-strip,
    .timeline-grid,
    .tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-strip-shell {
        margin-top: 40px;
    }

    .feature-immersive,
    .feature-immersive-inner {
        min-height: 620px;
    }

    .feature-immersive-inner {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .feature-immersive-copy {
        grid-column: 1 / span 3;
        width: 100%;
        max-width: 860px;
    }

    .bio-resume-list {
        column-count: 1;
    }

    .timeline-wrap::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .testimonials-home-rail {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(82%, 1fr);
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card,
    .testimonial-page-card {
        scroll-snap-align: start;
    }

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

    .testimonial-play {
        width: 52px;
        height: 52px;
        left: 18px;
        bottom: 18px;
    }

    .video-modal {
        padding: 12px;
    }

    .video-modal-dialog {
        border-radius: 22px;
    }

    .brand {
        gap: 10px;
        font-size: 1.2rem;
    }

    .brand-logo {
        height: 32px;
    }

    .services-hero {
        padding-top: 96px;
        padding-bottom: 64px;
    }

    .services-hero-actions,
    .cta-actions-center {
        flex-direction: column;
        align-items: stretch;
    }

    .services-hero-copy {
        gap: 18px;
    }

    .services-hero-pills {
        margin-top: 6px;
    }

    .services-summary-card,
    .services-highlight-card,
    .service-card,
    .process-card,
    .cta-box {
        border-radius: 24px;
    }

    .service-card-wide .service-copy {
        padding: 28px 24px;
    }

    .service-wide-image {
        min-height: 280px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 81px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: var(--card);
        border: 1px solid var(--outline);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 10px 0;
    }

    .hero-banner {
        min-height: 62vh;
    }

    .hero-banner-image {
        height: 62vh;
        object-position: 60% 14%;
    }

    .hero-banner-blur {
        width: 100%;
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.66) 48%, transparent 100%);
    }

    .hero-overlay-shell {
        align-items: flex-end;
        padding: 22px;
    }

    .hero-overlay-content {
        min-height: 180px;
        width: min(100%, 480px);
        margin-left: 0;
    }

    .hero-kicker {
        font-size: 0.82rem;
        letter-spacing: 0.14em;
    }

    .hero-display {
        max-width: 11.5ch;
        font-size: clamp(2.15rem, 9vw, 3.35rem);
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
        margin-top: 28px;
    }

    .info-strip,
    .metrics-grid,
    .timeline-grid,
    .tech-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-description {
        max-width: 44ch;
    }

    .info-card {
        padding: 26px 22px 24px;
        border-radius: 24px;
    }

    .feature-immersive {
        min-height: 560px;
    }

    .feature-immersive::before {
        inset: 0;
        border-radius: 0;
    }

    .feature-immersive-inner {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 560px;
        align-items: flex-end;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .feature-immersive-copy {
        grid-column: 1;
        width: 100%;
        gap: 16px;
    }

    .hero-mockup-frame {
        width: min(100%, 360px);
        padding: 14px;
    }

    .protocol-mockup-frame {
        width: min(100%, 500px);
        padding: 18px;
    }

    .rx-mockup-frame {
        width: min(100%, 430px);
        padding: 16px;
    }

    .hero-mockup-outline {
        border-radius: 32px 72px 32px 72px;
    }

    .hero-mockup-outline::before {
        inset: 12px;
        border-radius: 24px 54px 24px 54px;
    }

    .hero-mockup-image {
        border-radius: 22px 60px 22px 60px;
    }

    .protocol-mockup-outline {
        border-radius: 28px 76px 28px 76px;
    }

    .protocol-mockup-outline::before {
        inset: 12px;
        border-radius: 20px 58px 20px 58px;
    }

    .protocol-mockup-image {
        border-radius: 18px 54px 18px 54px;
    }

    .rx-mockup-outline {
        border-radius: 26px 74px 26px 74px;
    }

    .rx-mockup-outline::before {
        inset: 12px;
        border-radius: 18px 56px 18px 56px;
    }

    .rx-mockup-image {
        border-radius: 16px 48px 16px 48px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .outcome-mockup-frame {
        width: min(100%, 390px);
        padding: 16px;
    }

    .outcome-mockup-outline {
        border-radius: 64px 24px 64px 24px;
    }

    .outcome-mockup-outline::before {
        inset: 12px;
        border-radius: 50px 16px 50px 16px;
    }

    .outcome-mockup-image {
        height: 360px;
        object-position: 34% center;
        border-radius: 46px 14px 46px 14px;
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: scale(1.15) translateY(-4px);
    background-color: #1ebe57;
    color: white;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
}

.lp-body {
    background:
        radial-gradient(circle at 18% 18%, rgba(130, 247, 216, 0.12), transparent 32%),
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #0f1c28 0%, #152737 62%, #122231 100%);
    color: rgba(255, 255, 255, 0.92);
}

.lp-body::before {
    opacity: 0.35;
}

.lp-body::after {
    opacity: 0.22;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 100%);
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(15, 28, 40, 0.68);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.lp-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lp-brand-wrap {
    display: grid;
    gap: 4px;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 1.25rem;
    color: #ffffff;
}

.lp-brand-logo {
    width: auto;
    height: 34px;
    flex-shrink: 0;
}

.lp-brand-text {
    display: block;
    line-height: 1;
}

.lp-brand-note {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.lp-header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.lp-header-nav a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
}

.lp-header-nav a:hover,
.lp-header-nav a:focus-visible {
    color: #ffffff;
}

.lp-header-cta {
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.lp-v2-header {
    background: rgba(251, 249, 250, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--outline);
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.05);
}

.lp-v2-header .lp-brand {
    color: var(--primary);
}

.lp-v2-header .lp-brand-note {
    color: var(--muted);
}

.lp-v2-header .lp-header-nav a {
    color: var(--muted);
}

.lp-v2-header .lp-header-nav a:hover,
.lp-v2-header .lp-header-nav a:focus-visible {
    color: var(--secondary);
}

.lp-main > * {
    position: relative;
    z-index: 1;
}

.lp-hero {
    position: relative;
    min-height: 82vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 84px 0 92px;
}

.lp-hero-media {
    position: absolute;
    inset: 0;
}

.lp-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: saturate(0.86) contrast(1.02) brightness(0.86);
    transform: scale(1.04);
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 38%, rgba(15, 28, 40, 0.06), rgba(15, 28, 40, 0.50) 62%, rgba(15, 28, 40, 0.74) 100%),
        linear-gradient(180deg, rgba(15, 28, 40, 0.36) 0%, rgba(15, 28, 40, 0.74) 100%);
}

.lp-hero-inner {
    position: relative;
    z-index: 2;
}

.lp-hero-copy {
    width: min(100%, 780px);
}

.lp-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--secondary-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.lp-kicker-dark {
    color: var(--secondary);
}

.lp-body #conforto {
    background:
        radial-gradient(circle at top right, rgba(130, 247, 216, 0.10), transparent 34%),
        linear-gradient(180deg, rgba(15, 28, 40, 0.18), rgba(15, 28, 40, 0.46));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-body #conforto .lp-kicker-dark {
    color: var(--secondary-soft);
}

.lp-body #conforto .lp-title,
.lp-body #conforto .section-title {
    color: #ffffff;
}

.lp-body #conforto .lp-copy,
.lp-body #conforto .section-copy {
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 10px 26px rgba(5, 10, 16, 0.22);
}

#logistica .lp-title,
#logistica .section-title {
    color: #ffffff;
}

.lp-headline {
    margin: 0;
    font-family: "Libre Caslon Text", Georgia, serif;
    color: #ffffff;
    font-size: clamp(2.6rem, 4.6vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-wrap: balance;
    text-shadow: 0 18px 44px rgba(5, 10, 16, 0.42);
}

.lp-subheadline {
    margin: 18px 0 0;
    font-size: clamp(1.06rem, 1.35vw, 1.28rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
    max-width: 62ch;
    text-shadow: 0 12px 32px rgba(5, 10, 16, 0.34);
}

.lp-actions {
    margin-top: 30px;
    display: grid;
    gap: 14px;
    justify-items: start;
}

.lp-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-cta-primary {
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 0.98rem;
    letter-spacing: 0.1em;
    box-shadow:
        0 20px 44px rgba(0, 107, 88, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    background: linear-gradient(135deg, var(--secondary) 0%, #0a7b66 56%, rgba(130, 247, 216, 0.28) 140%);
    border-color: rgba(0, 107, 88, 0.95);
}

.lp-cta-secondary {
    padding: 18px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(15, 28, 40, 0.34);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.lp-cta-secondary:hover,
.lp-cta-secondary:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(15, 28, 40, 0.44);
}

.lp-note {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.55;
    max-width: 58ch;
}

.lp-disclaimer {
    margin-top: 18px;
    padding: 16px 18px;
    max-width: 68ch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(15, 28, 40, 0.34);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.65;
    backdrop-filter: blur(8px);
}

.lp-disclaimer strong {
    color: #ffffff;
}

.lp-hero-points {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 980px;
}

.lp-hero-point {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(15, 28, 40, 0.32);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.55;
    backdrop-filter: blur(8px);
}

.lp-trust {
    margin-top: 34px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.lp-trust-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(15, 28, 40, 0.42);
    backdrop-filter: blur(10px);
}

.lp-trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.1;
}

.lp-trust-item span {
    display: block;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.86rem;
}

.lp-section {
    padding: 96px 0;
}

.lp-section-soft {
    background:
        radial-gradient(circle at top right, rgba(0, 107, 88, 0.06), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 247, 246, 1));
    color: var(--text);
}

.lp-section-dark {
    background:
        radial-gradient(circle at top left, rgba(130, 247, 216, 0.10), transparent 30%),
        linear-gradient(180deg, #162839 0%, #122231 100%);
    color: rgba(255, 255, 255, 0.90);
}

.lp-section-dark .lp-title,
.lp-section-dark .section-title {
    color: #ffffff;
}

.lp-section-dark .lp-copy,
.lp-section-dark .section-copy {
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 10px 26px rgba(5, 10, 16, 0.24);
}

.lp-section-dark .lp-copy strong,
.lp-section-dark .section-copy strong {
    color: #ffffff;
}

.lp-narrow {
    max-width: 860px;
}

.lp-section-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 44px;
}

.lp-title {
    margin-top: 0;
}

.lp-copy {
    margin: 18px auto 0;
    font-size: 1.12rem;
    line-height: 1.8;
}

.lp-pain-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lp-pain-card {
    padding: 22px 20px;
    border-radius: 22px;
    border: 1px solid rgba(0, 107, 88, 0.10);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(16, 29, 42, 0.08);
}

.lp-pain-card strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.lp-pain-card span {
    color: rgba(27, 28, 29, 0.78);
    line-height: 1.65;
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.lp-step {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 22px 22px 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(16, 29, 42, 0.52);
    box-shadow: 0 18px 44px rgba(5, 10, 16, 0.22);
}

.lp-step-top {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
}

.lp-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(130, 247, 216, 0.14);
    border: 1px solid rgba(130, 247, 216, 0.20);
    color: var(--secondary-soft);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.lp-step-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.lp-step-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.lp-step-benefit {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(130, 247, 216, 0.12);
    color: var(--secondary-soft);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.lp-cta-row {
    margin-top: 44px;
    display: grid;
    justify-items: center;
    gap: 10px;
}

.lp-cta-row-left {
    justify-items: start;
}

.lp-cta-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.lp-section-soft .lp-cta-sub,
.lp-section-soft .lp-copy {
    color: rgba(27, 28, 29, 0.82);
}

.lp-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.lp-split-reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.lp-media {
    display: flex;
    justify-content: center;
}

.lp-media-image {
    width: min(100%, 560px);
    height: 420px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 26px 64px rgba(5, 10, 16, 0.20);
}

.lp-media-portrait {
    height: 520px;
    object-position: center 20%;
}

.lp-support-list {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.lp-support-item {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
}

.lp-authority-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lp-authority-card {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 107, 88, 0.10);
    box-shadow: 0 18px 44px rgba(16, 29, 42, 0.08);
}

.lp-authority-card strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.lp-authority-card span {
    color: rgba(27, 28, 29, 0.78);
    line-height: 1.6;
}

.lp-emphasis-card {
    margin-top: 18px;
    padding: 20px 22px;
    border-left: 4px solid var(--secondary);
    border-radius: 0 18px 18px 0;
    background: rgba(0, 107, 88, 0.08);
    color: rgba(27, 28, 29, 0.82);
    line-height: 1.7;
}

.lp-faq {
    display: grid;
    gap: 14px;
}

.lp-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(16, 29, 42, 0.52);
    padding: 14px 16px;
}

.lp-faq-item summary {
    cursor: pointer;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.lp-faq-body {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.lp-price-box {
    margin-top: 34px;
    border-radius: 24px;
    padding: 34px 28px;
    border: 1px solid rgba(130, 247, 216, 0.20);
    background:
        radial-gradient(circle at top right, rgba(130, 247, 216, 0.14), transparent 42%),
        rgba(16, 29, 42, 0.62);
    text-align: center;
}

.lp-price-title {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
}

.lp-price-copy {
    margin: 0 auto 22px;
    max-width: 70ch;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 1.08rem;
}

.lp-price-points {
    margin: 0 auto 24px;
    display: grid;
    gap: 10px;
    max-width: 620px;
}

.lp-price-point {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.55;
}

.lp-logistics {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.lp-logistics-item {
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
    padding: 16px 18px;
}

.lp-logistics-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.lp-logistics-item span {
    color: rgba(27, 28, 29, 0.82);
}

.lp-logistics-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-logistics-actions .button-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.lp-logistics-actions .button-light:hover,
.lp-logistics-actions .button-light:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.12);
}

.lp-footer {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(15, 28, 40, 0.74);
    color: rgba(255, 255, 255, 0.78);
}

.lp-footer-inner {
    display: grid;
    gap: 10px;
}

.lp-footer-brand {
    font-family: "Libre Caslon Text", Georgia, serif;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lp-footer-copy {
    max-width: 70ch;
}

.lp-footer-meta,
.lp-footer-disclaimer {
    max-width: 76ch;
    margin: 0 auto;
    text-align: center;
}

.lp-footer-meta {
    display: grid;
    gap: 4px;
}

.lp-footer-meta strong {
    color: #ffffff;
}

.lp-footer-meta span {
    display: block;
}

.lp-footer-disclaimer {
    font-size: 0.92rem;
    line-height: 1.7;
}

.lp-footer-signature {
    justify-content: center;
    margin-top: 4px;
}

@media (max-width: 960px) {
    .lp-hero {
        min-height: 64vh;
        padding: 64px 0 72px;
    }

    .lp-header-nav {
        display: none;
    }

    .lp-hero-points,
    .lp-pain-grid,
    .lp-authority-grid {
        grid-template-columns: 1fr;
    }

    .lp-steps {
        grid-template-columns: 1fr;
    }

    .lp-split,
    .lp-split-reverse {
        grid-template-columns: 1fr;
    }

    .lp-media-image,
    .lp-media-portrait {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .services-summary-card,
    .service-card,
    .process-card,
    .cta-box {
        padding-right: 22px;
        padding-left: 22px;
    }

    .services-summary-title {
        font-size: 1.55rem;
    }

    .service-card h3 {
        font-size: 1.55rem;
    }

    .lp-header-inner {
        min-height: 66px;
        gap: 12px;
    }

    .lp-brand {
        gap: 10px;
        font-size: 1.08rem;
    }

    .lp-brand-logo {
        height: 30px;
    }

    .lp-header-cta {
        padding: 10px 14px;
        font-size: 0.78rem;
    }

    .lp-brand-note {
        display: none;
    }

    .lp-headline {
        font-size: clamp(2.1rem, 9vw, 2.9rem);
        line-height: 1.04;
    }

    .lp-subheadline {
        font-size: 1rem;
        line-height: 1.65;
    }

    .lp-actions-row,
    .lp-logistics-actions {
        width: 100%;
        display: grid;
    }

    .lp-cta-primary {
        width: 100%;
        justify-content: center;
    }

    .lp-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

.lp-v2-body .lp-kicker {
    color: #bdf7ea;
}

.lp-v2-body #como-funciona .lp-title,
.lp-v2-body #como-funciona .section-title,
.lp-v2-body #logistica-v2 .lp-title,
.lp-v2-body #logistica-v2 .section-title {
    color: #ffffff;
    text-shadow: 0 12px 30px rgba(5, 10, 16, 0.22);
}

.lp-v2-body #como-funciona .lp-kicker-dark,
.lp-v2-body #logistica-v2 .lp-kicker-dark {
    color: var(--secondary-soft);
}

.lp-v2-body #autoridade-v2 .lp-kicker-dark {
    color: #0a6d5d;
}

.lp-v2-hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 19, 29, 0.88) 0%, rgba(9, 19, 29, 0.70) 34%, rgba(9, 19, 29, 0.34) 60%, rgba(9, 19, 29, 0.18) 100%),
        linear-gradient(180deg, rgba(9, 19, 29, 0.12) 0%, rgba(9, 19, 29, 0.68) 100%);
}

.lp-v2-hero-copy {
    width: min(100%, 760px);
}

.lp-v2-hero-bar {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lp-v2-hero-bar-item {
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 14, 22, 0.42);
    backdrop-filter: blur(10px);
}

.lp-v2-hero-bar-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 6px;
    font-size: 1rem;
}

.lp-v2-hero-bar-item span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.55;
}

.lp-v2-proof {
    padding-top: 48px;
}

.lp-v2-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lp-v2-proof-card {
    padding: 24px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 247, 0.92));
    border: 1px solid rgba(0, 107, 88, 0.08);
    box-shadow: 0 18px 44px rgba(16, 29, 42, 0.08);
}

.lp-v2-proof-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.08rem;
}

.lp-v2-proof-card span {
    color: rgba(27, 28, 29, 0.78);
    line-height: 1.65;
}

.lp-v2-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.lp-v2-benefit-card {
    padding: 26px 24px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at top right, rgba(130, 247, 216, 0.10), transparent 42%),
        rgba(16, 29, 42, 0.52);
    box-shadow: 0 18px 44px rgba(5, 10, 16, 0.22);
}

.lp-v2-benefit-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.18rem;
}

.lp-v2-benefit-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.lp-v2-flow {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.lp-v2-flow-item {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(0, 107, 88, 0.10);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 44px rgba(16, 29, 42, 0.08);
}

.lp-v2-flow-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.lp-v2-flow-item span {
    color: rgba(27, 28, 29, 0.78);
    line-height: 1.65;
}

.lp-v2-stats {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lp-v2-stat {
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 107, 88, 0.10);
    box-shadow: 0 18px 44px rgba(16, 29, 42, 0.08);
}

.lp-v2-stat strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.lp-v2-stat span {
    color: rgba(27, 28, 29, 0.78);
    line-height: 1.6;
}

.lp-v2-decision-box {
    background:
        radial-gradient(circle at top right, rgba(130, 247, 216, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(10, 24, 35, 0.86), rgba(12, 28, 40, 0.92));
}

.lp-v2-actions-center {
    justify-content: center;
}

@media (max-width: 960px) {
    .lp-v2-hero-bar,
    .lp-v2-proof-grid,
    .lp-v2-benefits-grid,
    .lp-v2-stats {
        grid-template-columns: 1fr;
    }
}
