  @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;900&display=swap');

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

  :root {
    --verde:   #009c3b;
    --verde2:  #007a2f;
    --amarelo: #FFDF00;
    --azul:    #002776;
    --branco:  #ffffff;
    --cinza:   #f2f2f2;
    --texto:   #111111;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: var(--branco);
    overflow-x: hidden;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #002776 0%, #001540 40%, #007a2f 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
  }

  /* grass lines decoration */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        180deg,
        transparent,
        transparent 48px,
        rgba(255,255,255,0.03) 48px,
        rgba(255,255,255,0.03) 96px
      );
    pointer-events: none;
  }

  /* circle arc glow */
  .hero::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(255,223,0,0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

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

  .hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amarelo);
    background: rgba(255,223,0,0.1);
    border: 1px solid rgba(255,223,0,0.3);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 28px;
    display: inline-block;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 12vw, 130px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: var(--branco);
    margin-bottom: 8px;
  }

  .hero h1 span {
    color: var(--amarelo);
    display: block;
  }

  .hero-sub {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 24px auto 0;
    line-height: 1.5;
  }

  .hero-sub strong { color: var(--amarelo); font-weight: 700; }

  /* bingo card preview - corrigido para não estourar o layout */
  .card-preview {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 5px;
    width: min(390px, calc(100vw - 32px));
    max-width: 100%;
    margin: 44px auto 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,223,0,0.32);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.24);
    backdrop-filter: blur(8px);
    overflow: hidden;
  }

  .card-preview > * {
    min-width: 0;
    max-width: 100%;
  }

  .card-preview .col-header {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 4vw, 26px);
    line-height: 1;
    color: var(--amarelo);
    text-align: center;
  }

  .bingo-cell {
    width: 100%;
    min-width: 0;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    font-size: clamp(7px, 1.6vw, 9.2px);
    font-weight: 800;
    line-height: 1.08;
    text-align: center;
    color: rgba(255,255,255,0.88);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .bingo-cell.free {
    background: var(--verde);
    border-color: rgba(255,223,0,0.35);
    color: var(--amarelo);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(14px, 3.8vw, 19px);
    letter-spacing: 0.02em;
  }

  .bingo-cell.marked {
    background: rgba(255,223,0,0.18);
    border-color: rgba(255,223,0,0.72);
    color: var(--amarelo);
  }

  /* ─── PRICE HERO ─── */
  .price-hero {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .price-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--amarelo);
    line-height: 1;
  }

  .price-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .cta-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--amarelo);
    color: #000;
    font-weight: 900;
    font-size: 18px;
    padding: 18px 48px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 8px 32px rgba(255,223,0,0.35);
    letter-spacing: 0.01em;
  }

  .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255,223,0,0.5);
  }

  .cta-btn-final {
    font-size: 20px;
    padding: 20px 56px;
  }

  .cta-note {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 10px;
  }

  /* ─── PROBLEM ─── */
  .section-problem {
    background: #0f0f0f;
    padding: 80px 24px;
    text-align: center;
  }

  .section-problem h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    color: var(--branco);
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.05;
  }

  .section-problem p {
    color: rgba(255,255,255,0.55);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ─── HOW IT WORKS ─── */
  .section-how {
    background: linear-gradient(180deg, #0f0f0f 0%, #001a0f 100%);
    padding: 80px 24px;
  }

  .section-how h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 58px);
    text-align: center;
    color: var(--branco);
    margin-bottom: 56px;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
  }

  .step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s;
  }

  .step:hover { border-color: rgba(255,223,0,0.3); }

  .step-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
  }

  .step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--amarelo);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
  }

  .step p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }

  /* ─── WHAT'S INSIDE ─── */
  .section-inside {
    background: #0a0a0a;
    padding: 80px 24px;
  }

  .section-inside h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 58px);
    text-align: center;
    color: var(--branco);
    margin-bottom: 48px;
  }

  .items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 48px;
  }

  .item-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(0,156,59,0.08);
    border: 1px solid rgba(0,156,59,0.2);
    border-radius: 14px;
    padding: 20px 20px;
  }

  .item-check {
    width: 28px;
    height: 28px;
    background: var(--verde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 900;
  }

  .item-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--branco);
    line-height: 1.4;
  }

  .item-text span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
  }

  /* ─── SAMPLE SQUARES ─── */
  .section-squares {
    background: linear-gradient(180deg, #001a0f 0%, #001540 100%);
    padding: 80px 24px;
    text-align: center;
  }

  .section-squares h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 58px);
    color: var(--branco);
    margin-bottom: 12px;
  }

  .section-squares .sub {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 44px;
  }

  .squares-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
  }

  .square-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: all 0.15s;
  }

  .square-pill:hover {
    background: rgba(255,223,0,0.1);
    border-color: rgba(255,223,0,0.4);
    color: var(--amarelo);
  }

  .square-pill.destaque {
    background: rgba(0,156,59,0.15);
    border-color: rgba(0,156,59,0.4);
    color: #5ddb8a;
  }

  /* ─── FOR WHOM ─── */
  .section-whom {
    background: #0f0f0f;
    padding: 80px 24px;
    text-align: center;
  }

  .section-whom h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 58px);
    color: var(--branco);
    margin-bottom: 48px;
  }

  .whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
  }

  .whom-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
  }

  .whom-card .emoji { font-size: 32px; display: block; margin-bottom: 12px; }

  /* ─── FINAL CTA ─── */
  .section-cta {
    background: linear-gradient(135deg, var(--verde2) 0%, var(--azul) 100%);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .section-cta::before {
    content: '⚽';
    font-size: 320px;
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.05;
    pointer-events: none;
    line-height: 1;
  }

  .section-cta > * { position: relative; z-index: 1; }

  .section-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 7vw, 76px);
    color: var(--branco);
    line-height: 1;
    margin-bottom: 12px;
  }

  .section-cta h2 span { color: var(--amarelo); }

  .section-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-final {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 88px;
    color: var(--amarelo);
    line-height: 1;
    margin-bottom: 6px;
  }

  .price-final-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
  }

  .guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #050505;
    padding: 32px 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  /* ─── STICKY CTA (mobile) ─── */
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.95);
    border-top: 1px solid rgba(255,223,0,0.2);
    backdrop-filter: blur(12px);
    padding: 12px 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    gap: 12px;
  }

  .sticky-cta-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
  }

  .sticky-cta-text strong {
    color: var(--amarelo);
    font-size: 20px;
    display: block;
    line-height: 1;
  }

  .sticky-btn {
    background: var(--amarelo);
    color: #000;
    font-weight: 900;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.15s;
  }

  .sticky-btn:hover { transform: scale(1.03); }

/* Ajustes finais de responsividade */
@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  .sticky-cta { display: flex; }

  .hero {
    min-height: auto;
    padding: 48px 16px 64px;
  }

  .section-problem,
  .section-how,
  .section-inside,
  .section-squares,
  .section-whom {
    padding: 64px 16px;
  }

  .section-cta { padding: 78px 16px 90px; }

  .card-preview {
    width: min(390px, calc(100vw - 24px));
    gap: 4px;
    padding: 12px;
    border-radius: 16px;
  }

  .card-preview .col-header { height: 30px; }

  .bingo-cell {
    border-radius: 7px;
    padding: 4px;
    font-size: clamp(6.4px, 1.9vw, 8px);
    line-height: 1.04;
  }

  .items-grid,
  .steps,
  .whom-grid {
    grid-template-columns: 1fr;
  }

  .cta-btn {
    width: min(100%, 360px);
    padding: 16px 24px;
    font-size: 16px;
  }

  .cta-btn-final {
    padding: 18px 24px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 68px; }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
    padding: 6px 14px;
  }
  .price-tag { font-size: 56px; }
  .price-final { font-size: 70px; }
  .card-preview {
    width: calc(100vw - 20px);
    gap: 3px;
    padding: 10px;
  }
  .card-preview .col-header { height: 28px; }
  .bingo-cell { padding: 3px; font-size: 6.2px; }
  .sticky-btn { padding: 12px 18px; font-size: 14px; }
  .sticky-cta-text { font-size: 12px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 58px; }
  .card-preview { gap: 3px; padding: 8px; }
  .bingo-cell { font-size: 5.8px; border-radius: 6px; }
}
