/**
 * AI Coach Pro — Copa Theme
 * =====================================
 * Match-day aesthetic: deep arena green + trophy gold + stadium typography.
 * Deliberately avoids the literal Brazilian-flag look (green/yellow/blue gradients,
 * soccer & flag emojis, generic sans). Instead leans into the look of a printed
 * match-day programme: floodlit pitch, scoreboard numerals, halftone print,
 * one editorial-italic accent word, and a single sharp gold against deep forest.
 *
 * Scope: load on pages that surface the Copa promo. All rules are namespaced
 * under `.copa-*` so the rest of the app's design system is untouched.
 */

/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;700;800;900&family=Fraunces:ital,opsz,wght@1,144,400;1,144,500&family=JetBrains+Mono:wght@500;700&display=swap');

/* ========== TOKENS ========== */
:root {
  /* Pitch — deep forest, night side */
  --copa-pitch-1:        #0a1d14;   /* shadow side of grass */
  --copa-pitch-2:        #102a1d;   /* lit grass */
  --copa-pitch-3:        #163d2b;   /* highlight stripe */
  --copa-pitch-ink:      #06140d;   /* deepest shadow */

  /* Trophy — single sharp accent. Not flag-yellow. */
  --copa-gold:           #d4a017;
  --copa-gold-hi:        #f0c75e;
  --copa-gold-deep:      #8a6510;
  --copa-cream:          #fff5dc;   /* paper / programme stock */

  /* Floodlight */
  --copa-glow:           rgba(240, 199, 94, 0.32);
  --copa-glow-soft:      rgba(240, 199, 94, 0.10);

  /* Lines */
  --copa-line:           rgba(255, 245, 220, 0.18);
  --copa-line-soft:      rgba(255, 245, 220, 0.08);

  /* Fonts */
  --copa-font-display:   'Big Shoulders Display', 'Impact', sans-serif;
  --copa-font-editorial: 'Fraunces', 'Times New Roman', serif;
  --copa-font-mono:      'JetBrains Mono', ui-monospace, monospace;
}

/* ========== TEXTURES (reusable) ========== */
.copa-halftone {
  background-image: radial-gradient(rgba(255, 245, 220, 0.07) 1px, transparent 1.4px);
  background-size: 9px 9px;
  background-position: 0 0;
}

.copa-pitch-lines {
  /* Subtle white pitch-stripe — single vertical mid-line + faint horizontal bands */
  background-image:
    linear-gradient(180deg, transparent 0, transparent calc(50% - 1px), var(--copa-line) calc(50% - 1px), var(--copa-line) calc(50% + 1px), transparent calc(50% + 1px)),
    repeating-linear-gradient(90deg, var(--copa-pitch-2) 0, var(--copa-pitch-2) 48px, var(--copa-pitch-3) 48px, var(--copa-pitch-3) 96px);
}

/* ========== FLOODLIGHT SWEEP ========== */
@keyframes copa-floodlight {
  0%, 100% { transform: translateX(-30%) rotate(8deg); opacity: 0.45; }
  50%      { transform: translateX(30%) rotate(8deg); opacity: 0.75; }
}

@keyframes copa-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================================== */
/* BANNER — slim top-of-hero strip                            */
/* ========================================================== */
.copa-banner {
  position: relative;
  margin-bottom: 40px;
  padding: 18px 22px 20px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(120% 220% at 50% -40%, rgba(240, 199, 94, 0.18), transparent 55%),
    linear-gradient(135deg, var(--copa-pitch-ink) 0%, var(--copa-pitch-1) 55%, var(--copa-pitch-2) 100%);
  border: 1px solid rgba(212, 160, 23, 0.32);
  box-shadow:
    0 0 0 1px rgba(255, 245, 220, 0.04) inset,
    0 18px 48px -20px rgba(0, 0, 0, 0.7),
    0 0 60px -12px var(--copa-glow);
  text-align: center;
  color: var(--copa-cream);
  animation: copa-rise 0.7s ease both;
}

.copa-banner::before {
  /* Scanline tech layer */
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.02) 3px 4px);
  pointer-events: none;
}

.copa-banner::after {
  /* Slow floodlight sweep across the banner */
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: linear-gradient(90deg, transparent, var(--copa-glow), transparent);
  filter: blur(20px);
  animation: copa-floodlight 6s ease-in-out infinite;
  pointer-events: none;
}

.copa-banner__eyebrow {
  position: relative;
  font-family: var(--copa-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copa-gold-hi);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.copa-banner__eyebrow::before,
.copa-banner__eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--copa-gold));
}
.copa-banner__eyebrow::after { background: linear-gradient(90deg, var(--copa-gold), transparent); }

.copa-banner__headline {
  position: relative;
  margin: 8px 0 4px;
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--copa-cream);
  line-height: 1.1;
  text-transform: uppercase;
}

.copa-banner__price {
  font-family: var(--copa-font-mono);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--copa-pitch-ink);
  background: var(--copa-gold-hi);
  padding: 2px 10px;
  border-radius: 4px;
  margin: 0 6px;
  box-shadow: 0 2px 0 0 var(--copa-gold-deep);
}

.copa-banner__sub {
  position: relative;
  font-family: var(--copa-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 245, 220, 0.62);
  margin-top: 7px;
}

.copa-banner__sub strong {
  font-weight: 700;
  color: var(--copa-gold-hi);
}

/* Brackets HUD nos cantos do banner */
.copa-banner .copa-hud-tl,
.copa-banner .copa-hud-br {
  position: absolute;
  width: 16px; height: 16px;
  border-color: rgba(240, 199, 94, 0.6);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}
.copa-banner .copa-hud-tl { top: 6px; left: 6px; border-width: 1.5px 0 0 1.5px; }
.copa-banner .copa-hud-br { bottom: 6px; right: 6px; border-width: 0 1.5px 1.5px 0; }

/* ========================================================== */
/* HERO CTA — primary "campaign" button                       */
/* ========================================================== */
.copa-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px 16px 28px;
  border-radius: 10px;
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--copa-pitch-ink);
  background: linear-gradient(180deg, var(--copa-gold-hi) 0%, var(--copa-gold) 100%);
  border: 1px solid var(--copa-gold-deep);
  box-shadow:
    0 2px 0 var(--copa-gold-deep),
    0 14px 30px -10px var(--copa-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.copa-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 4px 0 var(--copa-gold-deep),
    0 22px 40px -10px var(--copa-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: var(--copa-pitch-ink);
}

.copa-cta__trophy {
  display: inline-block;
  width: 16px; height: 18px;
  flex-shrink: 0;
}

/* ========================================================== */
/* SECTION CARD — dedicated promo panel                       */
/* ========================================================== */
.copa-section {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 3.25rem 2rem 3rem;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(85% 60% at 50% 0%, rgba(240, 199, 94, 0.10), transparent 60%),
    radial-gradient(60% 70% at 100% 100%, rgba(22, 61, 43, 0.6), transparent 60%),
    linear-gradient(165deg, var(--copa-pitch-ink) 0%, var(--copa-pitch-1) 50%, var(--copa-pitch-2) 100%);
  border: 1px solid rgba(212, 160, 23, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 220, 0.05),
    0 30px 80px -30px rgba(0, 0, 0, 0.8);
  text-align: center;
  color: var(--copa-cream);
  isolation: isolate;
}

.copa-section::before {
  /* Grid tech layer */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, transparent calc(100% - 1px), rgba(240, 199, 94, 0.05) calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(240, 199, 94, 0.05) calc(100% - 1px));
  background-size: 40px 40px;
  mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.copa-section::after {
  /* Faint pitch midline as decoration */
  content: '';
  position: absolute;
  top: 24px; bottom: 24px; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--copa-line), transparent);
  pointer-events: none;
  z-index: 0;
}

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

.copa-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--copa-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--copa-gold-hi);
  margin-bottom: 1.25rem;
}

.copa-section__eyebrow svg {
  width: 14px; height: 16px;
}

.copa-section__title {
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--copa-cream);
  margin: 0 0 1.25rem;
}

.copa-section__title em {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--copa-font-mono);
  font-weight: 500;
  font-style: normal;
  font-size: 0.3em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copa-gold-hi);
  line-height: 1.4;
}

.copa-section__price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 0.5rem auto 1.5rem;
  font-family: var(--copa-font-mono);
  color: var(--copa-cream);
}

.copa-section__price-line del {
  font-size: 1.05rem;
  color: rgba(255, 245, 220, 0.4);
  text-decoration-thickness: 1px;
}

.copa-section__price-line strong {
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 4.6rem);
  line-height: 1;
  color: var(--copa-gold-hi);
  text-shadow: 0 0 40px var(--copa-glow);
  letter-spacing: -0.01em;
}

.copa-section__price-line strong sup {
  font-size: 0.35em;
  vertical-align: top;
  margin-right: 4px;
  color: var(--copa-cream);
}

.copa-section__price-line strong small {
  font-size: 0.45em;
  font-weight: 700;
  color: rgba(255, 245, 220, 0.7);
}

.copa-section__lede {
  font-size: 0.98rem;
  color: rgba(255, 245, 220, 0.65);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  letter-spacing: -0.005em;
}

.copa-pills {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}

.copa-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 245, 220, 0.04);
  border: 1px solid var(--copa-line);
  color: var(--copa-cream);
  font-family: var(--copa-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.copa-pill svg {
  width: 12px; height: 12px;
  color: var(--copa-gold-hi);
  flex-shrink: 0;
}

.copa-section__foot {
  margin-top: 1.5rem;
  font-family: var(--copa-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.42);
}

/* ========================================================== */
/* PRICING — promo header above plan grid                     */
/* ========================================================== */
.copa-pricing-header {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem 1.75rem;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(240, 199, 94, 0.10), transparent 60%),
    linear-gradient(135deg, var(--copa-pitch-1), var(--copa-pitch-2));
  border: 1px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.6);
}

.copa-pricing-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 245, 220, 0.04) 1px, transparent 1.4px);
  background-size: 10px 10px;
  pointer-events: none;
}

.copa-pricing-header__tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 4px;
  background: var(--copa-gold);
  color: var(--copa-pitch-ink);
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 2px 0 var(--copa-gold-deep);
}

.copa-pricing-header__tag svg { width: 12px; height: 14px; }

.copa-pricing-header__title {
  position: relative;
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--copa-cream);
  margin: 8px 0 6px;
  line-height: 1.05;
}

.copa-pricing-header__sub {
  position: relative;
  font-family: var(--copa-font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255, 245, 220, 0.6);
  margin: 0;
}

.copa-pricing-header__sub strong {
  font-weight: 700;
  color: var(--copa-gold-hi);
}

/* ========================================================== */
/* PLAN CARD — Copa edition                                   */
/* Replaces the floating .pc-pricing-badge with a flush gold  */
/* header band at top of the card. Eliminates the clipping    */
/* caused by .pc-pricing-wrap's overflow-x: auto (which       */
/* per spec forces overflow-y to compute to auto too).        */
/* ========================================================== */
.copa-plan-shell {
  position: relative;
  overflow: hidden;            /* clip the band corners to the radius */
  padding-top: 60px !important; /* room for the gold header band */
  border: 1px solid rgba(212, 160, 23, 0.55) !important;
  background:
    radial-gradient(85% 60% at 50% 0%, rgba(240, 199, 94, 0.10), transparent 55%),
    linear-gradient(165deg, rgba(22, 61, 43, 0.55), rgba(10, 29, 20, 0.55)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 220, 0.05),
    0 0 0 1px rgba(212, 160, 23, 0.18),
    0 0 60px -12px var(--copa-glow-soft) !important;
}

/* Subtle halftone over the whole card */
.copa-plan-shell::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 245, 220, 0.05) 1px, transparent 1.4px);
  background-size: 10px 10px;
  pointer-events: none;
  z-index: 0;
}
.copa-plan-shell > * { position: relative; z-index: 1; }

/* The badge re-purposed as a flush header band */
.copa-plan-shell .copa-plan-badge {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px !important;
  background: linear-gradient(180deg, var(--copa-gold-hi) 0%, var(--copa-gold) 100%) !important;
  color: var(--copa-pitch-ink) !important;
  font-family: var(--copa-font-display) !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--copa-gold-deep);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2) inset;
  z-index: 2;
}

.copa-plan-shell .copa-plan-badge svg { width: 13px; height: 15px; }

/* --- Price treatment: scoreboard mono --- */
.copa-plan-shell .pc-pricing-plan {
  font-family: var(--copa-font-display) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 0.36em !important;
  color: var(--copa-gold-hi) !important;
  margin-bottom: 14px !important;
}

.copa-plan-shell .pc-pricing-price {
  font-family: var(--copa-font-display) !important;
  font-weight: 900 !important;
  font-size: 64px !important;
  line-height: 0.95 !important;
  color: var(--copa-cream) !important;
  letter-spacing: -0.01em !important;
  text-shadow: 0 0 40px var(--copa-glow);
}

.copa-plan-shell .pc-pricing-price small {
  font-family: var(--copa-font-mono) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--copa-gold-hi) !important;
  letter-spacing: 0;
  margin-left: 2px;
}

.copa-plan-shell .pc-pricing-period {
  font-family: var(--copa-font-mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
  color: rgba(255, 245, 220, 0.55) !important;
  margin-bottom: 6px !important;
}

.copa-plan-shell .pc-pricing-period del {
  color: rgba(255, 245, 220, 0.45) !important;
  opacity: 1 !important;
  text-decoration-color: var(--copa-gold);
  text-decoration-thickness: 1.5px;
}

/* --- Feature list: gold checks --- */
.copa-plan-shell .pc-pricing-features li {
  color: var(--copa-cream) !important;
  border-bottom-color: var(--copa-line-soft) !important;
}

.copa-plan-shell .pc-pricing-features li::before {
  background-color: rgba(212, 160, 23, 0.14) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f0c75e' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") !important;
  box-shadow: 0 0 0 1px rgba(212, 160, 23, 0.25) inset;
}

/* --- CTA: override the .featured .pc-pricing-btn teal gradient --- */
.copa-plan-shell .pc-pricing-btn,
.pc-pricing-card.featured .pc-pricing-btn.copa-cta {
  display: block !important;
  width: 100% !important;
  padding: 16px 24px !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, var(--copa-gold-hi) 0%, var(--copa-gold) 100%) !important;
  color: var(--copa-pitch-ink) !important;
  font-family: var(--copa-font-display) !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  border: 1px solid var(--copa-gold-deep) !important;
  box-shadow:
    0 2px 0 var(--copa-gold-deep),
    0 14px 30px -10px var(--copa-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}

.copa-plan-shell .pc-pricing-btn:hover,
.pc-pricing-card.featured .pc-pricing-btn.copa-cta:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.04);
  color: var(--copa-pitch-ink) !important;
  background: linear-gradient(180deg, var(--copa-gold-hi) 0%, var(--copa-gold) 100%) !important;
  box-shadow:
    0 4px 0 var(--copa-gold-deep),
    0 22px 40px -10px var(--copa-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.copa-plan-shell .pc-pricing-note {
  font-family: var(--copa-font-mono) !important;
  color: rgba(255, 245, 220, 0.5) !important;
  letter-spacing: 0.02em;
  margin-top: 12px !important;
}

/* Override the teal .featured outline */
.pc-pricing-card.featured.copa-plan-shell {
  border-color: rgba(212, 160, 23, 0.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 220, 0.05),
    0 0 0 1px rgba(212, 160, 23, 0.2),
    0 0 60px -8px var(--copa-glow-soft) !important;
}

/* Savings pill inside .plan-card */
.copa-savings-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: rgba(212, 160, 23, 0.12) !important;
  color: var(--copa-gold-hi) !important;
  border: 1px solid rgba(212, 160, 23, 0.4) !important;
  font-family: var(--copa-font-mono) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px !important;
  border-radius: 4px !important;
}

.copa-savings-pill svg { width: 11px; height: 12px; }

/* ========================================================== */
/* TRANSFORMAÇÕES — Antes & depois com foto                   */
/* Editorial card: photo on top with overlaid gold result     */
/* chip, body strip below in cream/gold. Mobile = carousel.   */
/* ========================================================== */
.trans-shell { position: relative; }

.trans-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.trans-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(22, 34, 60, 0.55), rgba(10, 12, 28, 0.55));
  border: 1px solid rgba(255, 245, 220, 0.08);
  box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.7);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.trans-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.32);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.75),
    0 0 70px -22px var(--copa-glow);
}

.trans-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--copa-pitch-ink);
}

.trans-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transition: transform .6s ease;
}

.trans-card:hover .trans-photo img { transform: scale(1.04); }

.trans-photo::after {
  /* Photo legibility wash — top transparent, bottom darker, for chip contrast */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 20, 13, 0.55) 100%);
  pointer-events: none;
}

.trans-result {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--copa-gold-hi) 0%, var(--copa-gold) 100%);
  color: var(--copa-pitch-ink);
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 0 var(--copa-gold-deep), 0 10px 24px -8px rgba(0, 0, 0, 0.55);
}

.trans-result svg { width: 14px; height: 14px; flex-shrink: 0; }
.trans-result strong {
  font-family: var(--copa-font-mono);
  font-weight: 700;
  font-size: 0.96em;
  letter-spacing: -0.02em;
}

.trans-body {
  position: relative;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(212, 160, 23, 0.18);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(240, 199, 94, 0.05), transparent 70%),
    transparent;
}

.trans-name {
  font-family: var(--copa-font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--copa-cream);
  margin: 0 0 6px;
}

.trans-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-family: var(--copa-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copa-gold-hi);
  margin-bottom: 10px;
}

.trans-meta-sep {
  opacity: 0.4;
  color: var(--copa-cream);
}

.trans-meta-item {
  display: inline-flex;
  align-items: center;
}

.trans-quote {
  margin: 0;
  font-family: var(--copa-font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 245, 220, 0.78);
}

.trans-quote::before {
  content: '\201C';
  color: var(--copa-gold-hi);
  margin-right: 2px;
}
.trans-quote::after {
  content: '\201D';
  color: var(--copa-gold-hi);
  margin-left: 2px;
}

/* Mobile carousel */
@media (max-width: 820px) {
  .trans-track {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 1.25rem;
    padding: 6px 1.25rem 18px;
    margin: 0 -1.25rem;
    scrollbar-width: none;
  }
  .trans-track::-webkit-scrollbar { display: none; }

  .trans-card {
    flex: 0 0 78%;
    max-width: 320px;
    scroll-snap-align: center;
  }
}

/* ========================================================== */
/* TESTIMONIALS — "Resultados em campo"                       */
/* Editorial cards with a gold result-chip up top, big        */
/* watermark quote glyph, scoreboard avatar, gold stars.      */
/* On mobile collapses to a snap-scroll carousel.             */
/* ========================================================== */
.depo-shell { position: relative; }

.depo-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.depo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 26px 24px;
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(240, 199, 94, 0.06), transparent 45%),
    linear-gradient(165deg, rgba(22, 34, 60, 0.55), rgba(10, 12, 28, 0.55));
  border: 1px solid rgba(255, 245, 220, 0.08);
  box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.7);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.depo-card::before {
  /* Watermark quote glyph — large, low-contrast, top-right */
  content: '\201C';
  position: absolute;
  top: -28px; right: -6px;
  font-family: var(--copa-font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 200px;
  line-height: 1;
  color: rgba(240, 199, 94, 0.07);
  pointer-events: none;
}

.depo-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 245, 220, 0.035) 1px, transparent 1.4px);
  background-size: 11px 11px;
  pointer-events: none;
}

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

.depo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.32);
  box-shadow: 0 28px 60px -22px rgba(0, 0, 0, 0.75), 0 0 60px -20px var(--copa-glow);
}

/* Result chip — the lead element of every card */
.depo-result {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--copa-gold-hi) 0%, var(--copa-gold) 100%);
  color: var(--copa-pitch-ink);
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 0 var(--copa-gold-deep), 0 8px 22px -10px var(--copa-glow);
}

.depo-result svg {
  width: 14px; height: 14px; flex-shrink: 0;
}

.depo-result strong {
  font-family: var(--copa-font-mono);
  font-weight: 700;
  font-size: 0.96em;
  letter-spacing: -0.02em;
}

/* The quote — the hero of the card */
.depo-quote {
  margin: 0;
  font-family: var(--copa-font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--copa-cream);
  letter-spacing: -0.005em;
}

.depo-quote::before {
  content: '\201C';
  margin-right: 2px;
  color: var(--copa-gold-hi);
}
.depo-quote::after {
  content: '\201D';
  margin-left: 2px;
  color: var(--copa-gold-hi);
}

/* Footer — avatar / name / rating */
.depo-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--copa-line-soft);
  margin-top: auto;
}

.depo-avatar {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(155deg, rgba(212, 160, 23, 0.18), rgba(22, 61, 43, 0.4));
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--copa-gold-hi);
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.depo-id { display: flex; flex-direction: column; gap: 2px; }

.depo-name {
  font-family: var(--copa-font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--copa-cream);
}

.depo-meta {
  font-family: var(--copa-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 245, 220, 0.5);
}

.depo-rating {
  margin-left: auto;
  display: inline-flex;
  gap: 2px;
  color: var(--copa-gold-hi);
}
.depo-rating svg { width: 13px; height: 13px; }

/* Mobile carousel — flex + scroll-snap */
.depo-hint {
  display: none;
  margin: 14px auto 0;
  text-align: center;
  font-family: var(--copa-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.4);
}

@media (max-width: 820px) {
  .depo-track {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 1.25rem;
    padding: 6px 1.25rem 18px;
    margin: 0 -1.25rem;
    scrollbar-width: none;
  }
  .depo-track::-webkit-scrollbar { display: none; }

  .depo-card {
    flex: 0 0 86%;
    max-width: 360px;
    scroll-snap-align: center;
  }

  .depo-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .depo-hint svg { width: 14px; height: 8px; }
}

/* ========================================================== */
/* COUNTDOWN — urgência com prazo real (fim do dia)           */
/* ========================================================== */
.copa-countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(6, 20, 13, 0.55);
  border: 1px solid rgba(212, 160, 23, 0.4);
}

.copa-countdown__label {
  font-family: var(--copa-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.6);
}

.copa-countdown__digits {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--copa-font-mono);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--copa-gold-hi);
  text-shadow: 0 0 18px var(--copa-glow);
  font-variant-numeric: tabular-nums;
}

.copa-countdown__digits small {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 245, 220, 0.5);
  margin-right: 2px;
}

/* ========================================================== */
/* STICKY BAR — CTA persistente mobile na landing             */
/* ========================================================== */
.copa-stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1040;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(6, 20, 13, 0.94), rgba(6, 20, 13, 0.99));
  border-top: 1px solid rgba(212, 160, 23, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}

.copa-stickybar.show { transform: translateY(0); }

.copa-stickybar__info { min-width: 0; }

.copa-stickybar__price {
  font-family: var(--copa-font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--copa-gold-hi);
  white-space: nowrap;
}

.copa-stickybar__price del {
  font-size: 11px;
  color: rgba(255, 245, 220, 0.4);
  margin-right: 6px;
}

.copa-stickybar__timer {
  font-family: var(--copa-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 245, 220, 0.55);
  text-transform: uppercase;
  white-space: nowrap;
}

.copa-stickybar__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--copa-gold-hi), var(--copa-gold));
  color: var(--copa-pitch-ink);
  text-decoration: none;
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--copa-gold-deep);
  box-shadow: 0 2px 0 var(--copa-gold-deep), 0 10px 24px -8px var(--copa-glow);
}

.copa-stickybar__cta:hover { color: var(--copa-pitch-ink); filter: brightness(1.05); }

@media (max-width: 820px) {
  .copa-stickybar { display: flex; }
}

/* ========================================================== */
/* GOAL PICKER — "target select" HUD                          */
/* ========================================================== */
.copa-goal {
  max-width: 680px;
  margin: 30px auto 12px;
}

.copa-goal__label {
  font-family: var(--copa-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.55);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.copa-goal__label b {
  color: var(--copa-gold-hi);
  font-weight: 700;
}
.copa-goal__label::before,
.copa-goal__label::after {
  content: '';
  flex: 0 1 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5));
}
.copa-goal__label::after { background: linear-gradient(90deg, rgba(212, 160, 23, 0.5), transparent); }

.copa-goal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Card HUD: vidro escuro + brackets de mira nos cantos */
.copa-goal__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 16px 14px;
  border-radius: 6px;
  text-decoration: none;
  background: rgba(8, 10, 18, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 245, 220, 0.09);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

/* Brackets de mira (cantos superiores-esq e inferior-dir) */
.copa-goal__card::before,
.copa-goal__card::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: rgba(212, 160, 23, 0.55);
  border-style: solid;
  transition: all .18s ease;
  pointer-events: none;
}
.copa-goal__card::before {
  top: -1px; left: -1px;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 6px 0 0 0;
}
.copa-goal__card::after {
  bottom: -1px; right: -1px;
  border-width: 0 1.5px 1.5px 0;
  border-radius: 0 0 6px 0;
}

.copa-goal__card:hover {
  transform: translateY(-3px);
  background: rgba(12, 16, 26, 0.75);
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.8), 0 0 40px -14px var(--copa-glow);
}
.copa-goal__card:hover::before,
.copa-goal__card:hover::after {
  width: 22px; height: 22px;
  border-color: var(--copa-gold-hi);
}

/* Índice mono no canto (01 · 02 · 03) */
.copa-goal__idx {
  position: absolute;
  top: 10px; right: 12px;
  font-family: var(--copa-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 245, 220, 0.28);
  transition: color .18s ease;
}
.copa-goal__card:hover .copa-goal__idx { color: var(--copa-gold-hi); }

/* Ícone SVG em traço fino */
.copa-goal__icon {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: rgba(240, 199, 94, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--copa-gold-hi);
  transition: background .18s ease, box-shadow .18s ease;
}
.copa-goal__icon svg { width: 16px; height: 16px; }
.copa-goal__card:hover .copa-goal__icon {
  background: rgba(240, 199, 94, 0.16);
  box-shadow: 0 0 18px -4px var(--copa-glow);
}

.copa-goal__title {
  font-family: var(--copa-font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--copa-cream);
  line-height: 1.05;
}

.copa-goal__sub {
  font-family: var(--copa-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.42);
  display: flex;
  align-items: center;
  gap: 6px;
}
.copa-goal__sub::before {
  content: '▸';
  color: var(--copa-gold);
  font-size: 8px;
}

.copa-goal__hint {
  text-align: center;
  margin-top: 12px;
  font-family: var(--copa-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.32);
}
.copa-goal__hint b { color: rgba(240, 199, 94, 0.7); font-weight: 600; }

@media (max-width: 560px) {
  .copa-goal__grid { grid-template-columns: 1fr; gap: 8px; }
  .copa-goal__card {
    flex-direction: row;
    align-items: center;
    padding: 12px 14px;
    gap: 12px;
  }
  .copa-goal__icon { flex-shrink: 0; }
  .copa-goal__title { font-size: 15px; }
  .copa-goal__sub { display: none; }
  .copa-goal__idx { top: 50%; transform: translateY(-50%); }
}

/* ========================================================== */
/* PHONE DECO — cards de resultado flutuando ao lado do phone */
/* ========================================================== */
.copa-deco {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(10, 12, 22, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 18px 44px -16px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.copa-deco--left {
  left: -120px;
  top: 22%;
  animation: copaDecoFloatA 5.5s ease-in-out infinite;
}

.copa-deco--right {
  right: -128px;
  bottom: 24%;
  animation: copaDecoFloatB 6.5s ease-in-out infinite;
}

@keyframes copaDecoFloatA {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes copaDecoFloatB {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

.copa-deco__icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #34d399;
  flex-shrink: 0;
}
.copa-deco__icon svg { width: 14px; height: 14px; }

.copa-deco__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.copa-deco__num {
  font-family: var(--copa-font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}
.copa-deco--right .copa-deco__num { color: var(--copa-gold-hi); text-shadow: 0 0 18px var(--copa-glow-soft); }

.copa-deco__lbl {
  font-family: var(--copa-font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.45);
}

.copa-deco__spark {
  width: 54px;
  color: var(--copa-gold-hi);
  opacity: 0.9;
  flex-shrink: 0;
}
.copa-deco__spark svg { width: 100%; height: auto; display: block; }

/* Tablet: aproxima os cards */
@media (max-width: 900px) {
  .copa-deco--left { left: -88px; }
  .copa-deco--right { right: -92px; }
  .copa-deco { padding: 10px 13px; }
  .copa-deco__num { font-size: 15px; }
}

/* Mobile: cards sobrepõem as bordas do phone (não estouram a viewport) */
@media (max-width: 640px) {
  .copa-deco--left { left: -24px; top: 14%; }
  .copa-deco--right { right: -24px; bottom: 16%; }
  .copa-deco__spark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .copa-deco--left, .copa-deco--right { animation: none; }
}

/* ========================================================== */
/* PROOF BAND — data strip HUD após o hero                    */
/* ========================================================== */
.copa-proofband {
  position: relative;
  background: rgba(4, 6, 11, 0.6);
  padding: 20px 0;
  margin-top: 8px;
  overflow: hidden;
}

/* Hairlines de gradiente em cima e embaixo */
.copa-proofband::before,
.copa-proofband::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(212, 160, 23, 0.45) 50%, transparent 95%);
}
.copa-proofband::before { top: 0; }
.copa-proofband::after { bottom: 0; }

.copa-proofband__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
}

/* Scanline sutil */
.copa-proofband__row::before {
  content: '';
  position: absolute; inset: -20px 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.012) 3px 4px);
  pointer-events: none;
}

.copa-proofband__item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 0 30px;
}

.copa-proofband__item + .copa-proofband__item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 22px;
  background: linear-gradient(180deg, transparent, rgba(212, 160, 23, 0.4), transparent);
}

/* Tick de dado antes do número */
.copa-proofband__num {
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--copa-gold-hi);
  letter-spacing: 0.01em;
  text-shadow: 0 0 20px var(--copa-glow-soft);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.copa-proofband__num::before {
  content: '';
  width: 3px; height: 14px;
  background: var(--copa-gold);
  align-self: center;
  opacity: 0.7;
}

.copa-proofband__lbl {
  font-family: var(--copa-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.48);
}

@media (max-width: 700px) {
  .copa-proofband__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
  }
  .copa-proofband__item {
    padding: 0 14px;
    justify-content: flex-start;
  }
  .copa-proofband__item + .copa-proofband__item::before { display: none; }
  .copa-proofband__item:nth-child(even)::before {
    content: '';
    display: block;
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 22px;
    background: linear-gradient(180deg, transparent, rgba(212, 160, 23, 0.4), transparent);
  }
}

/* ========================================================== */
/* SIMULADOR DE PLANO — amostra personalizada sem cadastro    */
/* ========================================================== */
.copa-sim {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 15% 0%, rgba(240, 199, 94, 0.07), transparent 55%),
    linear-gradient(170deg, #0a0c18 0%, #0d1122 60%, #0a0e1c 100%);
  border: 1px solid rgba(212, 160, 23, 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 245, 220, 0.03),
    0 30px 70px -30px rgba(0, 0, 0, 0.8),
    0 0 70px -25px var(--copa-glow);
}

.copa-sim::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.012) 3px 4px);
  pointer-events: none;
  z-index: 1;
}

/* Brackets */
.copa-sim .copa-hud-tl,
.copa-sim .copa-hud-br {
  position: absolute;
  width: 16px; height: 16px;
  border-color: rgba(240, 199, 94, 0.7);
  border-style: solid;
  pointer-events: none;
  z-index: 3;
}
.copa-sim .copa-hud-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.copa-sim .copa-hud-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* Barra de título */
.copa-sim__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: rgba(4, 6, 12, 0.7);
  border-bottom: 1px solid rgba(212, 160, 23, 0.25);
  font-family: var(--copa-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.65);
}
.copa-sim__bar b { color: var(--copa-gold-hi); font-weight: 700; }
.copa-sim__bar::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  animation: copaLivePulse 1.8s ease-out infinite;
}
.copa-sim__bar-tag {
  margin-left: auto;
  padding: 3px 9px;
  border-radius: 3px;
  background: rgba(240, 199, 94, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--copa-gold-hi);
  font-size: 9px;
}

@keyframes copaLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.copa-sim__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

/* ── Coluna de inputs ── */
.copa-sim__in {
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 245, 220, 0.06);
}

.copa-sim__lbl {
  font-family: var(--copa-font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.45);
  margin: 16px 0 8px;
  display: block;
}
.copa-sim__lbl:first-child { margin-top: 0; }

.copa-sim__seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.copa-sim__seg--3 { grid-template-columns: 1fr 1fr 1fr; }

.copa-sim__opt {
  padding: 10px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 245, 220, 0.55);
  font-family: var(--copa-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: all .18s ease;
  user-select: none;
}
.copa-sim__opt:hover { border-color: rgba(212, 160, 23, 0.4); }
.copa-sim__opt.on {
  background: rgba(240, 199, 94, 0.12);
  border-color: var(--copa-gold);
  color: var(--copa-gold-hi);
  box-shadow: 0 0 16px -6px var(--copa-glow);
}

.copa-sim__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.copa-sim__field { position: relative; }
.copa-sim__field input {
  width: 100%;
  padding: 12px 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--copa-cream);
  font-family: var(--copa-font-mono);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.copa-sim__field input:focus {
  border-color: var(--copa-gold);
  box-shadow: 0 0 0 3px rgba(240, 199, 94, 0.12);
}
.copa-sim__field span {
  position: absolute;
  bottom: -16px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--copa-font-mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.35);
}

/* ── Coluna de resultado (a ficha) ── */
.copa-sim__out {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}

.copa-sim__kcal {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 245, 220, 0.07);
  margin-bottom: 14px;
}
.copa-sim__kcal-num {
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--copa-gold-hi);
  text-shadow: 0 0 30px var(--copa-glow);
  font-variant-numeric: tabular-nums;
  transition: opacity .15s ease;
}
.copa-sim__kcal-num.flash { opacity: 0.35; }
.copa-sim__kcal-lbl {
  font-family: var(--copa-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.5);
  margin-top: 5px;
}

.copa-sim__macros { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.copa-sim__macro { display: flex; align-items: center; gap: 10px; }
.copa-sim__macro-n {
  width: 64px;
  font-family: var(--copa-font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.5);
  flex-shrink: 0;
}
.copa-sim__macro-bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.copa-sim__macro-bar i {
  display: block;
  height: 100%;
  border-radius: 3px;
  transition: width .5s cubic-bezier(.22, 1, .36, 1);
}
.copa-sim__macro-v {
  width: 48px;
  text-align: right;
  font-family: var(--copa-font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--copa-cream);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.copa-sim__proj {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(240, 199, 94, 0.07);
  border: 1px dashed rgba(212, 160, 23, 0.35);
  margin-bottom: 16px;
}
.copa-sim__proj-num {
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--copa-gold-hi);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.copa-sim__proj-txt {
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255, 245, 220, 0.6);
}

.copa-sim__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--copa-gold-hi), var(--copa-gold));
  color: var(--copa-pitch-ink);
  text-decoration: none;
  font-family: var(--copa-font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--copa-gold-deep);
  box-shadow: 0 2px 0 var(--copa-gold-deep), 0 14px 30px -10px var(--copa-glow);
  transition: transform .18s ease, filter .18s ease;
}
.copa-sim__cta:hover { transform: translateY(-2px); filter: brightness(1.05); color: var(--copa-pitch-ink); }

.copa-sim__note {
  text-align: center;
  margin-top: 10px;
  font-family: var(--copa-font-mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 245, 220, 0.3);
}

@media (max-width: 780px) {
  .copa-sim__grid { grid-template-columns: 1fr; }
  .copa-sim__in { border-right: none; border-bottom: 1px solid rgba(255, 245, 220, 0.06); padding-bottom: 30px; }
  .copa-sim__kcal-num { font-size: 2.4rem; }
}

/* ========================================================== */
/* RISK REVERSAL — linha de garantia sob CTAs                 */
/* ========================================================== */
.copa-risk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--copa-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 245, 220, 0.55);
}

.copa-risk svg { width: 13px; height: 14px; color: var(--copa-gold-hi); flex-shrink: 0; }

/* ========================================================== */
/* RESPONSIVE                                                 */
/* ========================================================== */
@media (max-width: 640px) {
  .copa-banner { padding: 16px 16px 18px; }
  .copa-banner__headline { font-size: 18px; }
  .copa-banner__sub { font-size: 12.5px; }
  .copa-section { padding: 2.5rem 1.25rem 2.25rem; border-radius: 22px; }
  .copa-section__title em { font-size: 0.72em; }
  .copa-pills { gap: 0.5rem; }
  .copa-pill { padding: 8px 12px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .copa-banner,
  .copa-banner::after { animation: none; }
}
