/* ══════════════════════════════════════
       RESET & ROOT
    ══════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red:        #4C230D;
      --red-dark:   #3A1A09;
      --red-accent: #6B3618;
      --bg:         #E0C49F;
      --bg-card:    #EAD9BE;
      --bg-dark:    #4C230D;
      --text:       #4C230D;
      --text-mid:   #6B4A33;
      --text-light: #A8876A;
      --white:      #ffffff;
      --line:       rgba(76,35,13,.16);
      --r-sm: 12px; --r-md: 20px; --r-lg: 28px; --r-xl: 36px;
    }

    html { scroll-behavior: smooth; font-size: 16.5px; }

    body {
      font-family: 'DM Sans', sans-serif;
      background:
        radial-gradient(ellipse 90% 55% at 50% 0%,   rgba(255,255,255,.30), transparent 62%),
        radial-gradient(ellipse 70% 45% at 100% 30%, rgba(76,35,13,.05),   transparent 60%),
        radial-gradient(ellipse 70% 45% at 0% 70%,   rgba(76,35,13,.05),   transparent 60%),
        var(--bg);
      background-attachment: fixed;
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

    /* ══════════════════════════════════════
       SECTION LABEL
    ══════════════════════════════════════ */
    .lbl {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'DM Mono', monospace;
      font-size: .62rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }
    .lbl::before {
      content: '';
      width: 18px; height: 1.5px;
      background: currentColor;
      flex-shrink: 0;
    }
    .lbl--light { color: rgba(255,255,255,.45); }
    .lbl--light::before { background: rgba(255,255,255,.45); }

    /* ══════════════════════════════════════
       BUTTONS — mobile-first, fully responsive
    ══════════════════════════════════════ */
    .btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      font-family: 'DM Sans', sans-serif;
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .03em;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      line-height: 1.25;
      padding: 15px 24px;
      min-height: 50px;
      border-radius: 99px;
      border: none;
      cursor: pointer;
      isolation: isolate;
      transition: transform .2s ease, box-shadow .3s ease, opacity .2s;
      overflow: hidden;
    }
    /* Brilho premium — sweep sutil que atravessa o botão no hover */
    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.32) 46%, transparent 62%);
      transform: translateX(-120%);
      transition: transform .7s cubic-bezier(.2,.8,.2,1);
    }
    @media (hover: hover) and (pointer: fine) {
      .btn:hover::before { transform: translateX(120%); }
    }
    @media (max-width: 400px) {
      .btn { font-size: .74rem; padding: 14px 18px; letter-spacing: .02em; }
    }
    .btn:active { transform: scale(.97); }

    .btn--solid {
      background: var(--red);
      color: #fff;
      box-shadow: 0 4px 18px rgba(90,25,3,.22);
    }
    .btn--solid:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(90,25,3,.3);
    }

    .btn--ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,.4);
      transition: border-color .25s ease, background .25s ease, transform .2s ease, box-shadow .3s ease;
    }
    .btn--ghost:hover {
      border-color: #fff;
      background: rgba(255,255,255,.06);
      transform: translateY(-2px);
    }

    .btn--green {
      background: linear-gradient(135deg, #35946099 0%, #2E7D4F 55%, #235F3C 100%);
      color: #fff;
      box-shadow: 0 6px 20px rgba(46,125,79,.3), inset 0 1px 0 rgba(255,255,255,.22);
    }
    .btn--green:hover {
      background: linear-gradient(135deg, #2E7D4F 0%, #235F3C 100%);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(46,125,79,.4), inset 0 1px 0 rgba(255,255,255,.28);
    }

    @media (min-width: 480px) {
      .btn { width: auto; display: inline-flex; }
      .btn--full { width: 100%; display: flex; }
    }

    /* ══════════════════════════════════════
       DIVIDER
    ══════════════════════════════════════ */
    .hr { border: none; border-top: 1px solid var(--line); }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 90vh;
      min-height: 90dvh; /* Chrome Android, Samsung, Vivaldi, Opera, Firefox */
      min-height: 90svh; /* Safari iOS — barra de abas sempre visível */
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      /* padding-bottom respeita barra inferior do browser (home indicator, nav bar) */
      padding: 0 0 max(52px, calc(env(safe-area-inset-bottom, 0px) + 36px));
      overflow: hidden;
      border-radius: 0 0 var(--r-xl) var(--r-xl);
    }

    .hero__img {
      position: absolute;
      inset: 0;
      background:
        url('assets/joyheader1.webp') center center / cover no-repeat;
      z-index: 0;
    }
    .hero__img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(76,35,13,.78) 0%,
        rgba(76,35,13,.28) 45%,
        transparent 100%
      );
    }
    @media (max-width: 767px) {
      .hero__img {
        background-image: url('assets/joyheader1-mobile.webp');
        background-position: center 20%;
      }
      .hero {
        min-height: 108svh;
      }
    }

    .hero__grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image:
        repeating-linear-gradient(90deg, rgba(90,25,3,.07) 0, rgba(90,25,3,.07) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg,  rgba(90,25,3,.07) 0, rgba(90,25,3,.07) 1px, transparent 1px, transparent 80px);
      mask-image: linear-gradient(to top, black 0%, transparent 55%);
      -webkit-mask-image: linear-gradient(to top, black 0%, transparent 55%);
      pointer-events: none;
    }

    .hero__body {
      position: relative;
      z-index: 10;
      /* padding-top compensa: navbar fixa (60px) + safe-area-inset-top
         (notch/barra de status) + folga extra (16px).
         env() com fallback 0px funciona em todos os browsers. */
      padding: max(76px, calc(env(safe-area-inset-top, 0px) + 60px)) 28px 0;
      width: 100%;
    }

    .hero__logo {
      display: block;
      height: 40px;
      width: auto;
      margin: 0 0 20px;
      filter: drop-shadow(0 2px 10px rgba(0,0,0,.35));
      animation: fadeUp .55s .04s both;
    }
    @media (min-width: 768px) {
      .hero__logo { height: 48px; }
    }

    .hero__tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Mono', monospace;
      font-size: .62rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255,255,255,.8);
      background: rgba(90,25,3,.55);
      border: 1px solid rgba(90,25,3,.4);
      border-radius: 99px;
      padding: 6px 16px;
      margin-bottom: 20px;
    }

    .hero__h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 10vw, 5rem);
      line-height: 1.02;
      letter-spacing: .02em;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    @media (min-width: 768px) {
      .hero__h1 { font-size: 80px; }
    }
    @media (min-width: 1100px) {
      .hero__h1 { font-size: 120px; }
    }
    .hero__h1 em {
      font-style: normal;
      color: var(--red);
      text-shadow: 0 0 32px rgba(90,25,3,.45);
    }

    .hero__sub {
      font-size: .82rem;
      font-weight: 300;
      letter-spacing: .03em;
      color: rgba(255,255,255,.65);
      line-height: 1.75;
      margin-bottom: 24px;
      max-width: 440px;
    }

    .hero__bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 32px;
    }
    .hero__bullets li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .88rem;
      color: rgba(255,255,255,.65);
    }
    .hero__bullets li::before {
      content: '';
      width: 16px; height: 1.5px;
      background: var(--red);
      flex-shrink: 0;
    }

    .hero__actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .hero__micro {
      font-family: 'DM Mono', monospace;
      font-size: .62rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      text-align: center;
    }

    @media (min-width: 480px) {
      .hero__actions { flex-direction: row; align-items: center; flex-wrap: wrap; }
      .hero__actions .btn { min-width: 200px; }
      .hero__micro   { text-align: left; }
    }
    @media (min-width: 768px) {
      .hero        { justify-content: center; padding-bottom: 72px; }
      .hero__body  { max-width: 680px; margin: 0 auto 0 8%; padding: 0 40px; }
    }

    /* ══════════════════════════════════════
       PROOF / AUTORIDADE
    ══════════════════════════════════════ */
    .proof {
      padding: 60px 28px;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }
    @media (min-width: 700px) and (max-width: 899px) {
      .proof { padding: 72px 56px; }
    }

    /* Foto à esquerda — mesmo estilo do how-carousel */
    .proof__photo {
      position: relative;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      aspect-ratio: 4 / 5;
      border-radius: var(--r-xl);
      overflow: hidden;
      border: 1px solid rgba(90,25,3,.14);
      background:
        linear-gradient(160deg, #452816 0%, #5A1903 60%, #2E1408 100%)
        center center / cover no-repeat;
      box-shadow:
        0 24px 60px rgba(69,40,22,.16),
        0 2px 10px rgba(69,40,22,.08);
      flex-shrink: 0;
    }
    /* imagem real quando disponível */
    .proof__photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .proof__right { display: flex; flex-direction: column; }
    .proof__head { margin-bottom: 12px; }

    .proof__h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.1rem, 5.2vw, 3.15rem);
      line-height: 1;
      letter-spacing: .03em;
      color: var(--text);
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .proof__h2 span { color: var(--red); }

    .proof__p {
      font-size: .93rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 0;
    }

    .gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 32px;
    }
    @media (min-width: 480px) {
      .gallery { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 900px) {
      .proof {
        max-width: 1100px;
        margin: 0 auto;
        padding: 88px 56px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 52px;
        align-items: center;
        flex-direction: unset;
      }
      .proof__photo { max-width: 100%; }
      .proof__head { margin-bottom: 12px; }
      .gallery { grid-template-columns: repeat(3, 1fr); margin-bottom: 0; }
    }

    .gcard {
      position: relative;
      aspect-ratio: 3/4;
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--bg-card);
      box-shadow: 0 2px 10px rgba(76,35,13,.07);
    }
    .gcard img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 1.6s ease-in-out;
    }
    .gcard img.antes  { opacity: 1; z-index: 1; }
    .gcard img.depois { opacity: 0; z-index: 2; }
    .gcard.show-depois img.antes  { opacity: 0; }
    .gcard.show-depois img.depois { opacity: 1; }
    .gcard img.static {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      opacity: 1;
      z-index: 1;
    }

    /* ── Botão revelar resultado ── */
    .fade-card { cursor: pointer; }
    .gcard__reveal {
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: fit-content;
      z-index: 5;
      background: var(--red);
      color: #fff;
      font-family: 'DM Mono', monospace;
      font-size: .44rem;
      letter-spacing: .10em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 99px;
      white-space: nowrap;
      pointer-events: none;
      transition: background .2s, opacity .2s;
    }
    .fade-card:hover .gcard__reveal { background: var(--red-dark); }
    .fade-card.show-depois .gcard__reveal { background: rgba(76,35,13,.72); }

    /* ── Cartões de ganho (bolão) ── */
    .win-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }
    @media (min-width: 560px) {
      .win-grid { grid-template-columns: 1fr 1fr; }
    }
    .win-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    .win-shirt {
      position: relative;
      width: 100%;
    }
    .jersey-img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
      object-fit: contain;
    }
    .win-content {
      position: absolute;
      inset: 24% 27% 20%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .win-badge {
      font-family: 'DM Mono', monospace;
      font-size: .52rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 99px;
      font-size: .68rem;
      margin: 4px 0 12px;
      white-space: nowrap;
    }
    .win-badge--yellow { background: var(--red);      color: #452816; }
    .win-badge--green  { background: var(--red-dark);  color: #fff; }
    .win-pct {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4.5rem, 18vw, 5rem);
      line-height: .9;
      margin-bottom: 5px;
    }
    .win-pct span { font-size: .45em; vertical-align: super; }
    @media (min-width: 600px) {
      .win-pct { font-size: clamp(3.5rem, 8vw, 5rem); }
    }
    .win-pct--yellow { color: var(--red); }
    .win-pct--green  { color: #452816; }
    .win-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      line-height: 1;
      letter-spacing: .03em;
      text-transform: uppercase;
    }
    .win-label--yellow { color: var(--red); }
    .win-label--green  { color: #452816; }
    .win-desc {
      margin-top: 0;
      font-size: .92rem;
      font-weight: 400;
      line-height: 1.5;
      text-align: center;
      max-width: 24ch;
    }
    .win-desc--yellow { color: #452816; }
    .win-desc--green  { color: #452816; }

    /* ══════════════════════════════════════
       PROCEDIMENTOS ELEGÍVEIS
    ══════════════════════════════════════ */
    .proc {
      max-width: 1100px;
      margin: 0 auto;
      padding: 72px 56px 24px;
    }
    .proc__head {
      text-align: center;
      max-width: 620px;
      margin: 0 auto 48px;
    }
    .proc__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.1rem, 5.2vw, 3.15rem);
      line-height: 1.04;
      letter-spacing: .02em;
      text-transform: uppercase;
      color: var(--bg-dark);
      margin: 12px 0 18px;
    }
    .proc__title span { color: var(--red-dark); }
    .proc__intro {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--text-mid);
    }
    /* 2x2 no desktop: todos os cards no MESMO tamanho,
       na proporção da foto do canto superior direito (1920x1652) */
    .proc-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      max-width: 880px;
      margin: 36px auto 22px;
      padding: 0 16px;
    }
    .proc-gallery__item {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 1920 / 1652;
      overflow: hidden;
      border: 1px solid rgba(201,154,75,.55);
      border-radius: var(--r-md);
      line-height: 0;
      box-shadow: 0 16px 40px rgba(76,35,13,.08);
    }
    .proc-gallery__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .proc-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 22px;
    }
    @media (min-width: 600px) {
      .proc-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      /* mobile: uma foto embaixo da outra, mesmo tamanho padronizado */
      .proc-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 360px;
      }
      .proc-gallery__item { width: 100%; }
    }
    .proc-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 38px 32px 34px;
      box-shadow: 0 16px 40px rgba(76,35,13,.06);
    }
    .proc-card--bb  { --acc: var(--red); }
    .proc-card--el  { --acc: var(--red); }
    .proc-card--fac { --acc: var(--red); }
    .proc-card__sub {
      font-family: 'DM Mono', monospace;
      font-size: .64rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--acc);
      margin-bottom: 6px;
    }
    .proc-card__name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 8vw, 2.8rem);
      line-height: 1;
      letter-spacing: .02em;
      color: var(--bg-dark);
      margin-bottom: 16px;
    }
    .proc-card__desc {
      font-size: .92rem;
      font-weight: 300;
      line-height: 1.6;
      color: var(--text-mid);
      margin-bottom: 24px;
    }
    .proc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 13px;
    }
    .proc-list li {
      position: relative;
      padding-left: 32px;
      font-size: .9rem;
      font-weight: 400;
      line-height: 1.45;
      color: var(--text);
    }
    .proc-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 1px;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      background: var(--acc);
      border-radius: 50%;
    }

    /* ══════════════════════════════════════
       PRAZOS / DATAS
    ══════════════════════════════════════ */
    .dates {
      max-width: 1100px;
      margin: 0 auto;
      padding: 64px 28px 32px;
    }
    @media (min-width: 700px) {
      .dates { padding: 72px 56px 40px; }
    }
    .dates__head {
      text-align: center;
      margin: 0 auto 44px;
    }
    .dates__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.1rem, 5.2vw, 3.15rem);
      line-height: 1.04;
      letter-spacing: .02em;
      text-transform: uppercase;
      color: var(--bg-dark);
      margin-top: 10px;
    }
    .dates-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (min-width: 760px) {
      .dates-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .date-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 34px 18px 30px;
      text-align: center;
      box-shadow: 0 14px 36px rgba(76,35,13,.05);
    }
    .date-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      border-radius: 50%;
    }
    .date-card--1 .date-icon { background: rgba(76,35,13,.14); }
    .date-card--2 .date-icon { background: rgba(76,35,13,.12); }
    .date-card--3 .date-icon { background: rgba(90,25,3,.20); }
    .date-card--4 .date-icon { background: rgba(76,35,13,.12); }
    .date-big {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      line-height: 1;
      letter-spacing: .02em;
      color: var(--bg-dark);
      margin-bottom: 8px;
    }
    .date-cap {
      font-family: 'DM Mono', monospace;
      font-size: .62rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-mid);
    }

    /* ══════════════════════════════════════
       FORM
    ══════════════════════════════════════ */
    .form-wrap {
      background: var(--bg-dark);
      border-radius: var(--r-xl);
      margin: 0 16px 16px;
      padding: 52px 28px;
    }

    .form-h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.1rem, 5.2vw, 3.15rem);
      line-height: 1;
      letter-spacing: .03em;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .form-sub {
      font-size: .88rem;
      font-weight: 300;
      color: rgba(255,255,255,.45);
      line-height: 1.65;
      margin-bottom: 32px;
    }

    .fld { margin-bottom: 14px; }
    .fld label {
      display: block;
      font-family: 'DM Mono', monospace;
      font-size: .6rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-bottom: 6px;
    }
    .fld input {
      width: 100%;
      background: rgba(255,255,255,.05);
      border: 1.5px solid rgba(255,255,255,.1);
      border-radius: var(--r-sm);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 300;
      padding: 14px 15px;
      outline: none;
      -webkit-appearance: none;
      transition: border-color .2s, background .2s;
    }
    .fld input::placeholder { color: rgba(255,255,255,.18); }
    .fld input:focus {
      border-color: var(--red);
      background: rgba(90,25,3,.07);
    }

    /* ── Campo de palpite (placar) ── */
    .bet-match {
      display: grid;
      grid-template-columns: minmax(0,1.1fr) 40px 10px 40px minmax(0,1.25fr);
      align-items: stretch;
      gap: 6px;
    }
    .bet-team {
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,.05);
      border: 1.5px solid rgba(255,255,255,.1);
      border-radius: var(--r-sm);
      padding: 0 10px;
      min-width: 0;
      transition: border-color .2s, background .2s;
    }
    .bet-team--opp { padding-right: 0; }
    .bet-team:focus-within { border-color: var(--red); background: rgba(90,25,3,.07); }
    .bet-flag {
      width: 22px;
      height: 15px;
      object-fit: cover;
      border-radius: 2px;
      flex-shrink: 0;
      box-shadow: 0 0 0 1px rgba(255,255,255,.18);
    }
    .bet-team-name {
      font-size: .9rem;
      font-weight: 500;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .bet-x {
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      color: rgba(255,255,255,.4);
    }
    .bet-score {
      width: 100%;
      background: rgba(255,255,255,.05);
      border: 1.5px solid rgba(255,255,255,.1);
      border-radius: var(--r-sm);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      text-align: center;
      padding: 14px 2px;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
      cursor: pointer;
      transition: border-color .2s, background .2s;
    }
    .bet-score:focus { border-color: var(--red); background-color: rgba(90,25,3,.07); }
    .bet-opp {
      flex: 1;
      min-width: 0;
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      font-weight: 500;
      padding: 14px 22px 14px 0;
      cursor: pointer;
      -webkit-appearance: none;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 9px center;
    }
    .bet-score option, .bet-opp option { color: #452816; }
    .bet-hint {
      margin-top: 10px;
      font-family: 'DM Mono', monospace;
      font-size: .58rem;
      letter-spacing: .04em;
      color: rgba(255,255,255,.35);
      text-align: center;
      line-height: 1.5;
    }

    #form-error {
      display: none;
      font-size: .8rem;
      color: #e08080;
      margin: 10px 0;
      padding: 10px 14px;
      border: 1px solid rgba(224,128,128,.25);
      background: rgba(224,128,128,.06);
      border-radius: var(--r-sm);
    }

    .btn-submit {
      width: 100%;
      display: flex;
      margin-top: 10px;
    }
    .btn-submit.loading { opacity: .6; pointer-events: none; }

    .form-note {
      margin-top: 14px;
      font-size: .72rem;
      color: rgba(255,255,255,.2);
      text-align: center;
    }

    @media (min-width: 600px) {
      .form-wrap { padding: 64px 48px; margin: 0 24px 24px; }
    }
    .form-wrap__photo img { display: none; }
    .form-wrap__photo::after { content: none; }
    @media (min-width: 900px) {
      /* foto colada no canto esquerdo do card, de ponta a ponta (como a seção acima) */
      .form-wrap {
        margin: 0 32px 32px;
        padding: 0;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 0;
        align-items: stretch;
      }
      .form-wrap > div:last-child {
        padding: 56px 56px;
      }
      .form-sub { margin-bottom: 0; }
      .form-wrap__photo {
        display: flex;
        position: relative;
        overflow: hidden;
        border-radius: 0;
        align-items: flex-end;
        padding: 32px;
        min-height: 100%;
      }
      .form-wrap__photo img {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        object-position: center top;
        z-index: 0;
      }
      .form-wrap__photo::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(28,14,7,.88) 0%, rgba(28,14,7,.32) 55%, transparent 100%);
        z-index: 1;
      }
      .form-h2--overlay {
        position: relative;
        z-index: 2;
        margin-bottom: 0;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
      }
    }

    /* ══════════════════════════════════════
       BIO / MENTORA
    ══════════════════════════════════════ */
    .bio-wrap {
      position: relative;
      border-radius: var(--r-xl);
      margin: 12px 12px;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 44px;
    }
    .bio-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: #1c0e07;
      background-image: url('assets/evento.webp');
      background-size: contain;
      background-position: right center;
      background-repeat: no-repeat;
      z-index: 0;
    }
    @media (max-width: 767px) {
      .bio-wrap::before {
        background-position: center top;
        background-size: cover;
      }
    }
    .bio-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right,
        #1c0e07 0%,
        #1c0e07 28%,
        rgba(28,14,7,.88) 44%,
        rgba(28,14,7,.30) 62%,
        transparent 100%);
      z-index: 1;
    }

    .bio-body {
      position: relative;
      z-index: 10;
      max-width: 46%;
    }
    .bio-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.1rem, 5.2vw, 3.15rem);
      font-weight: 400;
      line-height: 1.04;
      letter-spacing: .02em;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 16px;
      -webkit-text-stroke: 1px #fff;
      paint-order: stroke fill;
    }
    .bio-name span { color: var(--red); }
    .bio-p {
      font-size: .9rem;
      font-weight: 300;
      color: rgba(255,255,255,.68);
      line-height: 1.75;
      margin-bottom: 28px;
      max-width: 420px;
    }
    @media (min-width: 600px) {
      .bio-wrap { margin: 20px 20px; padding: 60px 40px; }
    }
    @media (min-width: 900px) {
      .bio-wrap { margin: 32px 32px; padding: 72px 60px; min-height: 580px; }
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      border-top: 1px solid var(--line);
      padding: 32px 24px max(28px, env(safe-area-inset-bottom));
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 1060px;
      margin: 0 auto;
    }
    .footer__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
    }
    .footer__brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
    }
    .footer__logo {
      height: 34px;
      width: auto;
      display: block;
      margin-bottom: 4px;
    }
    .footer__tagline {
      font-family: 'DM Mono', monospace;
      font-size: .58rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-light);
    }
    .footer__links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .footer__addr, .footer__copy {
      font-family: 'DM Mono', monospace;
      font-size: .58rem;
      letter-spacing: .06em;
      color: var(--text-light);
      text-align: center;
    }
    .footer__social {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'DM Mono', monospace;
      font-size: .58rem;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    @media (min-width: 640px) {
      .footer__addr, .footer__copy { text-align: left; }
    }
    .footer__disclaimer {
      font-family: 'DM Mono', monospace;
      font-size: .56rem;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--text-light);
      opacity: .7;
      border-top: 1px solid var(--line);
      padding-top: 16px;
      text-align: center;
    }
    @media (min-width: 640px) {
      .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
      }
      .footer__brand { align-items: flex-start; }
      .footer__links { align-items: flex-end; }
    }

    /* ══════════════════════════════════════
       MODAL — bottom sheet on mobile
    ══════════════════════════════════════ */
    .modal-bg {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(76,35,13,.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 1000;
      align-items: flex-end;
      justify-content: center;
      padding: 0 0 env(safe-area-inset-bottom);
    }
    .modal-bg.open { display: flex; }

    .modal-box {
      background: var(--white);
      border-radius: var(--r-xl) var(--r-xl) var(--r-lg) var(--r-lg);
      width: 100%;
      max-width: 500px;
      padding: 44px 24px 36px;
      text-align: center;
      position: relative;
      animation: sheetUp .38s cubic-bezier(.32,1.1,.68,1) both;
    }
    @keyframes sheetUp {
      from { transform: translateY(60px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }
    .modal-close {
      position: absolute;
      top: 14px; right: 16px;
      background: var(--bg-card);
      border: none;
      color: var(--text-mid);
      font-size: .95rem;
      cursor: pointer;
      width: 30px; height: 30px;
      border-radius: 99px;
      display: flex; align-items: center; justify-content: center;
    }
    .modal-icon { font-size: 1.9rem; margin-bottom: 14px; }
    .modal-h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.3rem;
      letter-spacing: .04em;
      color: var(--text);
      margin-bottom: 10px;
    }
    .modal-p {
      font-size: .88rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 26px;
    }
    .modal-cta {
      width: 100%;
      display: flex;
      padding: 16px 20px;
    }

    /* ══════════════════════════════════════
       ENTER ANIMATIONS
    ══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero__logo    { animation: fadeUp .6s .04s cubic-bezier(.16,1,.3,1) both; }
    .hero__tag     { animation: fadeUp .6s .1s  cubic-bezier(.16,1,.3,1) both; }
    .hero__h1      { animation: fadeUp .65s .18s cubic-bezier(.16,1,.3,1) both; }
    .hero__sub     { animation: fadeUp .65s .3s  cubic-bezier(.16,1,.3,1) both; }
    .hero__bullets { animation: fadeUp .65s .4s  cubic-bezier(.16,1,.3,1) both; }
    .hero__actions { animation: fadeUp .65s .5s  cubic-bezier(.16,1,.3,1) both; }

    /* Reveal ao rolar — fade + slide + leve escala, com stagger via --d (setado em JS) */
    .reveal {
      opacity: 0;
      transform: translateY(26px) scale(.98);
      transition:
        opacity .7s cubic-bezier(.16,1,.3,1),
        transform .7s cubic-bezier(.16,1,.3,1);
      transition-delay: var(--d, 0s);
      will-change: opacity, transform;
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

    @media (prefers-reduced-motion: reduce) {
      .hero__logo, .hero__tag, .hero__h1, .hero__sub, .hero__bullets, .hero__actions {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
      .reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
      * { scroll-behavior: auto !important; }
    }

    /* ══════════════════════════════════════
       SAFE AREA
    ══════════════════════════════════════ */
    /* ── Mobile browser UI compensation ─────────────────────────────────────
       Navegadores Android (Chrome, Samsung, Vivaldi, Opera, Firefox):
         Barra de pesquisa topo: ~56–72px | Barra inferior: ~48–56px
       Safari iOS:
         Barra top (com abas): ~88–108px | Barra inferior: ~34–83px
       Todos cobertos por env(safe-area-inset-*) + min fixo como fallback.
    ──────────────────────────────────────────────────────────────────────── */
    .hero {
      padding-bottom: max(52px, calc(env(safe-area-inset-bottom, 0px) + 36px));
    }
    /* Safari iOS adiciona safe-area-inset-top grande por causa das abas */
    @supports (padding-top: env(safe-area-inset-top)) {
      .hero__body {
        padding-top: max(76px, calc(env(safe-area-inset-top) + 60px));
      }
    }
    /* Landscape: compensar safe-area nos lados (notch lateral no iPhone) */
    @media (orientation: landscape) and (max-width: 900px) {
      .hero__body {
        padding-left:  max(20px, calc(env(safe-area-inset-left,  0px) + 20px));
        padding-right: max(20px, calc(env(safe-area-inset-right, 0px) + 20px));
        padding-top:   max(56px, calc(env(safe-area-inset-top,   0px) + 48px));
      }
      .hero {
        min-height: 100lvh;
        padding-bottom: max(28px, calc(env(safe-area-inset-bottom, 0px) + 16px));
      }
    }
  
    /* ══════════════════════════════════════
       DDI — INTERNATIONAL PHONE SELECTOR
    ══════════════════════════════════════ */
    .phone-row {
      display: flex;
      gap: 8px;
      align-items: stretch;
    }
    .phone-row input[type="tel"] {
      flex: 1;
      min-width: 0;
      width: auto;
    }
    .ddi-wrap {
      position: relative;
      flex-shrink: 0;
    }
    .ddi-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 14px 12px;
      height: 100%;
      min-width: 88px;
      background: rgba(255,255,255,.05);
      border: 1.5px solid rgba(255,255,255,.1);
      border-radius: var(--r-sm);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: .93rem;
      cursor: pointer;
      outline: none;
      transition: border-color .2s, background .2s;
      white-space: nowrap;
    }
    .ddi-btn:hover, .ddi-btn:focus { border-color: var(--red); background: rgba(90,25,3,.07); }
    .ddi-btn.open                  { border-color: var(--red); background: rgba(90,25,3,.1);  }
    .ddi-flag  { font-size: 1.15rem; line-height: 1; }
    .ddi-code  { font-family: 'DM Mono', monospace; font-size: .78rem; letter-spacing: .04em; }
    .ddi-arrow { width: 10px; height: 6px; color: rgba(255,255,255,.35); transition: transform .22s; flex-shrink: 0; }
    .ddi-btn.open .ddi-arrow { transform: rotate(180deg); }

    .ddi-dropdown {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      width: 272px;
      max-height: 318px;
      background: #452816;
      border: 1.5px solid rgba(255,255,255,.11);
      border-radius: var(--r-sm);
      z-index: 999;
      display: none;
      flex-direction: column;
      box-shadow: 0 14px 48px rgba(0,0,0,.55);
      overflow: hidden;
    }
    .ddi-dropdown.open { display: flex; }

    .ddi-search-wrap {
      padding: 10px 10px 8px;
      border-bottom: 1px solid rgba(255,255,255,.07);
      flex-shrink: 0;
    }
    .ddi-search {
      width: 100%;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: .82rem;
      padding: 8px 12px;
      outline: none;
      transition: border-color .2s;
    }
    .ddi-search::placeholder { color: rgba(255,255,255,.22); }
    .ddi-search:focus { border-color: var(--red); }

    .ddi-list {
      list-style: none;
      overflow-y: auto;
      flex: 1;
      padding: 5px 0;
    }
    .ddi-list::-webkit-scrollbar       { width: 3px; }
    .ddi-list::-webkit-scrollbar-track { background: transparent; }
    .ddi-list::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

    .ddi-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      cursor: pointer;
      transition: background .13s;
      font-size: .86rem;
      color: rgba(255,255,255,.72);
    }
    .ddi-item:hover    { background: rgba(255,255,255,.06); color: #fff; }
    .ddi-item.selected { background: rgba(90,25,3,.18); color: #fff; }
    .ddi-item__flag    { font-size: 1rem; }
    .ddi-item__name    { flex: 1; }
    .ddi-item__code    { font-family: 'DM Mono', monospace; font-size: .7rem; color: rgba(255,255,255,.3); }

    /* ══════════════════════════════════════
       BOLAS DECORATIVAS
    ══════════════════════════════════════ */
    .bola {
      position: absolute;
      pointer-events: none;
      z-index: 0;
      background: transparent;
      border-radius: 50%;
    }
    @keyframes bolaFloat {
      0%, 100% { transform: translateY(0)    rotate(0deg);   }
      50%       { transform: translateY(-20px) rotate(20deg); }
    }
    @keyframes bolaFloatR {
      0%, 100% { transform: translateY(0)    rotate(0deg);    }
      50%       { transform: translateY(-14px) rotate(-18deg); }
    }
    @media (max-width: 767px) {
      .bola { zoom: 0.45; }
    }



    /* ══════════════════════════════════════
       AJUSTES DE TEXTO — MOBILE
    ══════════════════════════════════════ */
    @media (max-width: 600px) {
      /* Headlines — 45px em todas as seções no mobile */
      .proof__h2,
      .proc__title,
      .form-h2,
      .bio-name,
      .dates__title,
      .ba-title,
      .faq__title,
      .cta__title {
        font-size: 39px !important;
        line-height: 1.04 !important;
      }

      .hero__h1 { font-size: clamp(1.2rem, 5vw, 1.65rem) !important; line-height: 1.1 !important; text-wrap: balance; }
      .hero__sub { font-size: .88rem; max-width: 30ch; text-wrap: balance; }

      /* Textos centralizados no mobile */
      .hero__body,
      .proof__head,
      .form-wrap > div:first-child,
      .bio-body {
        text-align: center;
      }
      .hero__body .lbl,
      .proof__head .lbl,
      .form-wrap > div:first-child .lbl,
      .bio-body .lbl { justify-content: center; }
      .hero__logo { margin-left: auto; margin-right: auto; }
      .hero__sub,
      .hero__script,
      .proof__p,
      .form-sub,
      .bio-p { margin-left: auto; margin-right: auto; }
      .hero__actions { align-items: center; flex-direction: column; width: 100%; }
      .hero__actions .btn { width: 100%; justify-content: center; }
      .bio-quote { text-align: left; margin-left: auto; margin-right: auto; }
      .how-section__copy { text-align: center; }
      .how-section__copy .lbl { justify-content: center; }
      .how-section__copy .proof__p { text-align: center; }
      .how-list .ind { justify-content: center; }

      .hero__script { font-size: .9rem !important; }
      .hero__sub    { font-size: .92rem; }

      .win-label      { font-size: 1.15rem; }
      .win-desc       { font-size: .85rem; }

      .proof__p       { font-size: .88rem; }

      .proc__intro    { font-size: .9rem; }
      .proc-card      { padding: 30px 24px 28px; }
      .proc-card__name { font-size: 2rem; }
      .proc-card__desc { font-size: .88rem; }
      .proc-list li   { font-size: .86rem; }

      .form-sub       { font-size: .85rem; }
      .bio-p          { font-size: .88rem; }
    }

    /* ══════════════════════════════════════
       MOBILE OTIMIZAÇÕES ADICIONAIS
    ══════════════════════════════════════ */

    /* ── Campo de palpite (placar) — mobile ── */
    @media (max-width: 480px) {
      .bet-match {
        display: grid;
        grid-template-columns: 1fr 56px;
        grid-template-rows: auto auto;
        gap: 8px;
      }
      .bet-match > .bet-team:first-child  { grid-column: 1; grid-row: 1; }
      .bet-match > .bet-score:nth-child(2){ grid-column: 2; grid-row: 1; }
      .bet-match > .bet-x                 { display: none; }
      .bet-match > .bet-score:nth-child(4){ grid-column: 2; grid-row: 2; }
      .bet-match > .bet-team.bet-team--opp{ grid-column: 1; grid-row: 2; }

      .bet-team-name { font-size: .82rem; }
      .bet-opp { padding: 14px 28px 14px 0; font-size: .86rem; }
    }

    /* ── DDI dropdown — telas muito pequenas ── */
    @media (max-width: 400px) {
      .ddi-dropdown {
        width: calc(100vw - 32px);
        left: 0;
      }
    }

    /* ── dates-grid — 1 coluna em telas muito pequenas ── */
    @media (max-width: 380px) {
      .dates-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── proof section padding mobile ── */
    @media (max-width: 600px) {
      .proof { padding: 44px 20px; gap: 28px; }
      .proof__photo { max-width: 220px; aspect-ratio: 3 / 4; }
      .proof__right { align-items: center; }
      .proof__right .ind-grid { width: 100%; }
      .proc  { padding: 48px 20px 16px; }
      .dates { padding: 44px 20px 24px; }
      .form-wrap { margin: 0 12px 12px; padding: 40px 20px; }
      .bio-wrap  { margin: 12px 12px; padding: 36px 20px; min-height: 440px; }

      /* win-grid: 1 coluna em telas pequenas para não comprimir as camisas */
      .win-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

      /* proc-card padding menor */
      .proc-card { padding: 26px 20px 22px; }

      /* date-card mais compacto */
      .date-card { padding: 24px 12px 20px; }
      .date-icon { width: 46px; height: 46px; font-size: 1.3rem; margin-bottom: 12px; }
      .date-big  { font-size: 1.6rem; }

      /* modal full-width no mobile */
      .modal-box { border-radius: var(--r-xl) var(--r-xl) 0 0; padding: 36px 20px 28px; }

      /* ── Centralização geral mobile ── */

      /* Seção proof (bolão) */
      .proof__head { text-align: center; }
      .proof__head .lbl { justify-content: center; }
      .proof__p { text-align: center; }
      .proof__head .btn { width: 100%; justify-content: center; }

      /* Seção proc (resultados que falam) */
      .proc__head { text-align: center; }
      .proc__head .lbl { justify-content: center; }
      .proc__intro { text-align: center; }

      /* Seção dates (válido o mês todo) */
      .dates__head { text-align: center; }
      .dates__head .lbl { justify-content: center; }
      .dates__title { text-align: center; }

      /* Formulário */
      .form-wrap > div:first-child { text-align: center; }
      .form-wrap > div:first-child .lbl { justify-content: center; }
      .form-h2, .form-sub { text-align: center; }

      /* Bio */
      .bio-body { text-align: center; max-width: 100%; }
      .bio-body .lbl { justify-content: center; }
      .bio-p { text-align: center; }
      .bio-body .btn { width: 100%; justify-content: center; }

      /* Botão aposta (wrapper) */
      .proof__head > div { display: flex; justify-content: center; }

      /* win-card */
      .win-card { text-align: center; }
      .win-label { text-align: center; }
      .win-desc  { text-align: center; }
    }

    /* ── Toque: aumentar áreas clicáveis ── */
    @media (hover: none) and (pointer: coarse) {
      .btn { min-height: 54px; }
      .ddi-btn { min-height: 54px; }
      .bet-score { min-height: 54px; }
      .fld input { min-height: 54px; }
    }

    /* ══════════════════════════════════════
       ANTES E DEPOIS
    ══════════════════════════════════════ */
    .ba-section {
      max-width: 100%;
      margin: 0 auto;
      padding: 72px 48px 16px;
    }
    .ba-head {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 48px;
    }
    .ba-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.1rem, 5.2vw, 3.15rem);
      line-height: 1.04;
      letter-spacing: .02em;
      text-transform: uppercase;
      color: var(--bg-dark);
      margin: 12px 0 14px;
    }
    .ba-title span { color: var(--red-dark); }
    .ba-intro {
      font-size: .95rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--text-mid);
    }
    .ba-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 700px) {
      .ba-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    }
    .ba-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ba-label {
      font-family: 'DM Mono', monospace;
      font-size: .62rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--bg-dark);
      text-align: center;
    }
    .ba-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .ba-img-wrap {
      position: relative;
      aspect-ratio: 3/4;
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--bg-card);
      box-shadow: 0 2px 12px rgba(76,35,13,.08);
    }
    .ba-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .ba-tag {
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'DM Mono', monospace;
      font-size: .52rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      background: rgba(76,35,13,.62);
      color: #fff;
      padding: 4px 10px;
      border-radius: 99px;
      white-space: nowrap;
    }
    .ba-tag--depois { background: var(--red-dark); }

    @media (max-width: 600px) {
      .ba-section { padding: 48px 20px 8px; }
      .ba-head { margin-bottom: 32px; }
      .ba-title { font-size: 39px !important; }
    }

    /* ══════════════════════════════════════
       JOYMARA — adaptações de seção e contraste
    ══════════════════════════════════════ */

    /* Hero: headline refinada */
    .hero__h1 { font-size: clamp(1.7rem, 4.6vw, 3.15rem) !important; line-height: 1.08 !important; letter-spacing: .03em !important; }
    .desk-br { display: none; }
    .mob-br  { display: block; }
    @media (min-width: 861px) {
      .desk-br { display: block; }
      .mob-br  { display: none; }
      .hero__sub { font-size: 1rem !important; }
    }
    @media (max-width: 600px) {
      .hero__h1  { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; line-height: 1.04 !important; text-wrap: balance; }
      .hero__sub { font-size: .98rem !important; line-height: 1.7 !important; max-width: 34ch; text-wrap: pretty; margin-bottom: 28px; }
      .hero__script { font-size: 1rem !important; }
    }

    /* Indicadores (autoridade) */
    .ind-grid { display: flex; flex-direction: column; }
    .ind {
      display: flex; align-items: baseline; gap: 12px;
      padding: 22px 0; border-bottom: 1px solid var(--line);
    }
    .ind:last-child { border-bottom: none; }
    .ind__num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem; line-height: .85; letter-spacing: .02em;
      color: var(--red); flex-shrink: 0; min-width: 40px;
    }
    .ind__num.num-sq {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      width: 52px; height: 52px; min-width: 52px;
      border-radius: 32% 32% 32% 6%;
      background: linear-gradient(150deg, var(--red-accent) 0%, var(--red) 55%, var(--red-dark) 100%);
      color: #fff;
      font-size: 1.4rem;
      letter-spacing: 0;
      box-shadow:
        0 8px 18px rgba(76,35,13,.32),
        inset 0 1px 0 rgba(255,255,255,.28),
        inset 0 -6px 10px rgba(0,0,0,.16);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .ind__num.num-sq::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 45%);
      pointer-events: none;
    }
    .ind__txt { font-size: .92rem; font-weight: 300; line-height: 1.5; color: var(--text-mid); }

    /* Etapas (como funciona) — reusa .date-card */
    .date-step { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; line-height: 1; color: var(--red); }
    .date-desc { font-size: .82rem; font-weight: 300; line-height: 1.55; color: var(--text-mid); margin-top: 10px; }

    /* Como funciona — texto à esquerda + carrossel à direita */
    .how-section {
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
      gap: clamp(28px, 5vw, 64px);
      align-items: center;
    }
    .how-section .dates__head {
      text-align: left;
      margin: 0 0 28px;
    }
    .dates__head--left .lbl {
      justify-content: flex-start;
    }
    .proof__p--left {
      max-width: 480px;
      margin: 14px 0 0;
      text-align: left;
    }
    .how-list .ind {
      align-items: flex-start;
      gap: 14px;
      padding: 18px 0;
    }
    .how-list .ind__txt {
      color: var(--text-mid);
      font-size: .96rem;
      line-height: 1.65;
      text-align: left;
      padding-top: 5px;
    }
    .check-ic {
      position: relative;
      flex-shrink: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: linear-gradient(150deg, var(--red-accent) 0%, var(--red) 55%, var(--red-dark) 100%);
      display: flex; align-items: center; justify-content: center;
      box-shadow:
        0 6px 14px rgba(76,35,13,.3),
        inset 0 1px 0 rgba(255,255,255,.28),
        inset 0 -4px 8px rgba(0,0,0,.16);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .check-ic::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 45%);
      pointer-events: none;
    }
    .check-ic svg { width: 13px; height: 13px; position: relative; z-index: 1; }
    @media (hover: hover) and (pointer: fine) {
      .ind:hover .check-ic {
        transform: translateY(-3px) scale(1.08);
        box-shadow:
          0 12px 22px rgba(76,35,13,.4),
          inset 0 1px 0 rgba(255,255,255,.32),
          inset 0 -4px 8px rgba(0,0,0,.16);
      }
    }
    .how-carousel {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--r-xl);
      background: var(--bg-card);
      box-shadow: 0 24px 60px rgba(76,35,13,.14);
    }
    .how-carousel__track {
      width: 700%;
      height: 100%;
      display: flex;
      animation: howCarousel 35s infinite ease-in-out;
    }
    .how-carousel__slide {
      position: relative;
      flex: 0 0 calc(100% / 7);
      height: 100%;
      display: flex;
      align-items: flex-end;
      padding: 24px;
      background-color: var(--bg-card);
      background-position: center;
      background-size: cover;
      overflow: hidden;
    }
    .how-carousel__slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(76,35,13,.58), rgba(76,35,13,.08) 58%, transparent),
        radial-gradient(circle at 25% 20%, rgba(255,255,255,.2), transparent 30%);
      pointer-events: none;
    }
    .how-carousel__slide span {
      position: relative;
      z-index: 1;
      font-family: 'DM Mono', monospace;
      font-size: .62rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.82);
    }
    .how-carousel__slide--1 { background-image: url("assets/1.webp"), linear-gradient(145deg,#E4DED4,#5A1903); }
    .how-carousel__slide--2 { background-image: url("assets/2.webp"), linear-gradient(145deg,#E4DED4,#5A1903); }
    .how-carousel__slide--3 { background-image: url("assets/3.webp"), linear-gradient(145deg,#E4DED4,#5A1903); }
    .how-carousel__slide--4 { background-image: url("assets/4.webp"), linear-gradient(145deg,#E4DED4,#5A1903); }
    .how-carousel__slide--5 { background-image: url("assets/5.webp"), linear-gradient(145deg,#E4DED4,#5A1903); }
    .how-carousel__slide--6 { background-image: url("assets/6.webp"), linear-gradient(145deg,#E4DED4,#5A1903); }
    .how-carousel__slide--7 { background-image: url("assets/7.webp"), linear-gradient(145deg,#E4DED4,#5A1903); }
    .how-carousel__dots {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 20px;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 7px;
    }
    .how-carousel__dots span {
      height: 2px;
      border-radius: 99px;
      background: rgba(255,255,255,.34);
    }
    @keyframes howCarousel {
      0%, 9% { transform: translateX(0); }
      14%, 23% { transform: translateX(-14.2857%); }
      28%, 37% { transform: translateX(-28.5714%); }
      42%, 51% { transform: translateX(-42.8571%); }
      56%, 65% { transform: translateX(-57.1428%); }
      70%, 79% { transform: translateX(-71.4285%); }
      84%, 93% { transform: translateX(-85.7142%); }
      100% { transform: translateX(0); }
    }
    @media (max-width: 860px) {
      .how-section {
        grid-template-columns: 1fr;
      }
      .how-carousel {
        max-width: 520px;
        margin: 0 auto;
      }
      .how-section .dates__head { text-align: center; }
      .dates__head--left .lbl { justify-content: center; }
      .proof__p--left { text-align: center; margin-left: auto; margin-right: auto; }
      .how-list .ind { justify-content: center; }
      .how-list .ind__txt { text-align: center; }
    }

    /* Select e textarea — mesmo visual dos inputs (form escuro) */
    .fld select, .fld textarea {
      width: 100%;
      background: rgba(255,255,255,.05);
      border: 1.5px solid rgba(255,255,255,.1);
      border-radius: var(--r-sm);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem; font-weight: 300;
      padding: 14px 15px;
      outline: none;
      transition: border-color .2s, background .2s;
    }
    .fld textarea { resize: vertical; min-height: 96px; }
    .fld textarea::placeholder { color: rgba(255,255,255,.18); }
    .fld select:focus, .fld textarea:focus { border-color: var(--red); background-color: rgba(90,25,3,.12); }
    .fld select {
      -webkit-appearance: none; appearance: none; cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 15px center;
    }
    .fld select option { color: #452816; }



    /* ══════════════════════════════════════
       VIDEOS / RESULTADOS
    ══════════════════════════════════════ */
    .videos__grid {
      width: 100%;
      max-width: 1060px;
      margin: 46px auto 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
    }
    .videos__grid .video__item {
      flex: 0 0 calc((100% - 2 * 18px) / 3);
      max-width: calc((100% - 2 * 18px) / 3);
    }

    .video__item {
      position: relative;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      border-radius: var(--r-lg);
      border: 1px solid rgba(76,35,13,.22);
      background: rgba(255,255,255,.42);
      box-shadow: 0 18px 50px rgba(76,35,13,.12);
    }

    .video__placeholder {
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
      background:
        linear-gradient(160deg, rgba(90,25,3,.14), rgba(228,222,212,.88)),
        var(--bg);
      color: var(--red);
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3rem);
      letter-spacing: .04em;
      text-transform: uppercase;
      text-align: center;
    }

    .video__media,
    .video__item iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
      object-fit: cover;
    }

    @media (max-width: 900px) {
      .videos__grid .video__item { flex-basis: calc((100% - 18px) / 2); max-width: calc((100% - 18px) / 2); }
    }

    @media (max-width: 560px) {
      .videos__grid { gap: 16px; }
      .videos__grid .video__item { flex-basis: 100%; max-width: 320px; }
    }

    /* FAQ */
    .faq { max-width: 780px; margin: 0 auto; padding: 64px 28px; }
    @media (min-width: 700px) {
      .faq { padding: 72px 48px; }
    }
    .faq__head { text-align: center; margin: 0 auto 36px; }
    .faq__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.1rem, 5.2vw, 3.15rem); line-height: 1.04;
      letter-spacing: .02em; text-transform: uppercase;
      color: var(--bg-dark); margin-top: 10px;
    }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-item summary {
      list-style: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 22px 4px; font-size: 1rem; font-weight: 500; color: var(--text);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '+'; font-size: 1.5rem; line-height: 1; color: var(--red); transition: transform .25s; flex-shrink: 0; }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item p { padding: 0 4px 24px; font-size: .92rem; font-weight: 300; line-height: 1.7; color: var(--text-mid); }
    @media (max-width: 600px) {
      .faq { padding: 48px 20px; }
      .faq__title { font-size: 39px !important; }
    }

    /* CTA final */
    .cta { background: var(--bg-dark); border-radius: var(--r-xl); margin: 0 12px 12px; padding: 72px 24px; text-align: center; }
    .cta__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.1rem, 5.2vw, 3.15rem); line-height: 1; letter-spacing: .03em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
    .cta__p { font-size: .95rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.62); max-width: 460px; margin: 0 auto 30px; }
    .cta .btn { max-width: 340px; margin-left: auto; margin-right: auto; }
    @media (min-width: 600px) { .cta { margin: 0 20px 20px; padding: 88px 40px; } }

    /* ══════════════════════════════════════
       UTILITÁRIOS E AJUSTES EXTRAÍDOS DO HTML
    ══════════════════════════════════════ */
    .text-red { color: var(--red); }
    .lbl--center { justify-content: center; }
    .lbl--muted-light { color: rgba(255,255,255,.55); }
    .hero__micro--spaced { margin-top: 18px; }
    .proof__p--center {
      max-width: 560px;
      margin: 14px auto 0;
      text-align: center;
    }
    .proc-card__desc--flush { margin-bottom: 0; }
    .proc-card__name--small { font-size: 1.9rem; }
    .hero__script--bio {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 300;
      font-style: italic;
      letter-spacing: .12em;
      color: rgba(228,222,212,.6);
      margin-bottom: 6px;
    }
    .bio-name .bio-name__light { color: #E4DED4; }

    .bio-quote {
      border-left: 2px solid rgba(139,26,16,.55);
      padding: 10px 0 10px 20px;
      margin: 20px 0 28px;
    }
    .bio-quote p {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 600;
      font-style: italic;
      color: rgba(255,255,255,.9);
      line-height: 1.5;
      margin-bottom: 10px;
    }
    .bio-quote cite {
      font-family: 'DM Mono', monospace;
      font-size: .58rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      font-style: normal;
    }
    @media (max-width: 600px) {
      .bio-quote p { font-size: 1.15rem; }
    }

    /* ── "Um método já validado" — mobile: mesma div escura, foto em cima, texto embaixo ── */
    .bio-photo { display: none; }
    @media (max-width: 767px) {
      .bio-wrap {
        min-height: 0;
        padding: 0 0 40px;
        background: #1c0e07;
      }
      /* sem foto de fundo atrás do texto */
      .bio-wrap::before,
      .bio-wrap::after { display: none; }

      /* foto como bloco no topo do card */
      .bio-photo {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 0 26px;
      }

      /* textos embaixo, dentro do mesmo card escuro */
      .bio-body {
        max-width: 100%;
        padding: 0 22px;
        text-align: center;
      }
      .bio-p { margin-left: auto; margin-right: auto; }
      .bio-quote {
        border-left: 0;
        padding-left: 0;
        text-align: center;
      }
    }
    .footer-link {
      font-family: 'DM Mono', monospace;
      font-size: .6rem;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--text-light);
      text-decoration: underline;
    }
    .footer-button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }
    .modal-bg--center {
      align-items: center;
      padding: 20px;
    }
    .lgpd-box {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 580px;
      max-height: 88vh;
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(76,35,13,.18);
      animation: sheetUp .38s cubic-bezier(.32,1.1,.68,1) both;
    }
    .lgpd-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 28px 16px;
      border-bottom: 1px solid var(--line);
      flex-shrink: 0;
    }
    .lgpd-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: .04em;
      color: var(--text);
      line-height: 1;
    }
    .lgpd-close {
      width: 32px;
      height: 32px;
      border-radius: 99px;
      border: none;
      background: var(--bg-card);
      color: var(--text-mid);
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-left: 12px;
    }
    .lgpd-content {
      overflow-y: auto;
      padding: 24px 28px 32px;
      flex: 1;
    }
    .lgpd-label {
      font-family: 'DM Mono', monospace;
      font-size: .6rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 6px;
    }
    .lgpd-label--spaced { margin-top: 20px; }
    .lgpd-copy {
      font-size: .85rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-mid);
      margin-bottom: 14px;
    }
    .lgpd-copy--small {
      font-size: .72rem;
      color: rgba(107,84,67,.6);
      margin-top: 16px;
      margin-bottom: 0;
    }
    .lgpd-list {
      list-style: none;
      margin: 0 0 14px 4px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .lgpd-list li {
      position: relative;
      padding-left: 18px;
      font-size: .85rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-mid);
    }
    .lgpd-list li::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--red);
      font-weight: 600;
    }

    /* ══════════════════════════════════════
       OTIMIZAÇÕES v2 — ESTILO, GALERIAS E CENTRALIZAÇÕES
    ══════════════════════════════════════ */

    /* Galeria de procedimentos — hover interativo */
    .proc-gallery__item {
      cursor: pointer;
      transition:
        transform .38s cubic-bezier(.25,.46,.45,.94),
        box-shadow .38s ease;
    }
    .proc-gallery__item:hover {
      transform: translateY(-7px);
      box-shadow: 0 40px 88px rgba(76,35,13,.28);
    }
    .proc-gallery__item::before {
      transition: background .38s ease;
    }
    .proc-gallery__item:hover::before {
      background:
        linear-gradient(to top, rgba(76,35,13,.78), rgba(76,35,13,.16) 60%, transparent),
        radial-gradient(circle at 25% 18%, rgba(255,255,255,.32), transparent 36%);
    }
    .proc-gallery__item span {
      transition: letter-spacing .3s ease;
    }
    .proc-gallery__item:hover span {
      letter-spacing: .22em;
    }

    /* Proc-cards — hover lift */
    .proc-card {
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }
    .proc-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 32px 72px rgba(76,35,13,.14);
      border-color: rgba(90,25,3,.3);
    }

    /* Vídeos — hover */
    .video__item {
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .video__item:hover {
      transform: translateY(-5px);
      box-shadow: 0 32px 72px rgba(76,35,13,.2);
    }

    /* Indicadores — hover sutil */
    .ind {
      transition: padding-left .22s ease, background .22s ease;
      border-radius: 0 var(--r-sm) var(--r-sm) 0;
    }
    @media (hover: hover) and (pointer: fine) {
      .ind:hover {
        padding-left: 8px;
        background: rgba(90,25,3,.04);
      }
    }

    /* FAQ — hover na pergunta */
    .faq-item summary {
      transition: color .2s, padding-left .2s;
    }
    .faq-item summary:hover {
      color: var(--red);
      padding-left: 6px;
    }

    /* ── Carousel nav buttons ── */
    .how-carousel__btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,.32);
      background: rgba(76,35,13,.52);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: #fff;
      font-size: .85rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .22s, border-color .22s, transform .18s;
    }
    .how-carousel__btn--prev { left: 14px; }
    .how-carousel__btn--next { right: 14px; }
    .how-carousel__btn:hover {
      background: rgba(90,25,3,.82);
      border-color: rgba(255,255,255,.65);
      transform: translateY(-50%) scale(1.09);
    }
    .how-carousel__btn:active { transform: translateY(-50%) scale(.93); }

    /* Dot ativo no carousel */
    .how-carousel__dots span {
      transition: background .35s ease, height .35s ease;
    }
    .how-carousel__dots span.active {
      background: rgba(255,255,255,.9);
      height: 3px;
    }

    /* Bio-wrap, form-wrap e cta — max-width em telas largas */
    @media (min-width: 1160px) {
      .bio-wrap {
        max-width: 1124px;
        margin-left: auto;
        margin-right: auto;
      }
      .form-wrap {
        max-width: 1124px;
        margin-left: auto;
        margin-right: auto;
      }
      .cta {
        max-width: 1124px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* Proof section — contraste do número */
    .ind__num {
      opacity: .88;
      transition: opacity .22s ease;
    }
    @media (hover: hover) and (pointer: fine) {
      .ind:hover .ind__num { opacity: 1; }
    }

    /* Botão claro com borda mais definida no hover */
    .hero .btn--ghost:hover,
    .bio-wrap .btn--ghost:hover {
      background: rgba(255,255,255,.14);
      border-color: rgba(255,255,255,.75);
    }

    /* CTA — melhor centralização do botão */
    .cta .btn {
      max-width: 340px;
      display: flex;
      margin-left: auto;
      margin-right: auto;
    }

    /* Placeholder de vídeo — ícone de play */
    .video__placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .video__placeholder::before {
      content: '';
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 2px solid rgba(90,25,3,.28);
      background: rgba(90,25,3,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235A1903' opacity='0.5'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: 55% center;
      background-size: 28px;
      flex-shrink: 0;
    }

    /* Proof section — melhor espaçamento desktop */
    @media (min-width: 900px) {
      .proof__head { padding-right: 20px; }
    }

    /* Seção vídeos — título e head melhor centralizados */
    #videos .dates__head {
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Form — linha sutil nos campos ao preencher */
    .fld input:valid:not(:placeholder-shown),
    .fld select:valid,
    .fld textarea:valid:not(:placeholder-shown) {
      border-color: rgba(90,25,3,.45);
    }

    /* Scroll suave dentro do modal LGPD */
    .lgpd-content { scroll-behavior: smooth; }
    .lgpd-content::-webkit-scrollbar { width: 3px; }
    .lgpd-content::-webkit-scrollbar-track { background: transparent; }
    .lgpd-content::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

    /* ══════════════════════════════════════
       TONS DE VERMELHO — aplicação elegante
    ══════════════════════════════════════ */

    /* 1 · Label — linha em gradiente crimson */
    .lbl::before {
      background: linear-gradient(to right, var(--red), var(--red-accent));
      width: 22px;
      height: 2px;
    }

    /* 2 · Botão sólido (seções claras) — gradiente vermelho com brilho interno */
    .btn--solid {
      background: linear-gradient(135deg, var(--red-accent) 0%, var(--red) 100%);
      box-shadow: 0 6px 22px rgba(139,26,16,.32), inset 0 1px 0 rgba(255,255,255,.18);
    }
    .btn--solid:hover {
      background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(139,26,16,.44), inset 0 1px 0 rgba(255,255,255,.24);
    }
    /* Botões beige em seções escuras — shimmer suave via background-position (anima limpo, sem flicker) */
    .hero .btn--solid,
    .form-wrap .btn--solid,
    .cta .btn--solid {
      background-image: linear-gradient(100deg, var(--bg) 0%, var(--bg) 38%, #fff 50%, var(--bg) 62%, var(--bg) 100%);
      background-size: 240% 100%;
      background-position: 100% 0;
      color: var(--bg-dark);
      box-shadow: 0 8px 26px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.6);
      transition: background-position .7s cubic-bezier(.2,.8,.2,1), transform .2s ease, box-shadow .3s ease;
    }
    .hero .btn--solid:hover,
    .form-wrap .btn--solid:hover,
    .cta .btn--solid:hover {
      background-position: 0% 0;
      color: var(--bg-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.8);
    }
    /* Sweep genérico desligado nesses botões claros — o shimmer acima já cobre o efeito */
    .hero .btn--solid::before,
    .form-wrap .btn--solid::before,
    .cta .btn--solid::before {
      display: none;
    }

    /* 3 · Hero — fio separador vermelho */
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(
        to right,
        transparent 0%,
        rgba(139,26,16,.22) 18%,
        rgba(168,35,21,.5) 50%,
        rgba(139,26,16,.22) 82%,
        transparent 100%
      );
      z-index: 5;
      pointer-events: none;
    }

    /* 4 · Indicadores — borda esquerda vermelha ao hover (só mouse) */
    .ind {
      border-left: 2.5px solid transparent;
      transition:
        border-left-color .25s ease,
        padding-left .22s ease,
        background .22s ease;
    }
    @media (hover: hover) and (pointer: fine) {
      .ind:hover { border-left-color: var(--red); }
    }

    /* 5 · Como funciona — traço vermelho antes de cada item */
    .how-list .ind { padding-left: 0; }

    /* 6 · Proc-card — faixa vermelha no topo (::after para não conflitar com ::before) */
    .proc-card {
      position: relative;
      overflow: hidden;
    }


    /* 7 · FAQ aberto — borda esquerda vermelha */
    .faq-item { border-left: 2.5px solid transparent; transition: border-left-color .22s; }
    .faq-item[open] { border-left-color: var(--red); }

    /* 8 · Inputs — glow vermelho no foco */
    .fld input:focus,
    .fld textarea:focus,
    .fld select:focus {
      border-color: var(--red) !important;
      box-shadow: 0 0 0 3.5px rgba(139,26,16,.18);
    }

    /* 9 · Carrossel — sombra e borda com tom vermelho */
    .how-carousel {
      border-color: rgba(139,26,16,.2);
      box-shadow:
        0 24px 60px rgba(139,26,16,.14),
        0 0 0 1px rgba(139,26,16,.1);
    }

    /* 10 · Bio — sublinhado vermelho em "BigBuum" */
    .bio-name .bio-name__light {
      text-decoration: underline;
      text-decoration-color: rgba(139,26,16,.42);
      text-underline-offset: 6px;
      text-decoration-thickness: 2px;
    }

    /* 11 · Prova — sublinhado sutil na palavra em destaque */
    .proof__h2 span {
      text-decoration: underline;
      text-decoration-color: rgba(139,26,16,.3);
      text-underline-offset: 5px;
      text-decoration-thickness: 2px;
    }

    /* 12 · Scrollbar — gradiente crimson */
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(to bottom, var(--red-accent), var(--red-dark));
    }

    /* Número indicador — ligeiramente maior + transição */
    .ind__num {
      opacity: .82;
      transition: opacity .22s, color .22s;
    }
    @media (hover: hover) and (pointer: fine) {
      .ind:hover .ind__num:not(.num-sq) { opacity: 1; color: var(--red-accent); }
      .ind:hover .num-sq { opacity: 1; color: #fff; }
      .ind:hover .num-sq {
        transform: translateY(-3px) scale(1.05);
        box-shadow:
          0 14px 26px rgba(76,35,13,.4),
          inset 0 1px 0 rgba(255,255,255,.32),
          inset 0 -6px 10px rgba(0,0,0,.16);
      }
    }

    /* Divisor dos indicadores — linha suave em degradê */
    .ind {
      border-bottom: none;
      background-image: linear-gradient(to right, var(--line), transparent 85%);
      background-repeat: no-repeat;
      background-position: bottom;
      background-size: 100% 1px;
    }
    .ind:last-child { background-image: none; }

    /* ══════════════════════════════════════
       MOBILE — centralização e quebras
    ══════════════════════════════════════ */
    @media (max-width: 600px) {

      /* text-wrap: balance em todos os títulos de seção */
      .proof__h2, .proc__title, .form-h2, .bio-name,
      .dates__title, .ba-title, .faq__title, .cta__title {
        text-wrap: balance;
      }

      /* Hero copy */
      .hero__body { text-align: center; }
      .hero__body .lbl { justify-content: center; }
      .hero__h1 { text-wrap: balance; }
      .hero__sub {
        max-width: 28ch;
        margin-inline: auto;
        text-wrap: balance;
      }

      /* Subtítulos de seção — quebra equilibrada */
      .proof__p,
      .proc__intro,
      .form-sub,
      .bio-p,
      .how-section__copy .proof__p,
      .faq__sub,
      .cta__p {
        max-width: 32ch;
        margin-inline: auto;
        text-wrap: balance;
      }

      /* How-section */
      .how-section__copy { text-align: center; }
      .how-section__copy .lbl { justify-content: center; }
      .how-list .ind { justify-content: center; }

      /* Proc-cards — centrar cabeçalho interno */
      .proc-card { text-align: center; }
      .proc-list  { text-align: left; display: inline-block; }

      /* CTA */
      .cta__title { margin-inline: auto; text-wrap: balance; }

      /* FAQ */
      .faq__head  { text-align: center; }
      .faq__title { text-align: center; margin-inline: auto; }

      /* Bio-quote fica left-aligned mas centralizado na seção */
      .bio-quote {
        text-align: left;
        max-width: 36ch;
        margin-inline: auto;
      }

      /* Dates (Como funciona / Datas) */
      .dates__head { text-align: center; }
      .dates__head .lbl { justify-content: center; }
      .dates__title { text-align: center; text-wrap: balance; }

      /* Antes e depois */
      .ba-head { text-align: center; }
      .ba-title { text-wrap: balance; }
    }

