
/* ============================================================
   PAIN CARDS — with image on top (matching structure brief)
   ============================================================ */
.pain-card--bad {
  border-top: 2px solid #c0392b;
  background: linear-gradient(180deg,
    color-mix(in oklab, #c0392b 6%, var(--surface)),
    var(--surface));
}
.pain-card--bad .num {
  color: #e05c4b;
}
.pain-card--bad h4 {
  color: var(--ink);
}

/* ============================================================
   WHATIS — "O que é o Copa no Shape?"
   ============================================================ */
.whatis-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) {
  .whatis-grid { grid-template-columns: 1fr; gap: 40px; }
}
.whatis-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.whatis-copy h2 em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.whatis-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.whatis-list li {
  font-size: 15px;
  color: var(--ink-2);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.whatis-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--lime);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8 L7 11 L13 5' fill='none' stroke='%2315201A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.whatis-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.whatis-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 24px;
  text-align: left;
  transition: border-color .2s;
}
.whatis-stat:hover { border-color: color-mix(in oklab, var(--lime) 35%, var(--line)); }
.whatis-stat .n {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lime);
}
.whatis-stat .n em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
  font-size: 0.55em;
  margin-left: 2px;
}
.whatis-stat .l {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 10px;
  line-height: 1.45;
}
.whatis-foot {
  margin-top: 14px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.whatis-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatis-img-wrap {
  width: 100%;
  max-width: 440px;
  position: relative;
}

/* ============================================================
   TESTI 3-GRID — replacing carousel with cards (per structure brief)
   ============================================================ */
/* ── centered carousel ── */
.testi-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  margin-top: 24px;
}
.tcard {
  position: absolute;
  width: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.55s ease,
              box-shadow 0.55s ease;
}
.tcard--active {
  transform: translateX(0) scale(1);
  z-index: 3;
  opacity: 1;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8);
}
.tcard--next {
  transform: translateX(68%) scale(0.8);
  z-index: 2;
  opacity: 0.55;
}
.tcard--prev {
  transform: translateX(-68%) scale(0.8);
  z-index: 2;
  opacity: 0.55;
}
.tcard-img {
  width: 100%;
  height: auto;
  display: block;
}
.tphoto-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--lime);
  color: var(--green-deep);
  text-align: center;
  padding: 10px 14px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .testi-stage { height: 460px; }
  .tcard { width: 320px; }
  .tcard--next  { transform: translateX(70%) scale(0.78); }
  .tcard--prev  { transform: translateX(-70%) scale(0.78); }
}

/* legacy grid (unused now but kept for safety) */
.testi-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .testi-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testi-3 { grid-template-columns: 1fr; } }
.testi-3 .tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.testi-3 .tcard:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--lime) 30%, var(--line)); }
.testi-3 .tcard .tphoto {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #1a261e;
  position: relative;
}
.testi-3 .tcard .tphoto-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--lime);
  color: var(--green-deep);
  text-align: center;
  padding: 8px 14px;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.testi-3 .tcard .tbody { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 10px; }
.testi-3 .tcard .tstars { color: var(--lime); font-size: 14px; letter-spacing: 2px; }
.testi-3 .tcard blockquote {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-style: italic;
}
.testi-3 .tcard cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.04em;
}


/* ============================================================
   HERO V4 — centered layout matching structure brief
   ============================================================ */
.hero-v4 { padding: 0; overflow: visible; }
.hero-v4::after { display: none; }

.hv4-stage {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, color-mix(in oklab, var(--lime) 16%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, color-mix(in oklab, var(--lime) 8%, transparent) 0%, transparent 50%),
    linear-gradient(180deg, color-mix(in oklab, var(--bg-deep) 60%, var(--bg)) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.hv4-bgword {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(140px, 22vw, 340px);
  line-height: 0.78; letter-spacing: -0.06em;
  pointer-events: none; z-index: 1;
  text-transform: uppercase;
  user-select: none;
  opacity: 0.45;
}
.hv4-bgword span {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(180deg, color-mix(in oklab, var(--lime) 30%, transparent) 0%, color-mix(in oklab, var(--lime) 5%, transparent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hv4-bgword span:nth-child(2) { margin-top: -0.06em; opacity: 0.55; }

.hv4-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, color-mix(in oklab, var(--bg-deep) 25%, transparent) 70%, color-mix(in oklab, var(--bg-deep) 55%, transparent) 100%);
}

.hv4-inner {
  position: relative; z-index: 4;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

/* Logo */
.hv4-logo {
  width: 130px; height: 130px; margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid color-mix(in oklab, var(--lime) 35%, var(--line));
  border-radius: 24px;
  display: grid; place-items: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: fade-up 0.7s ease both;
}
.hv4-logo-mark {
  font-family: "Barlow", sans-serif;
  font-size: 12px; letter-spacing: 0.03em;
  color: var(--lime);
  text-align: center; line-height: 1.2; text-transform: uppercase;
  padding: 0 8px;
}
.hv4-logo-mark em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal; font-weight: 800;
  color: #fff; display: block; font-size: 18px;
  letter-spacing: -0.01em; margin-top: 4px;
  text-shadow: 0 0 18px color-mix(in oklab, var(--lime) 40%, transparent);
}

/* Badge */
.hv4-badge {
  display: inline-block;
  border: 1.5px solid color-mix(in oklab, var(--lime) 40%, var(--line));
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(8px);
  color: var(--lime);
  font-family: "Barlow", sans-serif;
  font-size: 13px; letter-spacing: 0.05em; font-weight: 500;
  padding: 8px 22px; border-radius: 30px;
  margin-bottom: 32px;
  text-transform: uppercase;
  animation: fade-up 0.7s ease both; animation-delay: 0.15s;
}

/* Title */
.hv4-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
  max-width: 16ch;
  animation: fade-up 0.8s ease both; animation-delay: 0.3s;
}
.hv4-title-em {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400; font-style: italic;
  color: var(--lime);
  text-transform: none;
  font-size: 1.1em;
  letter-spacing: -0.02em;
  text-shadow: 0 0 60px color-mix(in oklab, var(--lime) 55%, transparent);
  display: inline-block;
}

.hv4-sub {
  font-size: 17px; color: var(--ink-2);
  max-width: 540px; margin: 0 auto 24px;
  line-height: 1.55;
  animation: fade-up 0.7s ease both; animation-delay: 0.45s;
}

.hv4-strap {
  color: var(--lime);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fade-up 0.7s ease both; animation-delay: 0.55s;
}

.hv4-date {
  color: var(--ink-2); font-size: 14px;
  margin-bottom: 44px;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.04em;
  animation: fade-up 0.7s ease both; animation-delay: 0.65s;
}
.hv4-date strong { color: var(--ink); font-weight: 700; }

/* Lotes */
.hv4-lotes-label {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-family: "Barlow", sans-serif;
  animation: fade-up 0.7s ease both; animation-delay: 0.75s;
}
.hv4-lotes {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 36px;
  animation: fade-up 0.7s ease both; animation-delay: 0.85s;
}
.hv4-lote {
  background: color-mix(in oklab, var(--surface) 65%, transparent);
  border: 2px solid var(--line);
  padding: 16px 28px; border-radius: 14px;
  min-width: 138px;
  opacity: 0.5;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  position: relative;
}
.hv4-lote.active {
  opacity: 1;
  border-color: var(--lime);
  background: color-mix(in oklab, var(--lime) 8%, var(--surface));
  box-shadow: 0 12px 32px -8px color-mix(in oklab, var(--lime) 30%, transparent), 0 0 0 1px color-mix(in oklab, var(--lime) 30%, transparent);
  transform: translateY(-2px);
}
.hv4-lote-tag {
  display: inline-block;
  background: var(--lime); color: var(--green-deep);
  font-family: "Barlow", sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.03em; padding: 4px 10px;
  border-radius: 20px; margin-bottom: 8px;
  text-transform: uppercase;
}
.hv4-lote-name {
  font-family: "Barlow", sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.hv4-lote.active .hv4-lote-name { color: var(--lime); }
.hv4-lote-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800; font-size: 26px;
  color: var(--ink-2); line-height: 1;
  letter-spacing: -0.02em;
}
.hv4-lote.active .hv4-lote-price { color: var(--lime); }
.hv4-lote-meta {
  font-family: "Barlow", sans-serif;
  font-size: 13px; margin-top: 6px;
  color: var(--muted); letter-spacing: 0.04em;
}
.hv4-lote.active .hv4-lote-meta { color: var(--lime); font-weight: 700; }

/* CTA */
.hv4-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--lime); color: var(--green-deep);
  font-family: "Barlow", sans-serif;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 20px 38px; border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 14px 36px -10px color-mix(in oklab, var(--lime) 55%, transparent), 0 0 0 4px color-mix(in oklab, var(--lime) 14%, transparent);
  transition: all 0.2s;
  animation: fade-up 0.7s ease both; animation-delay: 1s;
}
.hv4-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -10px color-mix(in oklab, var(--lime) 65%, transparent), 0 0 0 4px color-mix(in oklab, var(--lime) 22%, transparent);
  background: oklch(0.92 0.20 130);
}

@media (max-width: 600px) {
  .hv4-lotes { flex-direction: column; align-items: stretch; }
  .hv4-lote { min-width: 0; }
  .hv4-title { font-size: clamp(40px, 11vw, 64px); }
  .hv4-stage { padding: 48px 0 64px; }
}


/* topbar scarcity */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, color-mix(in oklab, var(--bg-deep) 90%, transparent) 0%, color-mix(in oklab, var(--green-deep) 90%, transparent) 100%);
  color: var(--ink);
  text-align: center;
  padding: 11px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid color-mix(in oklab, var(--lime) 20%, var(--line));
  backdrop-filter: blur(10px);
}
.topbar strong {
  color: var(--lime);
  font-weight: 800;
}


/* hv3 strap + lotes inline within the original v3 left column */
.hv3-strap {
  color: var(--lime);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 19px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 4px 0 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  animation: fade-up 0.7s ease both;
  animation-delay: 0.6s;
}
.hv3-lotes-label {
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted);
  margin: 4px 0 10px;
  font-family: "Barlow", sans-serif;
}
.hv3-lotes {
  display: flex; gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  width: 100%;
  animation: fade-up 0.7s ease both; animation-delay: 0.8s;
}
.hv3-lote {
  flex: 1; min-width: 88px;
  background: color-mix(in oklab, var(--surface) 65%, transparent);
  border: 1.5px solid var(--line);
  padding: 12px 12px; border-radius: 10px;
  opacity: 0.5;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  position: relative;
}
.hv3-lote.active {
  opacity: 1;
  border-color: var(--lime);
  background: color-mix(in oklab, var(--lime) 8%, var(--surface));
  box-shadow: 0 6px 20px -8px color-mix(in oklab, var(--lime) 35%, transparent);
}
.hv3-lote-name {
  font-family: "Barlow", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 5px;
}
.hv3-lote.active .hv3-lote-name { color: var(--lime); }
.hv3-lote-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800; font-size: 24px;
  color: var(--ink-2); line-height: 1;
  letter-spacing: -0.02em;
}
.hv3-lote.active .hv3-lote-price { color: var(--lime); }
.hv3-lote-meta {
  font-family: "Barlow", sans-serif;
  font-size: 11px; margin-top: 5px;
  color: var(--muted); letter-spacing: 0.04em;
}
.hv3-lote.active .hv3-lote-meta { color: var(--lime); font-weight: 700; }


/* strap + date in hero v3 */
.hv3-strap {
  color: var(--lime);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  animation: fade-up 0.7s ease both;
  animation-delay: 0.58s;
}
.hv3-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  animation: fade-up 0.7s ease both;
  animation-delay: 0.62s;
}
.hv3-date strong { color: var(--ink); font-weight: 700; }
.hv3-date-ico {
  width: 16px; height: 16px;
  color: var(--lime);
  flex-shrink: 0;
}
