:root {
    --primary: #1F6F68;
    --primary-dark: #185a54;
    --primary-light: #e8f3f2;
    --warm: #F3EEE7;
    --support: #5D7487;
    --cta: #2FA36B;
    --cta-hover: #28965d;
    --text-main: #2B2B2B;
    --text-muted: #4F4F4F;
    --bg-white: #ffffff;
    --border: #e0d9cf;
    --shadow-sm: 0 2px 8px rgb(31 111 104 / 0.06);
    --shadow-md: 0 8px 24px rgb(31 111 104 / 0.1);
    --shadow-lg: 0 16px 40px rgb(31 111 104 / 0.12);
    --transition: 0.3s ease;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --glass: rgb(255 255 255 / 0.72);
    --glass-border: rgb(255 255 255 / 0.55);
    --border-hover-gradient: linear-gradient(135deg, var(--primary) 0%, var(--support) 100%);
    --topbar-height: 3.25rem;
    --font-sans: 'Rubik', system-ui, sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--topbar-height);
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.65;
    background: var(--bg-white);
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10001;
    padding: 0.65rem 1rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: calc(var(--topbar-height) + 0.5rem);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.text-center { text-align: center; }
.bg-surface { background: var(--warm); }

h1, h2, h3, h4 {
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.85rem, 5vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 em {
    font-style: normal;
    color: var(--primary);
}

h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    margin-bottom: 0.75rem;
}

h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--support);
    margin-bottom: 0.5rem;
}

.text-accent {
    color: var(--primary);
}

.section {
    padding: 4.5rem 0;
}

.section-header {
    margin-bottom: 2.75rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
    border-radius: var(--radius-pill);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-tag--light {
    background: rgb(255 255 255 / 0.15);
    color: #fff;
    border: 1px solid rgb(255 255 255 / 0.25);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 0.85rem auto 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--primary), var(--cta));
}

.section-header:not(.text-center) h2::after {
    margin-left: 0;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--left {
    transform: translateX(-32px);
}

.reveal--left.is-visible {
    transform: translateX(0);
}

.reveal--right {
    transform: translateX(32px);
}

.reveal--right.is-visible {
    transform: translateX(0);
}

.reveal--scale {
    transform: translateY(20px) scale(0.97);
}

.reveal--scale.is-visible {
    transform: translateY(0) scale(1);
}

.reveal--fade {
    transform: none;
}

.reveal--fade.is-visible {
    transform: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    font-family: inherit;
}

.btn-large {
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp,
.btn-cta {
    background: var(--cta);
    color: #fff;
    border-color: var(--cta);
}

.btn-whatsapp:hover,
.btn-cta:hover {
    background: var(--cta-hover);
    border-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: var(--bg-white);
    color: var(--primary);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.pulse {
    animation: pulse-cta 2.2s infinite;
}

.pulse-primary {
    animation: pulse-primary 2.2s infinite;
}

@keyframes pulse-cta {
    0% { box-shadow: 0 0 0 0 rgb(47 163 107 / 0.4); }
    70% { box-shadow: 0 0 0 12px rgb(47 163 107 / 0); }
    100% { box-shadow: 0 0 0 0 rgb(47 163 107 / 0); }
}

@keyframes pulse-primary {
    0% { box-shadow: 0 0 0 0 rgb(31 111 104 / 0.35); }
    70% { box-shadow: 0 0 0 12px rgb(31 111 104 / 0); }
    100% { box-shadow: 0 0 0 0 rgb(31 111 104 / 0); }
}

/* Top bar ticker */
.pain-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(105deg, var(--primary-dark) 0%, var(--primary) 55%, var(--support) 100%);
    color: #fff;
    overflow: hidden;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
    box-shadow: var(--shadow-sm);
}

.pain-ticker__viewport {
    position: relative;
    height: var(--topbar-height);
    overflow: hidden;
    width: 100%;
}

.pain-ticker__slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: transform;
}

.pain-ticker__slide.is-running {
    opacity: 1;
    visibility: visible;
}

@keyframes ticker-marquee-pass {
    0% { transform: translate3d(100vw, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.pain-ticker__slide i {
    color: rgb(255 255 255 / 0.9);
    flex-shrink: 0;
}

.pain-ticker__slide strong {
    font-weight: 700;
    flex-shrink: 0;
}

/* Hero */
.hero {
    position: relative;
    padding: calc(var(--topbar-height) + 2.5rem) 0 3rem;
    background: linear-gradient(165deg, var(--warm) 0%, var(--bg-white) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.hero__blob--1 {
    width: 320px;
    height: 320px;
    background: var(--primary);
    top: -80px;
    right: -60px;
}

.hero__blob--2 {
    width: 260px;
    height: 260px;
    background: var(--cta);
    bottom: 10%;
    left: -80px;
    opacity: 0.2;
}

.hero-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.hero-stat {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0.75rem 0.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.hero-stat strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.hero-stat span {
    font-size: 0.68rem;
    color: var(--support);
    font-weight: 500;
    line-height: 1.3;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgb(31 111 104 / 0.2);
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-visual {
    position: relative;
}

.hero-visual__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
}

.hero-visual__frame img {
    width: 100%;
    min-height: 260px;
    object-fit: cover;
}

.hero-visual__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgb(31 111 104 / 0.12) 0%, rgb(31 111 104 / 0.45) 100%);
    pointer-events: none;
}

.floating-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
}

.floating-card--horizontal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    margin-top: -1.75rem;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
    z-index: 2;
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.floating-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.floating-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.floating-card__text strong {
    font-size: 0.95rem;
    color: var(--text-main);
}

.floating-card__text span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Trust bar */
.trust-bar {
    position: relative;
    z-index: 2;
    margin-top: -1.25rem;
    padding: 0 0 1.5rem;
    background: transparent;
}

.trust-bar__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.trust-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.9rem 1.15rem;
    background: var(--bg-white);
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-pill:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.trust-pill i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.trust-pill i::before {
    line-height: 1;
}

/* Cobertura RS */
/* Unidades (RS) — grid + slider interno por card */
.section--units {
    background: var(--bg-white);
}

.section--units .coverage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 auto 1.25rem;
    max-width: 980px;
}

.section--units .coverage-city {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    background: var(--warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.section--units .coverage-city i {
    color: var(--primary);
    font-size: 0.8rem;
}

.section--units .coverage-city:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--primary-light);
}

.section--units .coverage-city--more {
    background: var(--primary-light);
    border-color: rgb(31 111 104 / 0.25);
    color: var(--primary);
}

.section--units .coverage-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--support);
    max-width: 720px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

.units-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

.units-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--support);
    max-width: 640px;
    margin: 1.25rem auto 0;
    line-height: 1.6;
}

.unit-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgb(31 111 104 / 0.25);
}

.unit-slider {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: var(--warm);
}

.unit-slider__track {
    display: flex;
    height: 100%;
    width: 100%;
    transform: translateX(var(--unit-x, 0%));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.unit-slide {
    flex: 0 0 100%;
    height: 100%;
}

.unit-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.unit-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255 / 0.7);
    background: rgb(255 255 255 / 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgb(0 0 0 / 0.12);
    transition: transform 0.2s ease, background 0.2s ease;
}

.unit-slider__btn:hover {
    transform: translateY(-50%) scale(1.05);
    background: #fff;
}

.unit-slider__btn:active {
    transform: translateY(-50%) scale(0.98);
}

.unit-slider__btn--prev { left: 12px; }
.unit-slider__btn--next { right: 12px; }

.unit-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    background: rgb(255 255 255 / 0.7);
    border: 1px solid rgb(255 255 255 / 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.unit-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(93 116 135 / 0.55);
    border: none;
    padding: 0;
    cursor: pointer;
}

.unit-dot.is-active {
    background: var(--primary);
}

.unit-body {
    padding: 1.1rem 1.15rem 1.25rem;
    text-align: left;
}

.unit-city {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.unit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.65rem;
}

.unit-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.unit-pill--rs {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgb(31 111 104 / 0.2);
}

.unit-pill--type {
    background: var(--warm);
    color: var(--support);
    border-color: var(--border);
}

.unit-pill--type.is-feminina {
    background: rgb(47 163 107 / 0.12);
    color: var(--cta-hover);
    border-color: rgb(47 163 107 / 0.22);
}

.unit-pill--type.is-masculina {
    background: rgb(31 111 104 / 0.12);
    color: var(--primary);
    border-color: rgb(31 111 104 / 0.22);
}

.unit-pill--type.is-unissex {
    background: rgb(93 116 135 / 0.12);
    color: var(--support);
    border-color: rgb(93 116 135 / 0.22);
}

/* Pain section */
.subtitle--zoom-chunks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35em 0.5em;
    line-height: 1.55;
    min-height: 3.5em;
}

.subtitle--zoom-chunks .zoom-chunk {
    display: inline-block;
    padding: 0.2em 0.45em;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1),
                color 0.5s ease,
                background-color 0.5s ease;
}

.subtitle--zoom-chunks .zoom-chunk--active {
    transform: scale(1.05);
    color: var(--primary);
    font-weight: 700;
    background: var(--primary-light);
}

.pain-closing {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
}

.pain-closing span {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.pain-card,
.benefit-item,
.testimonial-card,
.faq-item,
.step-card {
    position: relative;
    isolation: isolate;
}

.pain-card::before,
.benefit-item::before,
.testimonial-card::before,
.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--border-hover-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.pain-card:hover::before,
.benefit-item:hover::before,
.testimonial-card:hover::before,
.faq-item:hover::before {
    opacity: 1;
}

.pain-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.pain-card__index {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-light);
    -webkit-text-stroke: 1px rgb(31 111 104 / 0.15);
    pointer-events: none;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pain-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section--dor {
    background: var(--warm);
}

.pain-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 100%);
    border: 1px solid rgb(31 111 104 / 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.pain-cta p {
    color: var(--text-main);
    max-width: 520px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--warm);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.section--benefits {
    background: var(--bg-white);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.benefit-item > i {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--warm);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.pricing-banner {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a857d 100%);
    color: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.pricing-banner::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.08);
    top: -60px;
    right: -40px;
    pointer-events: none;
}

.pricing-banner__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.pricing-banner h3 {
    color: #fff;
    font-size: 1.35rem;
}

.pricing-banner p {
    color: rgb(255 255 255 / 0.85);
    font-size: 0.95rem;
}

/* Steps timeline */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.section--steps {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--warm) 100%);
    position: relative;
}

.steps-timeline {
    position: relative;
}

.step-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.5rem 1.5rem 2.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgb(31 111 104 / 0.25);
}

.step-card__dot {
    position: absolute;
    left: 1rem;
    top: 1.65rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cta);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.step-card__num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 0.35rem;
}

/* Structure 3 cols */
.section--structure {
    background: var(--warm);
}

.structure-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.structure-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.structure-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.structure-card__img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.structure-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.structure-card:hover .structure-card__img img {
    transform: scale(1.08);
}

.structure-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
    background: linear-gradient(180deg, transparent 25%, rgb(24 90 84 / 0.92) 100%);
    color: #fff;
}

.structure-card__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(255 255 255 / 0.85);
    margin-bottom: 0.35rem;
}

.structure-card__overlay h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.structure-card__overlay p {
    color: rgb(255 255 255 / 0.88);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.section--testimonials {
    background: var(--warm);
}

.testimonial-card {
    position: relative;
    background: var(--bg-white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card--featured {
    background: linear-gradient(160deg, var(--primary-light) 0%, var(--bg-white) 100%);
    border-color: rgb(31 111 104 / 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.9;
}

.stars {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    padding-right: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.testimonial-author strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--support);
}

/* CTA banner */
.cta-banner {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 45%, #2a7a72 100%);
    color: #fff;
    overflow: hidden;
}

.cta-banner__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgb(47 163 107 / 0.2);
    filter: blur(80px);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.cta-panel {
    position: relative;
    z-index: 1;
    background: rgb(255 255 255 / 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    box-shadow: 0 24px 48px rgb(0 0 0 / 0.15);
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-panel > p {
    color: rgb(255 255 255 / 0.92);
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

.cta-buttons-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.btn-cta-call {
    background: var(--bg-white);
    color: var(--primary);
    border-color: var(--bg-white);
    width: 100%;
}

.btn-cta-call:hover {
    background: var(--warm);
    color: var(--primary-dark);
    border-color: var(--warm);
}

.btn-cta-whatsapp {
    background: var(--cta);
    color: #fff;
    border-color: var(--cta);
    width: 100%;
}

.btn-cta-whatsapp:hover {
    background: var(--cta-hover);
    border-color: var(--cta-hover);
}

.btn-cta-badge {
    background: rgb(255 255 255 / 0.12);
    color: #fff;
    border-color: rgb(255 255 255 / 0.35);
    width: 100%;
    cursor: default;
}

.cta-alert-box {
    background: rgb(255 255 255 / 0.1);
    border: 1px solid rgb(255 255 255 / 0.25);
    border-radius: var(--radius);
    padding: 1.25rem;
    max-width: 520px;
    margin: 0 auto;
}

.cta-alert-box h4 {
    color: #fff;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.cta-alert-box h4 i {
    color: rgb(255 255 255 / 0.85);
}

.cta-alert-box p {
    color: rgb(255 255 255 / 0.88);
    font-size: 0.9rem;
}

/* FAQ */
.faq-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgb(31 111 104 / 0.2);
}

.section--faq {
    background: var(--warm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--warm);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.25rem 1.1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Form */
.section--form {
    position: relative;
    padding-bottom: 5rem;
}

.form-section__bg {
    position: absolute;
    inset: 0;
    background: url('assets/img/grupo.png') center / cover no-repeat;
    z-index: 0;
}

.form-section__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(243 238 231 / 0.94) 0%, rgb(255 255 255 / 0.97) 100%);
}

.section--form .container {
    position: relative;
    z-index: 1;
}

.container-form {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    border-top: 4px solid var(--cta);
    position: relative;
}

.container-form::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--cta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.35;
    pointer-events: none;
}

.container-form h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.container-form h3 i {
    color: var(--cta);
}

.container-form label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
    color: var(--text-main);
}

.container-form input,
.container-form select {
    width: 100%;
    padding: 0.75rem 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    color: var(--text-main);
    background: var(--warm);
    transition: border-color 0.2s ease;
}

.container-form input:focus,
.container-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

#enviarWhatsApp {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    border: none;
    border-radius: var(--radius);
    background: var(--cta);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

#enviarWhatsApp:disabled {
    background: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
}

#enviarWhatsApp:not(:disabled):hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    position: relative;
    background: var(--primary-dark);
    color: rgb(255 255 255 / 0.88);
    padding: 0 0 0;
    margin-top: 0;
}

.footer-wave {
    color: var(--primary-dark);
    line-height: 0;
    margin-top: -1px;
    background: var(--warm);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 48px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
}

.footer .logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer .logo i {
    color: rgb(255 255 255 / 0.9);
}

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: rgb(255 255 255 / 0.78);
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 0.12);
    padding: 1.25rem;
    font-size: 0.85rem;
}

.footer-credit a {
    color: rgb(255 255 255 / 0.85);
    text-decoration: none;
}

.footer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

/* WhatsApp widget */
.whatsapp-float {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-icon {
    width: 52px;
    height: 52px;
    background: var(--cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.06);
}

.whatsapp-bubble {
    position: absolute;
    bottom: 62px;
    right: 0;
    width: min(260px, calc(100vw - 2rem));
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    overflow: hidden;
    border: 1px solid var(--border);
}

.whatsapp-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-header {
    background: var(--primary);
    color: #fff;
    padding: 0.55rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.whatsapp-close {
    cursor: pointer;
    padding: 0.2rem;
}

.whatsapp-body {
    padding: 0.75rem;
    min-height: 48px;
}

.whatsapp-typing {
    display: flex;
    gap: 4px;
    padding: 0.25rem 0;
}

.whatsapp-typing.hidden {
    display: none;
}

.whatsapp-typing .dot {
    width: 7px;
    height: 7px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing-bounce 1.2s infinite ease-in-out;
}

.whatsapp-typing .dot:nth-child(2) { animation-delay: 0.15s; }
.whatsapp-typing .dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.whatsapp-message {
    font-size: 0.82rem;
    color: var(--text-main);
    line-height: 1.4;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-message.visible {
    opacity: 1;
}

/* Mobile — refinamentos de responsividade */
@media (max-width: 639px) {
    .container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .section {
        padding: 3.25rem 0;
    }

    .hero {
        padding-top: calc(var(--topbar-height) + 1.75rem);
        padding-bottom: 2rem;
    }

    .hero-stats {
        gap: 0.45rem;
    }

    .hero-stat {
        padding: 0.6rem 0.35rem;
    }

    .hero-stat strong {
        font-size: 1rem;
    }

    .hero-stat span {
        font-size: 0.62rem;
    }

    .hero-visual__frame img {
        min-height: 220px;
    }

    .floating-card--horizontal {
        margin-left: 0.65rem;
        margin-right: 0.65rem;
        padding: 0.85rem 1rem;
    }

    .pain-ticker__slide {
        font-size: 0.78rem;
        padding: 0 0.75rem;
    }

    .pain-closing {
        font-size: 1.05rem;
    }

    .pain-closing span {
        font-size: 1.15rem;
    }

    .section--units .coverage-city {
        font-size: 0.8rem;
        padding: 0.45rem 0.75rem;
    }

    .cta-panel {
        padding: 1.75rem 1.1rem;
    }

    .cta-banner h2 {
        font-size: clamp(1.35rem, 5.5vw, 1.65rem);
    }

    .container-form {
        padding: 1.5rem 1.1rem;
        margin-left: 0;
        margin-right: 0;
    }

    .faq-question {
        min-height: 3rem;
        padding: 1rem 1.1rem;
        font-size: 0.92rem;
        text-align: left;
    }

    .faq-question span {
        padding-right: 0.5rem;
    }

    .footer {
        padding-bottom: 5.5rem;
    }

    .footer-bottom {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        bottom: max(1rem, env(safe-area-inset-bottom));
        right: max(1rem, env(safe-area-inset-right));
    }

    .whatsapp-bubble {
        width: min(260px, calc(100vw - 2.5rem));
        right: 0;
    }

    .unit-slider__btn {
        min-width: 44px;
        min-height: 44px;
    }

    .subtitle--zoom-chunks .zoom-chunk {
        white-space: normal;
    }

    .testimonial-card--featured {
        transform: none;
    }
}

@media (max-width: 380px) {
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn-large {
        font-size: 0.95rem;
        padding: 0.9rem 1.15rem;
    }

    .badge {
        font-size: 0.7rem;
    }
}

/* Desktop */
@media (min-width: 640px) {
    .btn-large {
        width: auto;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-buttons .btn-large {
        width: auto;
        flex: 1 1 auto;
        min-width: 200px;
    }

    .trust-bar__inner {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .trust-pill {
        flex: 1 1 auto;
        min-width: 200px;
        max-width: 320px;
    }

    .hero-stats {
        max-width: 420px;
    }

    .pain-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .steps-timeline::before {
        content: '';
        position: absolute;
        top: 2rem;
        bottom: 2rem;
        left: 50%;
        width: 2px;
        background: linear-gradient(180deg, var(--primary-light), var(--primary));
        transform: translateX(-50%);
        opacity: 0.5;
    }

    .structure-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }

    .testimonial-card--featured {
        transform: translateY(-8px);
    }

    .testimonial-card--featured:hover {
        transform: translateY(-12px);
    }

    .cta-buttons-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    .cta-buttons-row .btn,
    .cta-buttons-row .btn-cta-badge {
        width: auto;
        flex: 1 1 200px;
        max-width: 280px;
    }

    body {
        padding-bottom: 0;
    }

    .footer {
        padding-bottom: 0;
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .pricing-banner {
        flex-direction: row;
        text-align: left;
    }

    .units-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1025px) {
    .units-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.35rem;
    }
}

@media (min-width: 900px) {
    .hero-wrap {
        display: grid;
        grid-template-columns: 1fr 1.05fr;
        gap: 3rem;
        align-items: center;
    }

    .hero-visual__overlay {
        background: linear-gradient(90deg, rgb(31 111 104 / 0.55) 0%, rgb(31 111 104 / 0.2) 55%, transparent 100%);
    }

    .floating-card--horizontal {
        position: absolute;
        bottom: 1.25rem;
        left: 1.25rem;
        right: auto;
        margin: 0;
        min-width: 280px;
    }

    .hero-content p {
        max-width: 480px;
    }

    .section {
        padding: 5.5rem 0;
    }

    .section--dor::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    .section--dor {
        position: relative;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .reveal,
    .reveal--left,
    .reveal--right,
    .reveal--scale,
    .reveal--fade {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .pain-ticker__viewport {
        height: auto;
        padding: 0.75rem 0;
    }

    .pain-ticker__slide {
        position: static;
        width: auto;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        animation: none;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        padding: 0.5rem 1rem;
        display: none;
        justify-content: center;
    }

    .pain-ticker__slide:first-child {
        display: inline-flex;
    }

    .subtitle--zoom-chunks .zoom-chunk {
        transition: none;
    }

    .subtitle--zoom-chunks .zoom-chunk--active {
        transform: none;
        font-weight: inherit;
        background: transparent;
        color: inherit;
    }

    .pulse,
    .pulse-primary { animation: none; }

    .floating-card--horizontal {
        animation: none;
    }

    .structure-card:hover .structure-card__img img {
        transform: none;
    }

    .testimonial-card--featured {
        transform: none;
    }

    .unit-slider__track {
        transition: none;
    }
}
