:root {
    --bg-main: #111111;
    --bg-elevated: #181818;
    --bg-panel: #1c1c1c;
    --bg-card: #222222;
    --bg-glass: rgba(34, 34, 34, 0.95);
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --text-dim: #737373;
    --brand-red: #CD0103;
    --cta-green: #22c55e;
    --cta-green-hover: #16a34a;
    --font-main: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius-panel: 32px;
    --radius-card: 22px;
    --radius-sm: 14px;
    --radius-pill: 999px;
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --border-light: 1px solid rgba(255, 255, 255, 0.14);
    --header-h: 84px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-soft: 0 32px 80px rgba(0, 0, 0, 0.45);
    --shadow-float: 0 20px 50px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 1rem;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.65;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animações de entrada — conteúdo sempre visível */
.reveal {
    opacity: 1;
    transform: none;
}

.reveal.is-animated {
    animation: fadeUp 0.9s var(--ease-out) both;
}

.reveal-delay-1.is-animated { animation-delay: 0.1s; }
.reveal-delay-2.is-animated { animation-delay: 0.2s; }
.reveal-delay-3.is-animated { animation-delay: 0.3s; }

@keyframes fadeUp {
    from {
        opacity: 0.4;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

img { display: block; max-width: 100%; }
address { font-style: normal; }
a { color: inherit; text-decoration: none; }

.container { width: min(92%, 1160px); margin-inline: auto; }
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }
.text-center .section-sub a {
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: color 0.3s ease, border-color 0.3s ease;
}
.text-center .section-sub a:hover { color: var(--text-main); }
.highlight {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    color: var(--brand-red);
    letter-spacing: 0;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 600;
    letter-spacing: -0.025em;
}

h1 .highlight,
h2 .highlight,
h3 .highlight {
    font-weight: 700;
}

p, li, label, input, select, textarea, button {
    font-family: var(--font-main);
}

.stat-num,
.stat-num--red,
.btn-pill {
    font-family: var(--font-main);
}

.reveal-delay-4.is-animated { animation-delay: 0.4s; }

/* ─── AMBIENT ─── */
.ambient {
    display: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    will-change: transform;
}

.orb--1 {
    width: 500px; height: 500px;
    top: -120px; right: -80px;
    background: radial-gradient(circle, rgba(205, 1, 3, 0.35), transparent 70%);
    animation: drift 18s var(--ease-out) infinite alternate;
}

.orb--2 {
    width: 400px; height: 400px;
    bottom: 20%; left: -100px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 70%);
    animation: drift 22s var(--ease-out) infinite alternate-reverse;
}

.orb--3 {
    width: 300px; height: 300px;
    top: 45%; right: 10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
    animation: drift 15s var(--ease-out) infinite alternate;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(30px, -20px) scale(1.08); }
}

/* ─── REVEAL (legado — mantido para compatibilidade) ─── */
.reveal.visible,
.reveal.is-animated {
    opacity: 1;
    transform: none;
}

/* ─── FLOAT ANIMATIONS ─── */
[data-float="slow"] { animation: float 7s ease-in-out infinite; }
[data-float="medium"] { animation: float 5s ease-in-out infinite 0.5s; }
[data-float="fast"] { animation: float 4s ease-in-out infinite 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ─── HEADER ─── */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 200;
    padding: 22px 0;
    transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out);
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.header.scrolled {
    padding: 14px 0;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: var(--border);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.logo-link {
    justify-self: start;
    grid-column: 1;
}

.nav {
    grid-column: 2;
    justify-self: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
    grid-column: 3;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: var(--border-light);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out), opacity 0.35s ease, margin 0.35s var(--ease-out);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}

.nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-cta-mobile,
.btn-pill.nav-cta-mobile {
    display: none;
}

.nav a.btn-pill--primary {
    color: #fff;
}

.nav a.btn-pill--primary:hover {
    color: #fff;
}

body.nav-lock {
    overflow: hidden;
}

.logo { height: 32px; width: auto; max-width: 150px; }

.nav {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.nav a {
    color: var(--text-muted);
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav a:hover { color: var(--text-main); }

.btn-pill--header {
    justify-self: end;
    font-size: 0.8rem;
    padding: 10px 20px;
    white-space: nowrap;
}

/* ─── BUTTONS ─── */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 500;
    font-family: var(--font-main);
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: transform 0.35s var(--ease-out), background 0.35s ease, box-shadow 0.35s ease;
}

.btn-pill--primary {
    background: var(--cta-green);
    color: #fff;
    box-shadow: 0 4px 24px rgba(26, 158, 74, 0.2);
}

.btn-pill--primary:hover {
    background: var(--cta-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 158, 74, 0.28);
}

.btn-pill--red {
    background: var(--brand-red);
    color: #fff;
    box-shadow: 0 4px 24px rgba(205, 1, 3, 0.25);
}

.btn-pill--red:hover {
    background: #a80002;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(205, 1, 3, 0.35);
}

.btn-pill--ghost {
    background: transparent;
    color: var(--text-muted);
    border: var(--border-light);
}

.btn-pill--ghost:hover { color: var(--text-main); border-color: rgba(255,255,255,0.2); }
.btn-pill--header {
    background: transparent;
    color: #fff;
    border: var(--border-light);
}
.btn-pill--header:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }
.btn-pill--full { width: 100%; }

/* ─── TYPOGRAPHY ─── */
.eyebrow, .panel-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
    max-width: 480px;
    line-height: 1.7;
}

.section-sub a {
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.section-sub a:hover { color: var(--text-main); border-color: rgba(255,255,255,0.35); }

.section-head { margin-bottom: 48px; }

.section-head--compact {
    margin-bottom: 28px;
}

.section-head--compact h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin-bottom: 0;
}

.why-choose-head-card h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.3;
    margin-bottom: 0;
}

.about-content-col h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 24px;
    line-height: 1.15;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 32px) 0 64px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% top;
}

.container.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero-left,
.hero .hero-form-box {
    min-width: 0;
}

.hero .hero-form-box {
    justify-self: end;
    width: 100%;
    max-width: 380px;
    background: rgba(28, 28, 28, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hero-left {
    max-width: 520px;
}

.hero-left h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    line-height: 1.08;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.hero-left .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 460px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-video-card {
    max-width: 440px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    background: #000;
}

.hero-video-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

/* ─── HERO BENEFITS STRIP ─── */
.hero-benefits {
    position: relative;
    z-index: 1;
    background: var(--bg-elevated);
    border-bottom: var(--border);
    padding: 20px 0;
}

.benefits-list--inline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}

.benefits-list--inline li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: clamp(0.68rem, 1.1vw, 0.82rem);
    color: var(--text-muted);
    text-align: left;
}

.benefit-item {
    position: relative;
    padding: 10px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease, transform 0.4s var(--ease-out);
}

.benefit-item.is-animated {
    animation: benefitIn 0.8s var(--ease-out) both;
}

.benefit-item:hover {
    color: var(--text-main);
    border-color: rgba(205, 1, 3, 0.35);
    background: rgba(205, 1, 3, 0.06);
    transform: translateY(-3px);
}

.benefit-item:hover .benefit-icon {
    color: var(--brand-red);
    border-color: rgba(205, 1, 3, 0.4);
    box-shadow: 0 0 20px rgba(205, 1, 3, 0.15);
}

@keyframes benefitIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── IMPACT QUOTE ─── */
.impact-section {
    position: relative;
    z-index: 1;
    padding: 72px 0;
    background: var(--bg-main);
    border-bottom: var(--border);
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(205, 1, 3, 0.06), transparent 70%);
    pointer-events: none;
}

.impact-quote {
    position: relative;
    margin: 0;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.025em;
    max-width: 900px;
    margin-inline: auto;
}

.impact-quote.is-animated {
    animation: impactReveal 1.2s var(--ease-out) both;
}

/* ─── MARQUEE ─── */
.marquee {
    overflow: hidden;
    width: 100%;
    padding: 8px 0 24px;
}

.marquee__track {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
    gap: 12px;
    animation: marqueeScroll 50s linear infinite;
    will-change: transform;
}

.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
    animation-play-state: paused;
}

.marquee__item {
    margin: 0;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: var(--border-light);
    box-shadow: var(--shadow-float);
    background: #111;
}

.marquee--results .marquee__item {
    width: 140px;
    height: 249px;
}

.marquee--results .marquee__item img {
    display: block;
    width: 140px;
    height: 249px;
    object-fit: cover;
}

.marquee--reviews .marquee__item.review-mockup {
    width: 340px;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.marquee--reviews .marquee__track {
    animation-duration: 60s;
}

/* ─── REVIEW MOCKUPS ─── */
.review-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-float);
    text-align: left;
}

.review-mockup__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-mockup__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a5a3a, #1e3d28);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    flex-shrink: 0;
}

.review-mockup__name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.review-mockup__meta {
    display: block;
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.review-mockup__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.review-mockup__stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.review-mockup__stars span {
    display: flex;
}

.review-mockup__date {
    font-size: 0.72rem;
    color: var(--text-dim);
}

.review-mockup__text {
    font-size: 0.84rem;
    line-height: 1.65;
    color: #d4d4d4;
    font-weight: 400;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.social-proof {
    padding-bottom: 64px;
}

.reviews-section {
    padding-bottom: 80px;
}

@keyframes impactReveal {
    from {
        opacity: 0;
        transform: translateY(28px);
        letter-spacing: 0.02em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.03em;
    }
}

.benefit-icon,
.feature-icon,
.feature-card-icon,
.stat-icon,
.contact-icon,
.carousel-btn span,
.review-stars span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon,
.feature-icon,
.feature-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-red);
    border: var(--border);
}

.benefits-list--inline .benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

/* ─── FORM ─── */
.hero-form-box {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    box-shadow: var(--shadow-float);
}

.form-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-progress { margin-bottom: 20px; }

.form-progress-bar {
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin-bottom: 8px;
}

.form-progress-fill {
    height: 100%;
    width: 50%;
    background: var(--cta-green);
    transition: width 0.6s var(--ease-out);
}

.form-progress-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.form-step--active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.form-step--exit {
    display: block;
    opacity: 0;
    transform: translateX(-12px);
}

.form-step-intro {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 400;
}

.form-group { margin-bottom: 14px; }

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}

select, input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    background: #2a2a2a;
    border: var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.9rem;
    font-family: var(--font-main);
    font-weight: 400;
    appearance: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

select option { background: #111; }

select:focus, input:focus {
    outline: none;
    border-color: rgba(26, 158, 74, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

.field-error { border-color: rgba(205, 1, 3, 0.5) !important; }

.form-actions {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 10px;
}

/* ─── FEATURE CARDS ─── */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    box-shadow: var(--shadow-float);
    transition: transform 0.5s var(--ease-out), border-color 0.5s ease, background 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    background: #282828;
}

.feature-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
}

.feature-card p {
    font-size: 0.86rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── FLOATING ACCENTS ─── */
.float-badge {
    position: absolute;
    z-index: 2;
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    box-shadow: var(--shadow-float);
}

.float-badge--section {
    top: 60px;
    right: 8%;
}

.float-badge__num {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1;
}

.float-badge__label {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.float-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.float-accent--left {
    left: -60px;
    top: 30%;
    animation: float 9s ease-in-out infinite;
}

/* ─── PANEL SECTIONS ─── */
.panel-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.panel-section--alt {
    background: var(--bg-elevated);
    border-top: var(--border);
    border-bottom: var(--border);
}

.panel-section--cta {
    background: linear-gradient(180deg, #1e1e1e, #181818);
    border-top: var(--border);
}

/* ─── CAROUSEL ─── */
.carousel {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-card);
    border: var(--border-light);
    box-shadow: var(--shadow-soft);
}

.carousel-track {
    display: flex;
    transition: transform 0.7s var(--ease-out);
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 520px;
    border: none;
    padding: 0;
    background: #0a0a0a;
    cursor: zoom-in;
    font: inherit;
    color: inherit;
}

.carousel-slide--clickable {
    position: relative;
    overflow: hidden;
}

.carousel-slide--clickable::after {
    content: 'Clique para ampliar';
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-pill);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-slide--clickable:hover::after {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
}

.carousel--loop .carousel-track {
    transition: transform 0.7s var(--ease-out);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: var(--border-light);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn--prev { left: -22px; }
.carousel-btn--next { right: -22px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.is-active {
    background: var(--brand-red);
    transform: scale(1.3);
}

/* ─── WHY CHOOSE ─── */
.why-choose-layout {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: 0 48px;
    position: relative;
    align-items: start;
}

.why-choose-photo {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: var(--border-light);
    aspect-ratio: 3 / 4;
}

.why-choose-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.why-choose-head-card {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    z-index: 2;
    margin: 24px 0 0 clamp(28%, 32vw, 38%);
    padding: 28px 32px;
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.why-choose-right {
    grid-column: 2;
    grid-row: 2;
    padding-top: 24px;
}

.feature-row {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: var(--border);
    transition: padding-left 0.4s var(--ease-out);
}

.feature-row:last-child { border-bottom: none; }
.feature-row:hover { padding-left: 8px; }

.feature-icon { width: 40px; height: 40px; }

.feature-text p {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── ABOUT ─── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-photo {
    margin: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: var(--border-light);
}

.about-photo img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-photo--main img {
    aspect-ratio: 3 / 4;
    min-height: 480px;
}

.about-photo--overlap {
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 48%;
    border: 3px solid var(--bg-main);
    box-shadow: var(--shadow-soft);
}

.about-photo--overlap img {
    aspect-ratio: 1;
}

.about-content-col p {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.contact-list--about {
    margin-top: 24px;
    margin-bottom: 0;
}

.about-stats-inline {
    margin-top: 36px;
    margin-bottom: 32px;
}

.about-stats__eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num--red,
.stat-num.stat-num--red {
    display: block;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: var(--brand-red);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0;
}

.stat-item .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.about-content-col .btn-pill--red {
    display: inline-flex;
    min-width: 220px;
}

.contact-list {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
}

.contact-icon { color: var(--brand-red); margin-top: 2px; }
.contact-list a:hover { color: var(--text-main); }

/* ─── STATS ─── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-card);
    transition: transform 0.5s var(--ease-out);
}

.stat-card:hover { transform: translateY(-4px); }

.stat-icon {
    justify-content: center;
    color: var(--brand-red);
    margin-bottom: 16px;
    opacity: 0.8;
}

.stat-num {
    display: block;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ─── GOOGLE REVIEWS ─── */
.google-reviews {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
    max-width: 960px;
    margin-inline: auto;
}

.google-reviews__embed {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: var(--border-light);
    min-height: 360px;
}

.google-reviews__embed iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.google-reviews__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 32px 28px;
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-card);
}

.google-reviews__badge {
    display: flex;
    align-items: center;
    gap: 14px;
}

.google-reviews__g {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #4285f4;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
}

.google-reviews__badge strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.google-reviews__badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.google-reviews__copy {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

.google-reviews__link {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
    transition: color 0.3s ease;
}

.google-reviews__link:hover { color: var(--text-main); }

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.lightbox[hidden] { display: none; }

.lightbox__img {
    max-width: min(92vw, 480px);
    max-height: 90vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: var(--border-light);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.12); }

/* ─── FINAL CTA ─── */
.horizontal-form-bar {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-card);
    padding: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.inline-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.inline-form input,
.inline-form select {
    flex: 1;
    min-width: 120px;
}

.inline-form .btn-pill {
    width: auto;
    flex-shrink: 0;
    padding: 14px 24px;
}

/* ─── FOOTER ─── */
.footer {
    position: relative;
    z-index: 1;
    border-top: var(--border);
    padding: 48px 0 0;
    background: var(--bg-elevated);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 1;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 32px;
}

.footer-contact {
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 360px;
}

.footer-contact address {
    margin-bottom: 6px;
}

.footer-contact a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--text-main);
}

.footer-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: var(--border-light);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    line-height: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-social__link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.footer-social__link svg {
    display: block;
    width: 20px;
    height: 20px;
}

.footer-social__link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social__link:hover [data-icon="whatsapp"] {
    color: #25d366;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-main);
}

.footer-bottom {
    border-top: var(--border);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee__track {
        animation: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .container.hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
        gap: 32px;
    }

    .hero-left {
        max-width: none;
    }

    .hero-video-card {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-h: 72px;
    }

    .header {
        padding: 16px 0;
    }

    .header.scrolled {
        padding: 12px 0;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .header-actions .btn-pill--header {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 201;
        display: flex;
        flex-direction: column;
        width: min(88vw, 320px);
        height: 100dvh;
        height: 100vh;
        padding: calc(var(--header-h) + max(24px, env(safe-area-inset-top))) 28px max(32px, env(safe-area-inset-bottom));
        gap: 0;
        background: rgba(24, 24, 24, 0.98);
        border-left: var(--border);
        box-shadow: -24px 0 64px rgba(0, 0, 0, 0.45);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header.nav-open .nav {
        transform: translateX(0);
    }

    .header.nav-open .nav-toggle__bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .header.nav-open .nav-toggle__bar:nth-child(2) {
        opacity: 0;
    }

    .header.nav-open .nav-toggle__bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav a:not(.btn-pill) {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
        color: var(--text-main);
        border-bottom: var(--border);
    }

    .nav a:not(.btn-pill):hover {
        color: var(--brand-red);
    }

    .nav-cta-mobile,
    .btn-pill.nav-cta-mobile {
        display: inline-flex;
        width: 100%;
        margin-top: 24px;
    }

    .header.nav-open .header-actions {
        position: relative;
        z-index: 202;
    }

    .header.nav-open .nav-toggle {
        background: rgba(255, 255, 255, 0.08);
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-h) + 20px) 0 48px;
    }

    .hero-bg__img {
        object-position: 62% top;
    }

    .container.hero-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-left {
        max-width: none;
        text-align: center;
    }

    .hero-left .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-video-card {
        margin: 0 auto;
        max-width: min(100%, 480px);
    }

    .hero .hero-form-box {
        justify-self: stretch;
        max-width: 520px;
        margin-inline: auto;
    }

    .panel-section {
        padding: 72px 0;
    }

    .impact-section {
        padding: 56px 0;
    }

    .float-badge--section {
        display: none;
    }

    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-choose-photo {
        grid-row: auto;
        grid-column: 1;
        max-width: min(100%, 380px);
        margin-inline: auto;
    }

    .why-choose-head-card {
        margin: 0;
        grid-column: 1;
        grid-row: auto;
        padding: 24px;
    }

    .why-choose-right {
        grid-column: 1;
        padding-top: 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        max-width: min(100%, 420px);
        margin-inline: auto;
    }

    .about-photo--overlap {
        right: 0;
        bottom: -16px;
        width: 44%;
    }

    .about-photo--main img {
        min-height: 360px;
    }

    .about-content-col {
        text-align: left;
    }

    .about-content-col .btn-pill--red {
        width: 100%;
        max-width: 320px;
    }

    .stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

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

    .horizontal-form-bar {
        padding: 14px;
    }

    .inline-form {
        flex-direction: column;
        align-items: stretch;
    }

    .inline-form input,
    .inline-form select {
        min-width: 0;
        width: 100%;
        flex: none;
    }

    .inline-form .btn-pill {
        width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 28px;
    }

    .footer-aside {
        align-items: flex-start;
        width: 100%;
    }

    .carousel-btn--prev {
        left: 8px;
    }

    .carousel-btn--next {
        right: 8px;
    }
}

@media (max-width: 768px) {
    .header {
        padding-top: max(14px, env(safe-area-inset-top));
    }

    .logo {
        height: 28px;
        max-width: 130px;
    }

    .hero-left h1 {
        font-size: clamp(1.85rem, 7vw, 2.4rem);
    }

    .hero-left .subtitle {
        font-size: 0.92rem;
    }

    .hero .hero-form-box,
    .hero-form-box {
        padding: 24px 20px;
    }

    select,
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        font-size: 16px;
    }

    .panel-section {
        padding: 56px 0;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .social-proof,
    .reviews-section {
        padding-bottom: 56px;
    }

    .impact-quote {
        font-size: clamp(1.45rem, 5.5vw, 1.9rem);
    }

    .feature-row {
        gap: 14px;
        padding: 20px 0;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .about-photo--main img {
        min-height: 300px;
    }

    .about-stats-inline {
        margin-top: 28px;
        margin-bottom: 24px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
        padding-bottom: 16px;
        border-bottom: var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .stat-num--red,
    .stat-num.stat-num--red {
        min-width: 5.5rem;
        flex-shrink: 0;
    }

    .marquee--results .marquee__item {
        width: 120px;
        height: 214px;
    }

    .marquee--results .marquee__item img {
        width: 120px;
        height: 214px;
    }

    .marquee--reviews .marquee__item.review-mockup {
        width: min(82vw, 300px);
    }

    .review-mockup {
        padding: 16px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-main {
        gap: 24px;
    }

    .legal-main {
        padding: 40px 0 56px;
    }

    .legal-content h1 {
        font-size: 1.65rem;
    }

    .thanks-page {
        padding: 32px 0 48px;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-cta {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    :root {
        --header-h: 68px;
    }

    .container {
        width: min(94%, 1160px);
    }

    .hero {
        padding-bottom: 40px;
    }

    .hero-bg__img {
        object-position: 68% top;
    }

    .hero-left h1 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .hero .hero-form-box,
    .hero-form-box {
        padding: 22px 16px;
    }

    .form-header h2 {
        font-size: 1.15rem;
    }

    .form-actions {
        grid-template-columns: 1fr;
    }

    .benefits-list--inline {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .benefits-list--inline li {
        justify-content: flex-start;
        font-size: 0.8rem;
    }

    .benefit-item {
        padding: 12px 14px;
    }

    .hero-benefits {
        padding: 16px 0;
    }

    .impact-section {
        padding: 44px 0;
    }

    .impact-quote {
        font-size: 1.35rem;
        line-height: 1.35;
    }

    .why-choose-head-card {
        padding: 20px 18px;
    }

    .why-choose-head-card h2 {
        font-size: 1.2rem;
    }

    .feature-text p {
        font-size: 0.86rem;
    }

    .about-photo--overlap {
        width: 48%;
        bottom: -10px;
    }

    .about-content-col h2 {
        font-size: 1.55rem;
    }

    .about-content-col .btn-pill--red {
        max-width: none;
    }

    .panel-section--cta h2 {
        font-size: 1.5rem;
    }

    .horizontal-form-bar {
        border-radius: var(--radius-sm);
        padding: 12px;
    }

    .footer-aside {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-social {
        width: 100%;
    }

    .footer-bottom {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    .legal-header .container {
        flex-wrap: wrap;
    }

    .legal-back {
        width: 100%;
        text-align: right;
    }
}

/* ─── THANK YOU PAGE ─── */
.page-thanks {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thanks-page {
    flex: 1;
    display: flex;
    align-items: center;
    padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 8vw, 96px);
}

.thanks-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(40px, 6vw, 56px);
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
}

.thanks-video {
    width: 100%;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: var(--border-light);
    box-shadow: var(--shadow-soft);
    background: #000;
}

.thanks-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.thanks-content {
    width: 100%;
    max-width: 560px;
    text-align: center;
}

.thanks-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin-bottom: 16px;
}

.thanks-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 12px;
}

.thanks-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-note {
    font-size: 0.88rem !important;
    color: var(--text-dim) !important;
    margin-bottom: 28px !important;
}

.thanks-cta {
    display: inline-flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto 28px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
}

.thanks-cta [data-icon="whatsapp"] {
    display: flex;
    color: #fff;
}

.thanks-complement {
    font-size: 0.88rem !important;
    line-height: 1.75 !important;
    margin-bottom: 24px !important;
}

.thanks-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    border: var(--border-light);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.thanks-instagram [data-icon="instagram"] {
    display: flex;
    color: var(--text-main);
}

.thanks-instagram:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.thanks-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 0 24px;
    border-top: var(--border);
}

.thanks-logo-link {
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.thanks-logo-link:hover {
    opacity: 1;
}

.thanks-logo {
    height: 28px;
    width: auto;
}

.thanks-footer__copy {
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.footer--minimal {
    padding-top: 0;
}

/* ─── LEGAL PAGES ─── */
.page-legal {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-header {
    padding: 24px 0;
    border-bottom: var(--border);
    background: var(--bg-elevated);
}

.legal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.legal-header__logo {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.legal-header__logo:hover {
    opacity: 1;
}

.legal-back {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.legal-back:hover {
    color: var(--text-main);
}

.legal-main {
    flex: 1;
    padding: 56px 0 72px;
}

.legal-content {
    max-width: 720px;
}

.legal-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 12px;
}

.legal-content .legal-updated {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.1rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.legal-content p,
.legal-content li {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-content ul {
    padding-left: 1.25rem;
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--brand-red);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--text-main);
}
    padding-top: 0;
}
