/* ==========================================================================
   DESIGN TOKENS — Baseado no Figma CAOS
   ========================================================================== */
:root {
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F5F5F5;
    --gray-100: #EEEEEE;
    --gray-200: #E0E0E0;
    --gray-300: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --black: #1A1A1A;

    --green: #00C853;
    --green-light: #B9F6CA;
    --green-bg: #E8F5E9;
    --green-dark: #00A344;
    --green-glow: rgba(0, 200, 83, 0.2);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;

    --max-w: 1200px;
    --header-h: 64px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
::selection { background: var(--green); color: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
.text-center { text-align: center; }

/* ==========================================================================
   INLINE GREEN BADGE (como no Figma — pílula verde inline no texto)
   ========================================================================== */
.green-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 28px;
    background: var(--green);
    border-radius: 14px;
    vertical-align: middle;
    margin: 0 4px;
}
.green-pill-lg {
    width: 44px;
    height: 32px;
    border-radius: 16px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    padding: 14px 28px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-green:hover { background: var(--green-dark); box-shadow: 0 8px 24px var(--green-glow); }

.btn-white {
    background: var(--white);
    color: var(--green);
    font-weight: 700;
}
.btn-white:hover { background: var(--green-bg); }

.btn-dark {
    background: var(--black);
    color: var(--white);
}
.btn-dark:hover { background: #333; }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn .icon-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.btn:hover .icon-arrow { transform: translateX(3px); }

/* ==========================================================================
   HEADER — Estilo Figma (logo + countdown + hamburger)
   ========================================================================== */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    height: var(--header-h);
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}
.header.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-logo { height: 36px; width: auto; object-fit: contain; display: block; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
}

/* Header countdown (como no Figma) */
.header-countdown {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
}
@media (min-width: 768px) { .header-countdown { display: flex; } }
.header-countdown .cd-num {
    background: var(--gray-50);
    padding: 4px 8px;
    border-radius: 4px;
    font-variant-numeric: tabular-nums;
    min-width: 28px;
    text-align: center;
}
.header-countdown .cd-sep { color: var(--gray-300); }

.nav-menu { display: none; align-items: center; gap: 24px; }
.nav-link { font-size: 0.8125rem; font-weight: 500; color: var(--gray-700); transition: color 0.2s; }
.nav-link:hover { color: var(--green); }
.header-cta { display: none; }
.menu-toggle { display: flex; align-items: center; color: var(--black); }

@media (min-width: 768px) {
    .nav-menu { display: flex; }
    .header-cta { display: inline-flex; }
    .menu-toggle { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--white);
    z-index: 90;
    padding: 32px 20px;
    flex-direction: column;
    gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.125rem; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ==========================================================================
   HERO — Estilo Figma (texto grande com green pills inline)
   ========================================================================== */
.hero {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero { padding-top: calc(var(--header-h) + 60px); padding-bottom: 60px; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.hero-content { position: relative; z-index: 1; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--black);
}
.hero-title .accent {
    color: var(--green);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }

.hero-trust {
    display: flex; align-items: center; gap: 6px; margin-top: 8px;
}
.hero-trust .material-symbols-outlined { font-size: 14px; color: var(--green); }
.hero-trust span { font-size: 0.75rem; color: var(--gray-500); }

/* Hero image + floating card */
.hero-image-wrapper { position: relative; display: flex; justify-content: center; }
.hero-img-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }

.hero-float-card {
    position: absolute;
    bottom: -12px; right: 0;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex; align-items: center; gap: 10px;
}
.hero-float-card .material-symbols-outlined { font-size: 24px; color: var(--green); }
.hero-float-title { font-weight: 600; font-size: 0.8125rem; }
.hero-float-sub { font-size: 0.625rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }

@media (min-width: 768px) {
    .hero-float-card { right: -16px; bottom: -16px; }
}

/* Workshop Info Card (como no Figma — card lateral com countdown) */
.hero-info-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-top: 24px;
}
@media (min-width: 1024px) {
    .hero-info-card { margin-top: 0; }
}

.hero-info-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.hero-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.hero-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--gray-700);
}
.hero-info-list .material-symbols-outlined {
    font-size: 18px;
    color: var(--green);
}

/* Countdown grande (como no Figma) */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}
.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.cd-value {
    background: var(--black);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    min-width: 48px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
.cd-label {
    font-size: 0.625rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cd-colon {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-300);
    margin-bottom: 18px;
}

/* ==========================================================================
   DESTAQUES — 3 cards como no Figma
   ========================================================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .highlights-grid { grid-template-columns: repeat(3, 1fr); }
}

.highlight-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.highlight-card:hover {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.highlight-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    background: var(--gray-50);
}
.highlight-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.highlight-card p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ==========================================================================
   MARQUEE — Faixa preta com texto rolante (como no Figma)
   ========================================================================== */
.marquee-section {
    background: var(--black);
    padding: 14px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    white-space: nowrap;
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.marquee-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   BÔNUS — Cards como no Figma
   ========================================================================== */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(3, 1fr); } }

.bonus-card {
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    background: var(--white);
    display: flex; flex-direction: column;
    transition: all 0.3s ease;
}
.bonus-card:hover {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.bonus-icon {
    width: 48px; height: 48px;
    background: var(--green-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.bonus-icon .material-symbols-outlined { font-size: 24px; color: var(--green); }

.bonus-card h4 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.bonus-card p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
    flex: 1;
}
.bonus-value {
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-300);
    text-decoration: line-through;
}

/* ==========================================================================
   GREEN CTA BANNER — Como no Figma (fundo verde com texto grande)
   ========================================================================== */
.cta-banner {
    background: var(--green);
    padding: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .cta-banner { padding: 64px 0; } }

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative SVG curves (como no Figma — curvas orgânicas verdes) */
.deco-curve {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   10 CONSEQUÊNCIAS — Grid numerado como no Figma
   ========================================================================== */
.consequences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .consequences-grid { grid-template-columns: repeat(2, 1fr); }
}

.consequence-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    background: var(--white);
    transition: all 0.3s ease;
}
.consequence-card:hover {
    border-color: var(--green);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.consequence-num {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: var(--green-bg);
    color: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
}
.consequence-card h4 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.consequence-card p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* ==========================================================================
   PRICING — Cards de lote como no Figma
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card-primary {
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
}
.pricing-card-secondary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--gray-200);
}

.pricing-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.pricing-card-primary .pricing-label { color: rgba(255,255,255,0.8); }
.pricing-card-secondary .pricing-label { color: var(--gray-500); }

.pricing-installment {
    font-size: 0.8125rem;
    margin-bottom: 4px;
}
.pricing-card-primary .pricing-installment { color: rgba(255,255,255,0.8); }

.pricing-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-card-primary .pricing-value { color: var(--white); }
.pricing-card-secondary .pricing-value { color: var(--green); }

.pricing-cash {
    font-size: 0.75rem;
    margin-bottom: 20px;
}
.pricing-card-primary .pricing-cash { color: rgba(255,255,255,0.7); }
.pricing-card-secondary .pricing-cash { color: var(--gray-500); }

.pricing-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8125rem;
    line-height: 1.4;
}
.pricing-features .material-symbols-outlined {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.pricing-card-primary .pricing-features .material-symbols-outlined { color: var(--white); }
.pricing-card-secondary .pricing-features .material-symbols-outlined { color: var(--green); }

.pricing-card .btn { width: 100%; }

/* ==========================================================================
   QUEM SOMOS — Seção com foto circular (como no Figma)
   ========================================================================== */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.about-person {
    text-align: center;
    max-width: 200px;
}
.about-photo {
    width: 140px; height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--green-bg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.about-person h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.about-person p {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

/* ==========================================================================
   FAQ — Accordion como no Figma
   ========================================================================== */
.faq-container { max-width: 700px; margin: 0 auto; }
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.3s ease;
}
.accordion-item.active { border-color: var(--green); }

.accordion-header {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px;
    text-align: left;
    transition: background 0.2s ease;
    font-size: 0.875rem;
}
.accordion-header:hover { background: var(--gray-50); }
.accordion-title { font-weight: 600; color: var(--black); padding-right: 16px; }
.accordion-icon { color: var(--green); transition: transform 0.3s ease; flex-shrink: 0; }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.accordion-inner { padding: 0 20px 18px; color: var(--gray-600); line-height: 1.6; font-size: 0.875rem; }

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--black);
}
.section-header p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================================================
   FINAL CTA — Fundo escuro como no Figma
   ========================================================================== */
.final-cta {
    background: var(--black);
    padding: 64px 0;
    text-align: center;
}
.final-cta h2 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 12px;
}
.final-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-logo-text { font-family: var(--font-display); font-size: 1rem; color: var(--white); font-weight: 700; }
.footer-copy { font-size: 0.6875rem; color: rgba(255,255,255,0.3); margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer-link { font-size: 0.75rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-link:hover { color: var(--green); }

/* ==========================================================================
   DECORATIVE SVG ELEMENTS (curvas orgânicas verdes do Figma)
   ========================================================================== */
.deco-svg {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.deco-svg path {
    fill: none;
    stroke: var(--green-light);
    stroke-width: 3;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(25px); }
.reveal-left { transform: translateX(-25px); }
.reveal-right { transform: translateX(25px); }
.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1; transform: translate(0, 0);
}
.stagger-1 { transition-delay: 80ms; }
.stagger-2 { transition-delay: 160ms; }
.stagger-3 { transition-delay: 240ms; }
.stagger-4 { transition-delay: 320ms; }
.stagger-5 { transition-delay: 400ms; }

/* Method section grid responsive */
@media (min-width: 1024px) {
    #method .container > div { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
    width: 8px; height: 8px; margin: -4px 0 0 -4px;
    background: var(--green);
    position: fixed; top: 0; left: 0;
    border-radius: 50%; pointer-events: none; z-index: 10000;
    transition: width 0.2s, height 0.2s, margin 0.2s, opacity 0.2s;
    will-change: transform;
}
.cursor-outline {
    width: 32px; height: 32px; margin: -16px 0 0 -16px;
    border: 2px solid var(--green);
    position: fixed; top: 0; left: 0;
    border-radius: 50%; pointer-events: none; z-index: 9999;
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s, margin 0.2s, background-color 0.2s, border-color 0.2s;
    will-change: transform;
}
.cursor-hover .cursor-dot { opacity: 0; }
.cursor-hover .cursor-outline {
    width: 50px; height: 50px; margin: -25px 0 0 -25px;
    background: rgba(0,200,83,0.12); border-color: rgba(0,200,83,0.35);
}
.cursor-dot, .cursor-outline { display: none; }
@media (pointer: fine) and (hover: hover) {
    .cursor-dot, .cursor-outline { display: block; }
    body, a, button, .accordion-header { cursor: none; }
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed; inset: 0;
    background: var(--white);
    z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--gray-100);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   OFFER STACK (empilhamento de valor)
   ========================================================================== */
.offer-stack {
    max-width: 600px;
    margin: 0 auto 40px;
}
.offer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}
.offer-row:last-child { border-bottom: none; }
.offer-row span:last-child {
    text-decoration: line-through;
    color: var(--gray-300);
    font-weight: 500;
}
.offer-total { font-weight: 700; font-size: 1.125rem; }
.offer-total span:last-child { color: #dc2626; font-size: 1.25rem; }

/* ==========================================================================
   GUARANTEE
   ========================================================================== */
.guarantee-card {
    border: 2px solid var(--green);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}
.guarantee-card .material-symbols-outlined { font-size: 48px; color: var(--green); margin-bottom: 16px; }
.guarantee-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.guarantee-card p { color: var(--gray-600); margin-bottom: 20px; line-height: 1.6; font-size: 0.9375rem; }

/* ==========================================================================
   MOBILE SPECIFIC ADJUSTMENTS (< 768px)
   ========================================================================== */
@media (max-width: 767px) {
    .cursor-dot, .cursor-outline {
        display: none !important;
    }
    body, a, button, .accordion-header {
        cursor: auto !important;
    }

    .green-pill {
        width: 24px;
        height: 18px;
        border-radius: 9px;
        margin: 0 2px;
    }

    .hero-actions {
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.9375rem;
        padding: 15px 16px;
    }

    .hero-img-container {
        max-width: 320px;
        aspect-ratio: 4/5;
        border-radius: 16px;
        margin: 0 auto;
    }

    .hero-float-card {
        bottom: -10px;
        right: 10px;
        padding: 10px 14px;
    }

    .brand-logo {
        height: 32px;
    }
    .brand-name {
        font-size: 0.875rem;
    }
}

