:root {
  --bg:          #fafaf8;
  --bg-2:        #f3eff9;
  --bg-3:        #e9e2f4;
  --bg-dark:     #471f52;
  --bg-dark-2:   #371748;
  --text:        #471f52;
  --text-body:   #3a2647;
  --text-60:     rgba(71,31,82,0.6);
  --text-30:     rgba(71,31,82,0.32);
  --text-10:     rgba(71,31,82,0.07);
  --mint:        #b7ce43;
  --mint-dark:   #9ab535;
  --mint-glow:   rgba(183,206,67,0.15);
  --purple:      #471f52;
  --purple-light:#6b3080;
  --teal:        #195e64;
  --pink:        #e52364;
  --orange:      #e5422a;
  --gold:        #e52364;
  --white:       #ffffff;
  --border:      rgba(71,31,82,0.12);
  --border-mint: rgba(183,206,67,0.4);
  --font-display:'Nunito Sans', sans-serif;
  --font-body:   'Nunito Sans', sans-serif;
  --max:         1200px;
  --ease:        cubic-bezier(0.16,1,0.3,1);
}

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

/* ─── CURSOR ─────────────────────────────── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--mint); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease);
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(183,206,67,0.6); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease);
}
/* Oculta cursor customizado em touch screens */
@media (hover: none) and (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* ─── GRAIN ──────────────────────────────── */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025; pointer-events: none; z-index: 1000;
}

/* ─── CONTAINER ──────────────────────────── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ─── HEADER ─────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 560;
  height: 72px; overflow: visible;
  transition: height 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.scrolled {
  height: 60px;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 24px rgba(71,31,82,0.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; height: 100%;
  max-width: var(--max); margin: 0 auto; padding: 0 56px;
  overflow: visible;
}
.logo {
  display: inline-flex; align-items: center;
  background: none; padding: 0; overflow: visible;
  flex-shrink: 0;
}
.logo img {
  display: block; height: 96px; width: auto;
  box-shadow: 0 8px 32px rgba(71,31,82,0.3);
  transition: height 0.4s var(--ease);
}
.header.scrolled .logo img { height: 78px; }
.header.nav-open .logo         { opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.header.nav-open .header__actions { opacity: 0; pointer-events: none; transition: opacity 0.25s; }
/* Quando overlay abre, limpa o fundo do sticky para o overlay cobrir tudo */
.header.nav-open {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

/* ── Hambúrguer ── */
.nav-toggle {
  background: none; border: none; cursor: none;
  display: flex; flex-direction: column; gap: 7px; padding: 10px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-toggle span {
  display: block; width: 28px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s, background 0.3s;
  transform-origin: center;
}
/* wave no hover */
.nav-toggle:not(.active):hover span:nth-child(1) { animation: hamWave 0.55s ease-in-out infinite; }
.nav-toggle:not(.active):hover span:nth-child(2) { animation: hamWave 0.55s ease-in-out infinite 0.13s; }
.nav-toggle:not(.active):hover span:nth-child(3) { animation: hamWave 0.55s ease-in-out infinite 0.26s; }
@keyframes hamWave {
  0%, 100% { transform: translateY(0) scaleX(1); }
  50%       { transform: translateY(-4px) scaleX(0.75); }
}
/* → X branco quando aberto */
.nav-toggle.active span { background: #ffffff; }
.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Ações direita ── */
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.header__actions .btn-ghost,
.header__actions .btn-primary {
  padding: 9px 20px;
  font-size: 0.72rem;
  border-width: 1.5px;
  border-style: solid;
  line-height: 1.5;
  white-space: nowrap;
}
.header__actions .btn-ghost   { border-color: rgba(71,31,82,0.35); }
.header__actions .btn-primary { border-color: var(--mint); }
.btn-cta {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 28px; border: 1.5px solid var(--purple);
  color: var(--purple); background: transparent; cursor: none;
  transition: all 0.3s var(--ease); display: inline-block;
}
.btn-cta:hover { background: var(--purple); color: var(--white); }
@media (max-width: 768px) {
  .header__actions { display: none !important; }
  .nav-toggle {
    position: static !important;
    left: auto !important;
    transform: none !important;
    margin-left: auto !important;
  }
  .header__inner { padding: 0 16px !important; justify-content: space-between; }
  .logo img { height: 72px !important; box-shadow: none; }
  .header.scrolled .logo img { height: 60px !important; }
  .soccer-widget { display: none !important; }
  /* Copa: logo maior */
  .copa-page .logo img { height: 88px !important; }
  .copa-page .header.scrolled .logo img { height: 72px !important; }
}
@media (max-width: 480px) {
  .logo img { height: 64px !important; }
  .header.scrolled .logo img { height: 52px !important; }
  .copa-page .logo img { height: 78px !important; }
  .copa-page .header.scrolled .logo img { height: 64px !important; }
}

/* ─── NAV OVERLAY ────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 540;
  background: var(--purple);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 8vw 60px;
  opacity: 0; pointer-events: none;
  clip-path: circle(0% at calc(50%) 36px);
  transition: opacity 0.5s var(--ease), clip-path 0.6s var(--ease);
}
.nav-overlay.open {
  opacity: 1; pointer-events: all;
  clip-path: circle(150% at 50% 36px);
}
.nav-overlay__nav {
  display: flex; flex-direction: column; gap: 0; flex: 1;
  justify-content: center;
}
.nav-overlay__logo {
  position: absolute;
  top: 18px; left: 8vw;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.4s var(--ease) 0.1s;
}
.nav-overlay__logo img { display: block; height: 34px; width: auto; }
.nav-overlay.open .nav-overlay__logo { opacity: 1; }

.nav-overlay__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.03em;
  color: rgba(255,255,255,0.85); text-decoration: none; cursor: none;
  display: flex; overflow: visible;
  opacity: 0; transform: translateX(-40px);
  transition: color 0.3s, opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav-overlay__link:hover { color: var(--mint); }
.nav-overlay.open .nav-overlay__link:nth-child(1) { opacity:1; transform:none; transition-delay:.12s; }
.nav-overlay.open .nav-overlay__link:nth-child(2) { opacity:1; transform:none; transition-delay:.18s; }
.nav-overlay.open .nav-overlay__link:nth-child(3) { opacity:1; transform:none; transition-delay:.24s; }
.nav-overlay.open .nav-overlay__link:nth-child(4) { opacity:1; transform:none; transition-delay:.30s; }
.nav-overlay.open .nav-overlay__link:nth-child(5) { opacity:1; transform:none; transition-delay:.36s; }
.nav-overlay.open .nav-overlay__link:nth-child(6) { opacity:1; transform:none; transition-delay:.42s; }
/* chars para onda */
.nav-overlay__link span { display: inline-block; }
.nav-overlay__link span.char-wave { animation: charWave 0.5s var(--ease) forwards; }
@keyframes charWave {
  0%   { transform: translateY(0); }
  35%  { transform: translateY(-18px); }
  65%  { transform: translateY(6px); }
  100% { transform: translateY(0); }
}
/* botões CTA do overlay */
.nav-overlay__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav-overlay.open .nav-overlay__cta { opacity: 1; transform: none; transition-delay: .45s; }
.nav-overlay__btn { font-size: 0.78rem; padding: 14px 28px; }
.nav-overlay .btn-ghost {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
}
.nav-overlay .btn-ghost:hover {
  border-color: #fff; color: #fff;
}

/* rodapé do overlay */
.nav-overlay__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap; gap: 16px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav-overlay.open .nav-overlay__footer { opacity: 1; transform: none; transition-delay: .5s; }
.nav-overlay__social { display: flex; gap: 32px; }
.nav-overlay__social-link {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s, transform 0.3s var(--ease); cursor: none;
  display: flex; align-items: center;
}
.nav-overlay__social-link:hover { color: var(--mint); transform: translateY(-3px); }
.nav-overlay__tagline {
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
@media (max-width: 600px) {
  .nav-overlay { padding: 90px 6vw 40px; }
  .nav-overlay__footer { flex-direction: column; align-items: flex-start; }
}
.mobile-nav a {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--text-60); transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--text); }

/* ─── BUTTONS ────────────────────────────── */
.btn-primary {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 36px; background: var(--mint); color: var(--purple);
  border: none; cursor: none; transition: all 0.3s var(--ease);
  display: inline-block; text-decoration: none;
}
.btn-primary:hover { background: var(--mint-dark); transform: translateY(-2px); }
.btn-ghost {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 36px; background: transparent; color: var(--text-60);
  border: 1.5px solid var(--border); cursor: none; transition: all 0.3s var(--ease);
  display: inline-block; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--text-30); color: var(--text); }

/* ─── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  overflow-x: clip; overflow-y: visible;
  padding-top: 140px; padding-bottom: 0;
  background:
    radial-gradient(ellipse 110% 75% at 50% 108%,
      #1a0828 0%, #3b1050 12%, #5e2478 28%,
      #9b63bb 45%, #d2b8ea 62%, transparent 78%),
    linear-gradient(to bottom, var(--bg) 0%, var(--bg) 100%);
}


/* Texto central */
.hero__content {
  position: relative; z-index: 3;
  text-align: center; max-width: 680px;
  padding: 0 24px; margin-bottom: 40px;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.4rem,4.2vw,3.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 20px;
}
.hero__title em { font-style: italic; color: var(--mint-dark); }
.hero__subtitle {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-60);
  max-width: 500px; margin: 0 auto 36px; font-weight: 400;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Stage — ocupa o resto da viewport */
.hero__stage {
  position: relative; z-index: 2;
  width: 100%; flex: 1;
  display: flex; align-items: flex-end; justify-content: center;
  min-height: min(62vh, 640px);
}

/* ── Composição em 4 camadas ── */
.hero__compose {
  position: relative; z-index: 3;
  display: inline-flex; align-items: flex-end; justify-content: center;
  animation: packageFloat 5s ease-in-out infinite;
}
@keyframes packageFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-16px); }
}

/* Camada 1: fundo do balde */
.hero__pkg-back {
  display: block;
  height: min(68vh, 660px); width: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 56px 90px rgba(71,31,82,0.22));
}

/* Pipocas: overlay full-hero, acima de tudo */
.hero__burst { position: absolute; inset: 0; z-index: 4; pointer-events: none; overflow: visible; }

/* Camada 2: frente do balde */
.hero__pkg-front {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  z-index: 2; display: block;
  height: min(68vh, 660px); width: auto;
  pointer-events: none;
}

/* Badges */
.hero__badge {
  position: absolute; bottom: 30%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-mint);
  padding: 14px 20px; border-radius: 10px;
  box-shadow: 0 4px 24px rgba(71,31,82,0.1);
  z-index: 5;
}
.hero__badge--left  { left: 8%;  animation: floatY 5s ease-in-out infinite; }
.hero__badge--right { right: 8%; animation: floatY 5s ease-in-out infinite 2.5s; }
.hero__badge-num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--mint-dark); display: block; line-height: 1;
}
.hero__badge-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--text-60); margin-top: 4px; display: block;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }


@media (max-width: 900px) {
  .hero { padding-top: 84px; overflow-x: hidden; }
  .hero__burst { overflow: hidden; }
  .hero__stage { min-height: 340px; }
  .hero__pkg-back, .hero__pkg-front { height: auto; width: min(68vw, 380px); }
  .hero__badge--left  { left: 2%; bottom: 20%; }
  .hero__badge--right { right: 2%; bottom: 20%; }
}
@media (max-width: 480px) {
  .hero { padding-top: 72px; }
  .hero__stage { min-height: 280px; }
  .hero__pkg-back, .hero__pkg-front { height: auto; width: min(72vw, 300px); }
  .hero__badge { padding: 10px 14px; }
  .hero__badge-num { font-size: 1.1rem; }
  .hero__badge--left  { left: 0; bottom: 14%; }
  .hero__badge--right { right: 0; bottom: 14%; }
}

/* ─── MARQUEE ────────────────────────────── */
.marquee-strip {
  padding: 20px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative; background: var(--bg);
}
.marquee-strip::before, .marquee-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.marquee-strip::before { left:  0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.marquee-inner { display: flex; animation: marquee 22s linear infinite; width: max-content; }
.marquee-item {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-30);
  padding: 0 40px; white-space: nowrap; transition: color 0.3s;
}
.marquee-sep { font-size: 0.5rem; color: var(--mint-dark); opacity: 0.6; align-self: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION LABELS & TITLES ────────────── */
.section-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--teal); }
.section-label-text { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--text);
}
.section-title em { font-style: italic; color: var(--mint-dark); }

/* ─── MASCOTE ────────────────────────────── */
.mascote {
  display: block;
  pointer-events: none;
  user-select: none;
}
.mascote--features {
  position: absolute;
  right: 40px;
  bottom: -20px;
  width: 280px;
  animation: mascoteFloatA 4s ease-in-out infinite;
  z-index: 10;
  filter: drop-shadow(0 24px 48px rgba(71,31,82,0.2));
}
.mascote--about {
  position: absolute;
  right: -50px;
  top: -40px;
  width: 200px;
  animation: mascoteFloatA 4s ease-in-out infinite;
  z-index: 10;
  filter: drop-shadow(0 24px 48px rgba(71,31,82,0.25));
}
.mascote--orcamento {
  width: 280px;
  margin-top: 40px;
  animation: mascoteFloatB 4s ease-in-out infinite 1s;
  filter: drop-shadow(0 20px 40px rgba(71,31,82,0.18));
}
@keyframes mascoteFloatA {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%       { transform: rotate(6deg) translateY(-16px); }
}
@keyframes mascoteFloatB {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%       { transform: rotate(-5deg) translateY(-14px); }
}
@media (max-width: 900px) {
  .mascote--features    { width: 240px; right: 1%; bottom: -50px; }
  .mascote--about       { width: 160px; right: -20px; top: -30px; }
  .mascote--orcamento   { width: 200px; }
}
@media (max-width: 600px) {
  .mascote--features    { display: none; }
  .mascote--about       { display: none; }
  .mascote--orcamento   { width: 160px; }
}

/* ─── PHOTO PLACEHOLDER ──────────────────── */
.photo-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  background: var(--bg-3);
  border: 1.5px dashed rgba(71,31,82,0.20);
  color: rgba(71,31,82,0.30);
}
.photo-ph svg { opacity: 0.45; flex-shrink: 0; }
.photo-ph span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; text-align: center;
}

/* ─── FEATURES ───────────────────────────── */
.features { padding: 120px 0; background: var(--bg); position: relative; }
.features__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: stretch;
}
.features__left { display: flex; flex-direction: column; }
.features__header { margin-bottom: 48px; }
.features__photo-wrap {
  display: flex;
  flex-direction: column;
}
.features__photo {
  flex: 1;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
}
.features__slideshow { position: relative; }
.features__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  border-radius: 16px;
}
.features__slide.active { opacity: 1; }
.features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.feature-card {
  background: var(--bg); padding: 36px 28px;
  transition: background 0.4s var(--ease); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--mint-glow); opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover { background: var(--bg-2); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(25,94,100,0.1); border: 1px solid rgba(25,94,100,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}
.feature-card:hover .feature-icon {
  background: rgba(183,206,67,0.12); border-color: rgba(183,206,67,0.3);
  color: var(--mint-dark);
}
.feature-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p  { font-size: 0.82rem; line-height: 1.7; color: var(--text-60); }
@media (max-width: 960px) {
  .features__inner { grid-template-columns: 1fr; }
  .features__photo { aspect-ratio: 16/9; position: static; }
  .features__grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .features__grid { grid-template-columns: 1fr; } }

/* ─── CATEGORIES ─────────────────────────── */
.categories { padding: 0 0 120px; background: var(--bg); }
.categories__header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.categories__header .section-label { justify-content: center; }
.categories__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.cat-card { position: relative; overflow: hidden; aspect-ratio: 2/3; cursor: none; }
.cat-card__bg { position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
.cat-card:hover .cat-card__bg { transform: scale(1.05); }
.cat-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.cat-slide.active { opacity: 1; }
.cat-card--eventos       .cat-card__bg { background: linear-gradient(160deg,#150920 0%,#471f52 60%,#6b3080 100%); }
.cat-card--lembrancinhas .cat-card__bg { background: linear-gradient(160deg,#061214 0%,#195e64 60%,#2a8a95 100%); }
.cat-card--sabores       .cat-card__bg { background: linear-gradient(160deg,#1a0810 0%,#8a1030 60%,#e52364 100%); }
.cat-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.2) 50%,transparent 100%); }
.cat-card__content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px;
  transform: translateY(8px); transition: transform 0.4s var(--ease);
}
.cat-card:hover .cat-card__content { transform: translateY(0); }
.cat-card__title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.1; }
.cat-card__desc  { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.75); margin-bottom: 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.cat-card:hover .cat-card__desc { max-height: 80px; }
.cat-card__link  { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mint); }
.cat-card__link::after { content: '→'; transition: transform 0.3s; }
.cat-card:hover .cat-card__link::after { transform: translateX(4px); }
@media (max-width: 768px) { .categories__grid { grid-template-columns: 1fr; } }

/* ─── STATS ──────────────────────────────── */
.stats {
  padding: 80px 0; background: var(--bg-dark);
  position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(183,206,67,0.08) 0%,transparent 65%); border-radius: 50%;
}
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; position: relative; z-index: 1; gap: 1px; background: rgba(255,255,255,0.07); }
.stat-item { padding: 48px 28px; background: var(--bg-dark); display: flex; flex-direction: column; align-items: center; }
.stat-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(183,206,67,0.1); border: 1px solid rgba(183,206,67,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--mint); margin-bottom: 20px;
}
.stat-num   { font-family: var(--font-display); font-size: clamp(2.4rem,4.5vw,4rem); font-weight: 700; color: var(--mint); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 4px; }
.stat-desc  { font-size: 0.72rem; color: rgba(255,255,255,0.55); font-style: italic; }
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 36px 20px; }
}

/* ─── GALLERY STRIP ──────────────────────── */
.gallery-strip {
  overflow: hidden;
  width: 100%;
  padding: 72px 0;
  background: var(--bg);
}
.gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: gallery-scroll 60s linear infinite;
  will-change: transform;
}
.gallery-slide {
  flex-shrink: 0;
  height: 480px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(71,31,82,0.10);
}
.gallery-slide img,
.gallery-slide video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-slide:hover img,
.gallery-slide:hover video { transform: scale(1.04); }
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Placeholder para carrossel de clientes sem foto */
.gallery-slide--placeholder {
  flex-shrink: 0;
  height: 480px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(71,31,82,0.10);
  background: var(--bg-3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--text-30);
}
.gallery-slide--placeholder svg { opacity: 0.5; }
.gallery-slide--placeholder span {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
@media (max-width: 768px) {
  .gallery-slide--placeholder { height: 320px; }
}
@media (max-width: 768px) {
  .gallery-slide { height: 320px; }
  .gallery-strip { padding: 48px 0; }
}

/* ─── FLAVORS ────────────────────────────── */
.flavors { padding: 120px 0; background: var(--bg-2); }
.flavors__header { margin-bottom: 56px; }

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


.flavor-card {
  position: relative;
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: none;
}
.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(71,31,82,0.22);
}
.flavor-card:hover .flavor-card__img img { transform: scale(1.06); }

.flavor-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; overflow: hidden;
}
.flavor-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.65s var(--ease);
}
.flavor-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 72px 22px 22px;
  background: linear-gradient(to top, rgba(14,3,20,0.82) 0%, transparent 100%);
}
.flavor-name {
  display: block; font-size: 1.1rem; font-weight: 700;
  color: #fff; line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Placeholder para cards sem foto ainda */
.flavor-card--pending {
  background: var(--bg-3);
}
.flavor-card__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--text-30);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}

/* CTA card — slot vazio da última linha */
.flavor-card--cta {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  text-decoration: none;
  background: var(--purple);
  border-radius: 16px;
  aspect-ratio: 4/5;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  cursor: none;
}
.flavor-card--cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(71,31,82,0.35);
  background: var(--purple-light);
}
.flavor-cta__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--mint);
  flex-shrink: 0;
}
.flavor-cta__title {
  font-size: 1.6rem; font-weight: 800;
  color: #fff; line-height: 1.2; margin: 0;
}
.flavor-cta__sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  margin: 0; line-height: 1.4;
}
.flavor-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  padding: 12px 22px; border-radius: 100px;
  background: var(--mint); color: var(--purple);
  font-size: 0.88rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.flavor-card--cta:hover .flavor-cta__btn {
  background: #fff;
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .flavors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .flavors-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .flavor-card { aspect-ratio: 4/5; }
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials { padding: 120px 0; background: var(--bg); position: relative; overflow: visible; }
.testimonials__header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.testimonials__header .section-label { justify-content: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial {
  background: var(--white); padding: 40px 36px;
  border: 1px solid var(--border); position: relative;
  box-shadow: 0 2px 16px rgba(71,31,82,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial::before {
  content: '\201C'; font-family: var(--font-display); font-size: 6rem;
  color: var(--mint); opacity: 0.25;
  position: absolute; top: 16px; left: 28px; line-height: 1;
}
.testimonial:hover { box-shadow: 0 8px 32px rgba(71,31,82,0.1); transform: translateY(-2px); }
.testimonial__stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star {
  width: 14px; height: 14px; background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.testimonial__text {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 400;
  line-height: 1.7; color: var(--text-body); margin-bottom: 28px;
  font-style: italic; position: relative; z-index: 1;
}
.testimonial__author { display: flex; align-items: center; gap: 16px; }
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; color: #fff; flex-shrink: 0;
}
.testimonial__name { font-size: 0.85rem; font-weight: 700; color: var(--text); display: block; }
.testimonial__role { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; color: var(--text-60); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ─── ABOUT ──────────────────────────────── */
.about { padding: 120px 0; background: var(--bg-2); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about__visual { position: relative; }
.about__img-main {
  width: 100%; aspect-ratio: 3/4;
  background: var(--bg-3); border: 1px solid var(--border); position: relative; overflow: hidden;
  border-radius: 16px;
}
.about__img-main::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(71,31,82,0.1) 0%, rgba(183,206,67,0.06) 100%);
}
.about__img-main-inner {
  position: absolute; inset: 0;
}
.about__body  { font-size: 0.95rem; line-height: 1.8; color: var(--text-60); margin-bottom: 20px; }
.about__list  { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.about__list-item { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; font-weight: 500; color: var(--text-60); }
.about__list-item::before { content: ''; width: 20px; height: 1.5px; background: var(--teal); flex-shrink: 0; }
@media (max-width: 900px) { .about__inner { grid-template-columns: 1fr; } }

/* ─── ORCAMENTO ──────────────────────────── */
.orcamento { padding: 120px 0; background: var(--bg); position: relative; overflow: hidden; }
.orcamento::before {
  content: ''; position: absolute; top: -30%; left: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(183,206,67,0.08) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.orcamento__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.orcamento__info .section-title { margin-bottom: 24px; }
.orcamento__info-text { font-size: 0.9rem; line-height: 1.8; color: var(--text-60); margin-bottom: 40px; }
.orcamento__contact { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
.orcamento__contact-item { display: flex; align-items: center; gap: 16px; font-size: 0.85rem; color: var(--text-60); }
.orcamento__contact-icon {
  width: 40px; height: 40px; border: 1px solid var(--border-mint); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal);
}
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-60); }
.form-input, .form-select, .form-textarea {
  font-family: var(--font-body); font-size: 0.88rem; padding: 14px 18px;
  background: var(--white); border: 1.5px solid var(--border); color: var(--text-body);
  outline: none; transition: border-color 0.3s; -webkit-appearance: none; appearance: none; border-radius: 0;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23471f52' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: none;
}
.form-select option { background: var(--white); color: var(--text-body); }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); }
.form-input.error, .form-select.error, .form-textarea.error { border-color: #e24b4a; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-30); }
.radio-group { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.radio-label {
  padding: 12px 8px; border: 1.5px solid var(--border); text-align: center;
  font-size: 0.78rem; font-weight: 600; color: var(--text-60); cursor: none; transition: all 0.3s;
}
.radio-label:hover   { border-color: var(--text-30); color: var(--text); }
.radio-label.selected { border-color: var(--mint); color: var(--purple); background: var(--mint-glow); }
.radio-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.btn-submit {
  width: 100%; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 18px; background: var(--purple); color: var(--white); border: none; cursor: none;
  transition: all 0.3s var(--ease);
}
.btn-submit:hover    { background: var(--purple-light); }
.btn-submit:disabled { opacity: 0.5; cursor: default; }
.form-success { display: none; text-align: center; padding: 60px 0; }
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 20px; color: var(--teal); }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.form-success p  { color: var(--text-60); font-size: 0.9rem; }
@media (max-width: 900px) { .orcamento__inner { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ─── FAQ ────────────────────────────────── */
.faq { padding: 120px 0; background: var(--bg-2); }
.faq__header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.faq__header .section-label { justify-content: center; }
.faq__body { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.faq__photo { border-radius: 16px; position: sticky; top: 100px; overflow: hidden; min-height: 460px; }
.faq__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.faq__list { display: flex; flex-direction: column; }
@media (max-width: 900px) {
  .faq__body { grid-template-columns: 1fr; }
  .faq__photo { aspect-ratio: 16/9; position: static; }
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; background: none; border: none; color: var(--text);
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  text-align: left; cursor: none; transition: color 0.3s;
}
.faq__question:hover { color: var(--teal); }
.faq__icon {
  width: 28px; height: 28px; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; font-size: 1rem; color: var(--teal);
}
.faq__item.open .faq__icon { transform: rotate(45deg); border-color: var(--teal); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; }
.faq__item.open .faq__answer { max-height: 200px; padding-bottom: 24px; }
.faq__answer p { font-size: 0.88rem; line-height: 1.75; color: var(--text-60); }

/* ─── FOOTER ─────────────────────────────── */
.footer { padding: 64px 0 40px; background: var(--bg-dark); }
.footer__main {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; margin-bottom: 48px;
}
.footer__logo { display: inline-flex; }
.footer__logo svg { height: 40px; width: auto; }
.footer__hours-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mint); margin-bottom: 14px;
}
.footer__hours-row {
  display: flex; gap: 28px; font-size: 0.82rem;
  color: rgba(255,255,255,0.55); margin-bottom: 6px;
}
.footer__hours-row span:first-child { min-width: 150px; }
.footer__socials { display: flex; gap: 14px; }
.footer__socials a {
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: border-color 0.3s, color 0.3s;
}
.footer__socials a:hover { border-color: var(--mint); color: var(--mint); }
.footer__bottom { display: flex; align-items: center; justify-content: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: all 0.3s;
}
.footer__social a:hover { border-color: var(--mint); color: var(--mint); }
@media (max-width: 768px) {
  .footer__main { flex-direction: column; align-items: flex-start; gap: 36px; }
  .footer__socials { align-self: flex-start; }
}

/* ─── WA FLOAT ───────────────────────────── */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 400;
  width: 56px; height: 56px; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: all 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ─── SCROLL ANIMATIONS ──────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── HERO ENTRANCE ──────────────────────── */
.hero__content { animation: heroIn 1s var(--ease) both; }
.hero__visual   { animation: heroIn 1s var(--ease) 0.2s both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ─── PAGE HERO (sub-pages) ──────────────── */
.page-hero {
  padding: 160px 0 96px;
  background: var(--bg-dark);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(183,206,67,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.page-hero__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
  transition: color 0.2s;
}
.page-hero__back:hover { color: rgba(255,255,255,0.8); }
.page-hero__back svg { transform: rotate(180deg); }
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; margin: 16px 0 24px;
}
.page-hero h1 em { color: var(--mint); font-style: normal; }
.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 auto;
  line-height: 1.75;
}

/* Carrinhos page — header sobre hero roxo: logo e hamburguer brancos antes do scroll */
.carrinhos-page .header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}
.carrinhos-page .header:not(.scrolled) .nav-toggle span {
  background: #fff;
}

/* ─── CARRINHO SECTIONS ───────────────────── */
.carrinho-section { padding: 120px 0; background: var(--bg); }
.carrinho-section--alt { background: var(--bg-2); }
.carrinho-section__inner {
  display: flex; gap: 80px; align-items: center;
}
.carrinho-section--reverse .carrinho-section__inner {
  flex-direction: row-reverse;
}
.carrinho-section__visual { flex-shrink: 0; width: 460px; }
.carrinho-photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(71,31,82,0.18);
}
.carrinho-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carrinho-photo--placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: var(--bg-3); color: var(--text-30);
}
.carrinho-photo--placeholder span {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.carrinho-section__content { flex: 1; min-width: 0; }
.carrinho-num {
  display: block; margin-bottom: 12px;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint-dark);
}
.carrinho-name {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.1;
  color: var(--text); margin-bottom: 8px;
}
.carrinho-name em { color: var(--purple-light); font-style: normal; }
.carrinho-specialty {
  display: block;
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-60);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.carrinho-desc {
  font-size: 1.05rem; color: var(--text-body);
  line-height: 1.75; margin-bottom: 24px;
}
.carrinho-features {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.carrinho-feature {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem; color: var(--text-body); line-height: 1.55;
}
.carrinho-feature-arrow {
  color: var(--mint-dark); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.carrinho-highlight {
  display: flex; align-items: center; gap: 8px;
  width: fit-content;
  padding: 12px 20px; border-radius: 10px;
  background: var(--mint-glow); border: 1px solid var(--border-mint);
  font-size: 0.92rem; font-weight: 700;
  color: var(--purple);
  margin-bottom: 24px;
}

/* ─── CARRINHOS CTA FINAL ────────────────── */
.carrinhos-cta {
  padding: 120px 0;
  background: var(--bg-dark);
  text-align: center; position: relative; overflow: hidden;
}
.carrinhos-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(183,206,67,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.carrinhos-cta__inner { position: relative; z-index: 1; }
.carrinhos-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.15;
  color: #fff; margin: 16px 0 20px;
}
.carrinhos-cta h2 em { color: var(--mint); font-style: normal; }
.carrinhos-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px; margin: 0 auto 48px;
  line-height: 1.75;
}
.carrinhos-cta__btns {
  display: flex; gap: 16px;
  align-items: center; justify-content: center; flex-wrap: wrap;
}

@media (max-width: 960px) {
  .carrinho-section__inner { flex-direction: column !important; gap: 48px; }
  .carrinho-section__visual { width: 100%; max-width: 480px; margin: 0 auto; }
  .carrinho-photo { aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .page-hero { padding: 120px 0 72px; }
  .carrinho-section { padding: 80px 0; }
  .carrinhos-cta { padding: 80px 0; }
}

/* ─── COPA PAGE — remove roxo ────────────────── */
/* Header */
.copa-page .nav-toggle span { background: #fff; }
.copa-page .header.scrolled {
  background: rgba(7,26,12,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 24px rgba(0,0,0,0.25);
}
.copa-page .header.scrolled .nav-toggle span { background: #fff; }
.copa-page .header__actions .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.28);
}
.copa-page .header__actions .btn-ghost:hover {
  border-color: #FFD700; color: #FFD700;
}
.copa-page .header__actions .btn-primary {
  background: #FFD700; color: #0a2c10; border-color: #FFD700;
}
.copa-page .header__actions .btn-primary:hover {
  background: #f5cc00;
}
/* Nav overlay */
.copa-page .nav-overlay { background: #0c2c14; }
.copa-page .nav-overlay__link:hover { color: #FFD700; }
.copa-page .nav-overlay .btn-ghost {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}
.copa-page .nav-overlay .btn-primary {
  background: #FFD700; color: #0a2c10;
}
.copa-page .nav-overlay__social-link:hover { color: #FFD700; }
/* Footer */
.copa-page .footer { background: #041a08; }
.copa-page .footer__socials a:hover,
.copa-page .footer__social a:hover { border-color: #FFD700; color: #FFD700; }
/* Generic buttons (used in header/overlay) */
.copa-page .btn-primary { background: #FFD700; color: #0a2c10; }
.copa-page .btn-primary:hover { background: #f5cc00; transform: translateY(-2px); }
.copa-page .btn-ghost { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.copa-page .btn-ghost:hover { border-color: #FFD700; color: #FFD700; }

/* ─── SOCCER BALL WIDGET ─────────────────────── */
.soccer-widget {
  position: fixed;
  top: 80px;
  left: 16px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  animation: sw-float 2s ease-in-out infinite;
}
.soccer-widget__ball {
  width: 56px;
  height: 56px;
  animation: sw-spin 5s linear infinite;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.3));
  transition: transform 0.2s;
}
.soccer-widget:hover .soccer-widget__ball { transform: scale(1.12); }
.soccer-widget__label {
  background: #005a00;
  color: #FFD700;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.45;
  padding: 7px 10px;
  border-radius: 10px;
  max-width: 86px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  border: 1.5px solid rgba(255,215,0,0.35);
  transition: background 0.2s, color 0.2s;
}
.soccer-widget:hover .soccer-widget__label { background: #FFD700; color: #004000; }
@keyframes sw-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes sw-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── COPA PAGE ──────────────────────────────── */
/* Hero */
.copa-hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #041a08 0%, #0b3614 55%, #155220 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}
.copa-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(255,215,0,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(0,160,0,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.copa-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 48px,
    transparent 48px, transparent 96px
  );
  pointer-events: none;
}
.copa-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center;
}
.copa-hero__content { display: flex; flex-direction: column; gap: 24px; }
.copa-hero__back {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 0.84rem; font-weight: 600;
  transition: color 0.2s; width: fit-content;
}
.copa-hero__back svg { transform: rotate(180deg); }
.copa-hero__back:hover { color: #FFD700; }
.copa-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px;
  background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.32); border-radius: 100px;
  color: #FFD700; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
  width: fit-content;
}
.copa-hero h1 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.18;
}
.copa-hero h1 em { color: #FFD700; font-style: normal; }
.copa-hero__desc { font-size: 1.05rem; color: rgba(255,255,255,0.68); line-height: 1.72; max-width: 480px; }
.copa-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-copa-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: #FFD700; color: #0d2612;
  border-radius: 100px; font-size: 0.92rem; font-weight: 800; letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-copa-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,0.38); }
.btn-copa-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 100px;
  font-size: 0.92rem; font-weight: 700; transition: border-color 0.2s, color 0.2s;
}
.btn-copa-ghost:hover { border-color: #FFD700; color: #FFD700; }
/* Copa header logo */
.copa-page .logo { align-self: flex-start; padding-top: 6px; }
.copa-page .logo img {
  height: 132px;
  box-shadow: none;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
}
.copa-page .header.scrolled .logo { padding-top: 4px; }
.copa-page .header.scrolled .logo img { height: 108px; }
@media (max-width: 768px) {
  .copa-page .logo img { height: 72px; }
  .copa-page .header.scrolled .logo img { height: 60px; }
}
@media (max-width: 480px) {
  .copa-page .logo img { height: 60px; }
  .copa-page .header.scrolled .logo img { height: 50px; }
}

/* Copa hero visual */
.copa-hero__visual { display: flex; justify-content: center; align-items: center; }
.copa-hero__videos {
  display: flex; gap: 16px; align-items: center; width: 100%;
}
.copa-hero__vid-wrap {
  flex: 1; border-radius: 18px; overflow: hidden;
  aspect-ratio: 9/16;
  box-shadow: 0 24px 56px rgba(0,0,0,0.55);
}
.copa-hero__vid-wrap:first-child { margin-top: 56px; }
.copa-hero__vid-wrap:last-child  { margin-bottom: 56px; }
.copa-hero__vid-wrap video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Pillars */
.copa-pillars { background: #0d3318; padding: 80px 0; }
.copa-pillars__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.copa-pillar {
  display: flex; flex-direction: column; gap: 14px;
  padding: 32px; border-radius: 18px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,215,0,0.12);
}
.copa-pillar__icon { display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.copa-pillar__icon img { width: 40px; height: 40px; }
.copa-pillar__title { font-size: 1.08rem; font-weight: 800; color: #fff; }
.copa-pillar__desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.62; }

/* Sabores section */
.copa-sabores { background: #071a0c; padding: 120px 0; }
.copa-sabores__header { text-align: center; margin-bottom: 80px; }
.copa-section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 20px; margin-bottom: 20px;
  background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.28); border-radius: 100px;
  color: #FFD700; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.copa-sabores h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.15; }
.copa-sabores h2 em { color: #FFD700; font-style: normal; }
.copa-sabores__sub { margin-top: 16px; font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 520px; margin-inline: auto; line-height: 1.7; }

/* Country block */
.pcopa-country {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  grid-template-rows: auto auto;
  column-gap: 64px;
  align-items: start;
}
.pcopa-country:last-child { margin-bottom: 0; }
.pcopa-country__header {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
}
.pcopa-country__flag { font-size: 2.4rem; line-height: 1; }
.pcopa-country__name { font-size: 1.45rem; font-weight: 800; color: #fff; letter-spacing: 0.02em; }
.pcopa-country__divider { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.pcopa-country__cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

/* CTA block per country */
.pcopa-country__cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; text-align: center;
  padding: 24px 0;
  align-self: center;
}
.pcopa-cta__ball {
  animation: pcopa-bounce 1.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.pcopa-cta__ball img {
  display: block;
  animation: pcopa-spin 3s linear infinite;
  filter: drop-shadow(0 8px 20px rgba(255,215,0,0.35));
}
@keyframes pcopa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-22px); }
}
@keyframes pcopa-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pcopa-cta__line {
  font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.75);
  line-height: 1.45; margin: 0;
}
.pcopa-cta__btn {
  display: inline-flex; align-items: center;
  padding: 14px 30px; border-radius: 100px;
  background: #FFD700; color: #0a2c10;
  font-size: 0.9rem; font-weight: 800; letter-spacing: 0.03em;
  text-decoration: none;
  animation: pcopa-glow 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.pcopa-cta__btn:hover { transform: scale(1.07); }
@keyframes pcopa-glow {
  0%, 100% {
    box-shadow: 0 0 14px rgba(255,215,0,0.45),
                0 0 32px rgba(255,215,0,0.2),
                0 6px 20px rgba(0,0,0,0.4);
  }
  50% {
    box-shadow: 0 0 28px rgba(255,215,0,0.8),
                0 0 60px rgba(255,215,0,0.4),
                0 0 90px rgba(255,215,0,0.12),
                0 6px 20px rgba(0,0,0,0.4);
  }
}
.pcopa-cta__note {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.35); letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Flavor card */
.pcopa-card {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  border: 1.5px solid rgba(255,255,255,0.07);
  position: relative;
  background: var(--cc, #0f2c14);
}
.pcopa-card__badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: rgba(0,0,0,0.55); border-radius: 8px; padding: 6px 8px;
  backdrop-filter: blur(4px);
}
.pcopa-card__flag   { font-size: 1.3rem; line-height: 1; }
.pcopa-card__ctry   { font-size: 0.46rem; font-weight: 800; color: #fff; letter-spacing: 0.07em; text-transform: uppercase; }
.pcopa-card__type   { padding: 14px 14px 0; font-size: 0.58rem; font-weight: 800; color: var(--ca, #FFD700); letter-spacing: 0.1em; text-transform: uppercase; }
.pcopa-card__imgbox {
  margin: 10px 14px; border-radius: 12px; overflow: hidden;
  aspect-ratio: 3/4;
}
.pcopa-card__imgbox img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pcopa-card__imgbox-ph { font-size: 0.62rem; color: rgba(255,255,255,0.18); text-align: center; padding: 8px; line-height: 1.5; }
.pcopa-card__stars  { padding: 4px 14px; font-size: 0.65rem; color: var(--ca, #FFD700); letter-spacing: 4px; }
.pcopa-card__info   { padding: 6px 14px 18px; display: flex; flex-direction: column; gap: 5px; }
.pcopa-card__lbl    { font-size: 0.54rem; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.pcopa-card__sabor  { font-size: 0.9rem; font-weight: 800; color: var(--ca, #FFD700); text-transform: uppercase; line-height: 1.2; }
.pcopa-card__desc   { font-size: 0.74rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.pcopa-card__desc strong { color: rgba(255,255,255,0.88); }

/* Country-specific card colors */
.pcopa-country--brasil   .pcopa-card { --cc:#003319; --ca:#FFD700; }
.pcopa-country--alemanha .pcopa-card { --cc:#181818; --ca:#CC0000; }
.pcopa-country--argentina .pcopa-card { --cc:#00366b; --ca:#74ACDF; }
.pcopa-country--franca   .pcopa-card { --cc:#001060; --ca:#EF4135; }
.pcopa-country--mexico   .pcopa-card { --cc:#4a0000; --ca:#00a550; }

/* Copa label (for light-bg sections) */
.copa-section-label-dark {
  display: inline-flex; align-items: center;
  padding: 6px 20px; margin-bottom: 20px;
  background: rgba(0,90,0,0.07); border: 1px solid rgba(0,90,0,0.18); border-radius: 100px;
  color: #005a00; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.copa-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #0a3010; line-height: 1.18;
}
.copa-section-title em { color: #006400; font-style: normal; }

/* Carrinhos Copa */
.copa-carrinhos { background: #0d3318; padding: 120px 0; }
.copa-carrinhos__header { text-align: center; margin-bottom: 64px; }
.copa-carrinhos .copa-section-label-dark {
  background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.25); color: #FFD700;
}
.copa-carrinhos .copa-section-title { color: #fff; }
.copa-carrinhos .copa-section-title em { color: #FFD700; }
.copa-carrinhos__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.copa-cart-card { border-radius: 20px; overflow: hidden; border: 1.5px solid rgba(255,215,0,0.12); background: rgba(255,255,255,0.05); }
.copa-cart-card__imgbox {
  margin: 14px; border-radius: 14px; overflow: hidden;
  aspect-ratio: 3/4;
}
.copa-cart-card__imgbox img { width: 100%; height: 100%; object-fit: cover; display: block; }
.copa-cart-card__imgbox-ph { font-size: 0.72rem; color: rgba(255,255,255,0.2); text-align: center; padding: 12px; line-height: 1.6; }
.copa-cart-card__body { padding: 14px 20px 24px; }
.copa-cart-card__tag {
  display: inline-block; padding: 4px 10px; margin-bottom: 10px;
  background: rgba(255,215,0,0.12); border-radius: 6px;
  font-size: 0.62rem; font-weight: 800; color: #FFD700; letter-spacing: 0.06em; text-transform: uppercase;
}
.copa-cart-card__name { font-size: 1.08rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.copa-cart-card__desc { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* Petisqueira Copa */
.copa-petisqueira { background: #071a0c; padding: 120px 0; }
.copa-petisqueira__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.copa-petisqueira__visuals { display: block; }
.copa-pet-img {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 1;
}
.copa-pet-img.wide { aspect-ratio: 16/9; }
.copa-pet-vid--full { aspect-ratio: 4/5; }
.copa-pet-img img,
.copa-pet-img video { width: 100%; height: 100%; object-fit: cover; display: block; }
.copa-petisqueira__content { display: flex; flex-direction: column; gap: 24px; }
.copa-petisqueira h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.18; }
.copa-petisqueira h2 em { color: #FFD700; font-style: normal; }
.copa-petisqueira__desc { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.72; }
.copa-feat-list { display: flex; flex-direction: column; gap: 12px; }
.copa-feat-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.82);
}
.copa-feat-item::before {
  content: '✓';
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,215,0,0.12); border: 1px solid rgba(255,215,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: #FFD700;
}

/* Why Pripoca (Copa) */
.copa-why { background: #0d3318; padding: 80px 0; }
.copa-why .copa-section-label-dark { background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.25); color: #FFD700; }
.copa-why .copa-section-title { color: #fff; }
.copa-why .copa-section-title em { color: #FFD700; }
.copa-why__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.copa-why-item {
  display: flex; flex-direction: column; gap: 12px; text-align: center;
  padding: 28px 20px; border-radius: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,215,0,0.12);
}
.copa-why-item__icon { font-size: 1.8rem; }
.copa-why-item__title { font-size: 0.9rem; font-weight: 800; color: #fff; }
.copa-why-item__desc { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* Copa form */
.copa-form-section { background: #071a0c; padding: 120px 0; }
.copa-form-section__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.copa-form__info { display: flex; flex-direction: column; gap: 24px; }
.copa-form__info h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.2; }
.copa-form__info h2 em { color: #FFD700; font-style: normal; }
.copa-form__info p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.72; }
.copa-form__contacts { display: flex; flex-direction: column; gap: 12px; }
.copa-form__contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.copa-form__contact-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.2);
  display: flex; align-items: center; justify-content: center; color: #FFD700;
}
.copa-form__wrap {
  background: rgba(255,255,255,0.04); border-radius: 20px; padding: 40px;
  border: 1px solid rgba(255,255,255,0.07);
}
.copa-form__wrap .form-label { color: rgba(255,255,255,0.65); }
.copa-form__wrap .form-input,
.copa-form__wrap .form-select,
.copa-form__wrap .form-textarea {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.11); color: #fff;
}
.copa-form__wrap .form-input::placeholder,
.copa-form__wrap .form-textarea::placeholder { color: rgba(255,255,255,0.22); }
.copa-form__wrap .form-input:focus,
.copa-form__wrap .form-select:focus,
.copa-form__wrap .form-textarea:focus {
  border-color: #FFD700; box-shadow: 0 0 0 3px rgba(255,215,0,0.1); outline: none;
}
.copa-form__wrap .form-select option { background: #0a2c10; color: #fff; }
.copa-check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.copa-check-label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.11); cursor: pointer;
  font-size: 0.84rem; color: rgba(255,255,255,0.6); font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.copa-check-label:hover { border-color: rgba(255,215,0,0.4); background: rgba(255,215,0,0.05); }
.copa-check-label input { accent-color: #FFD700; }
.copa-radio-label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.11); cursor: pointer;
  font-size: 0.84rem; color: rgba(255,255,255,0.6); font-weight: 600;
  transition: border-color 0.2s, background 0.2s; flex: 1;
}
.copa-radio-label.selected { border-color: #FFD700; background: rgba(255,215,0,0.08); color: #FFD700; }
.copa-radio-label input { accent-color: #FFD700; }
.btn-copa-submit {
  width: 100%; padding: 16px; background: #FFD700; color: #0a2c10;
  border: none; border-radius: 12px; font-size: 1rem; font-weight: 800;
  cursor: pointer; letter-spacing: 0.02em; transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}
.btn-copa-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,0.32); }

/* Copa responsive */
@media (max-width: 1024px) {
  .copa-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .copa-hero__visual { display: none; }
  .copa-form-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .copa-petisqueira__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .pcopa-country { grid-template-columns: 1fr; }
  .pcopa-country__cta {
    flex-direction: row; justify-content: flex-start; gap: 28px;
    padding: 28px 0 8px;
    text-align: left;
  }
  .pcopa-cta__ball img { width: 64px; height: 64px; }
}
@media (max-width: 768px) {
  .copa-pillars__grid { grid-template-columns: 1fr; gap: 16px; }
  .copa-carrinhos__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .copa-why__grid { grid-template-columns: repeat(2,1fr); }
  .copa-form__wrap { padding: 24px; }
  .pcopa-country__cta { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .pcopa-country__cards { grid-template-columns: 1fr; }
  .copa-check-grid { grid-template-columns: 1fr; }
  .copa-why__grid { grid-template-columns: 1fr; }
  .soccer-widget { top: auto; bottom: 84px; left: 12px; }
  .soccer-widget__ball { width: 46px; height: 46px; }
  .soccer-widget__label { display: none; }
}
