/* ═══════════════════════════════════════════════════════
   ELAS NO SHAPE — Copa do Mundo 2026 · Tema Claro
   Paleta: Branco · Verde suave · Ouro · Azul Copa
   ═══════════════════════════════════════════════════════ */

/* ─── VARIÁVEIS GLOBAIS ─── */
:root {
  /* Copa colors — versão clara */
  --verde:         #006633;
  --verde-suave:   #e8f5ee;
  --verde-pale:    #f0faf4;
  --verde-medio:   #007a3d;
  --ouro:          #c9960a;
  --ouro-bright:   #FFD700;
  --ouro-suave:    #fff8dc;
  --ouro-pale:     #fffbee;
  --azul:          #003087;
  --azul-medio:    #0044bb;
  --azul-suave:    #e8f0fd;
  --azul-pale:     #f0f5ff;

  /* Superfícies claras */
  --bg:            #f7faf8;
  --bg2:           #ffffff;
  --bg3:           #eef4f0;
  --surface:       rgba(255,255,255,0.85);
  --surface2:      rgba(255,255,255,0.65);

  /* Texto */
  --text:          #1a2e20;
  --text2:         #3a5244;
  --text3:         #6b8278;
  --white:         #ffffff;

  /* Bordas */
  --border:        rgba(0,102,51,0.12);
  --border-gold:   rgba(201,150,10,0.25);
  --border-blue:   rgba(0,48,135,0.14);

  --gray:          #8a9e94;
  --app-vh:        1vh;
  --safe-bottom:   env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

img { max-width: 100%; height: auto; }

/* Remove noise overlay no tema claro */
body::before { display: none; }

a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* ─── TOPBAR ─── */
.topbar {
  display: block;
  position: relative;
  z-index: 120;
  background: var(--verde);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ouro-bright);
  border-bottom: 2px solid var(--ouro-bright);
}

@keyframes pulse-bar {
  0%, 100% { background: var(--verde); }
  50%       { background: var(--verde-medio); }
}

/* ─── NAV ─── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 18px rgba(0,102,51,0.06);
}

.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--verde);
}

.nav-links { display: flex; align-items: center; gap: 18px; }

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--verde); }

.nav-cta {
  background: var(--verde);
  color: var(--white);
  font-weight: 900;
  padding: 10px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .2s, box-shadow .2s;
  border: 2px solid var(--verde);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover {
  background: var(--verde-medio);
  box-shadow: 0 6px 20px rgba(0,102,51,0.25);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--app-vh) * 100);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(20px, 4vw, 26px) clamp(20px, 4vw, 52px) 34px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 80% 52%, rgba(0,102,51,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 15% 40%, rgba(0,48,135,0.05) 0%, transparent 55%),
    linear-gradient(150deg, #f0faf4 0%, #f7faf8 40%, #eef3fb 70%, #f2faf5 100%);
}

/* Hexagonal Copa pattern overlay — sutil */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 2 L56 17 L56 47 L30 62 L4 47 L4 17 Z' fill='none' stroke='rgba(0,102,51,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  align-items: center;
}

.hero-content { padding-right: 18px; max-width: 620px; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--verde-suave);
  border: 1px solid rgba(0,102,51,0.22);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 26px;
}
.badge-icon { width: 14px; height: 14px; }

.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: clamp(4px, 0.8vw, 8px);
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 8px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 100px);
  line-height: 0.86;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title span {
  color: var(--verde);
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 22px;
  max-width: 480px;
}
.hero-subtitle .gold { color: var(--ouro); font-weight: 700; }

.hero-movement-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ouro-suave);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  max-width: 480px;
}
.heart-icon { flex-shrink: 0; display: flex; align-items: center; }

.hero-cta-group { display: flex; flex-direction: column; gap: 12px; max-width: 480px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, var(--verde-medio) 0%, var(--verde) 100%);
  color: var(--white);
  font-weight: 900;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 1px;
  padding: 18px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 28px rgba(0,102,51,0.22);
  transition: transform .2s, box-shadow .2s, filter .2s;
  width: 100%;
  min-height: 44px;
  text-transform: uppercase;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(200%); }
}

@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,102,51,0.32);
    filter: brightness(1.06);
  }
}

.urgency-note {
  font-size: 12px;
  font-weight: 700;
  color: var(--verde);
  letter-spacing: 0.8px;
  text-align: center;
  opacity: 0.8;
  text-transform: uppercase;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.hero-floating-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--verde-suave);
  border: 1px solid rgba(0,102,51,0.3);
  color: var(--verde);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  z-index: 3;
  backdrop-filter: blur(6px);
}

.hero-image-glow {
  position: absolute;
  inset: -5% -5% -8%;
  background:
    radial-gradient(ellipse 85% 90% at 52% 60%, rgba(0,102,51,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(201,150,10,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-img {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  height: min(720px, 76vh);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 40px rgba(0,80,30,0.18)) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}

/* ─── FEATURES SECTION ─── */
.features-section { padding: 60px clamp(20px,4vw,52px); background: var(--bg2); }

.features-inner { max-width: 900px; margin: 0 auto; }

.features-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-text {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--verde);
  white-space: nowrap;
}

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

.feature-card {
  background: var(--verde-pale);
  border: 1px solid rgba(0,102,51,0.1);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.feature-card:hover {
  background: var(--verde-suave);
  border-color: rgba(0,102,51,0.25);
  box-shadow: 0 4px 18px rgba(0,102,51,0.1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,102,51,0.25);
  background: var(--bg2);
  margin: 0 auto 14px;
  color: var(--verde);
}
.feature-icon svg, .feature-icon i { width: 22px; height: 22px; }

.feature-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text2);
  line-height: 1.5;
}

/* ─── SYMPLA TICKET SECTION ─── */
.sympla-section {
  padding: 64px clamp(20px,4vw,52px);
  background: linear-gradient(160deg, var(--azul-pale) 0%, #f2f7ff 50%, var(--verde-pale) 100%);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
}

.sympla-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.sympla-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--azul-suave);
  border: 1px solid rgba(0,48,135,0.18);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 20px;
}

.sympla-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--text);
}
.sympla-title .gold { color: var(--ouro); }

.sympla-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.sympla-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.btn-sympla-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--ouro-bright) 0%, #e6b800 100%);
  color: var(--verde);
  font-weight: 900;
  font-size: clamp(15px, 2.2vw, 20px);
  letter-spacing: 1px;
  padding: 20px 40px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  box-shadow: 0 10px 36px rgba(201,150,10,0.28);
  transition: transform .2s, box-shadow .2s, filter .2s;
  text-transform: uppercase;
  min-height: 60px;
  position: relative;
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.btn-sympla-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 2.5s ease-in-out infinite;
}

@media (hover: hover) {
  .btn-sympla-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(201,150,10,0.38);
    filter: brightness(1.05);
  }
}

.sympla-note {
  font-size: 12px;
  color: var(--azul);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ─── VIP SECTION ─── */
.vip-section { padding: 60px clamp(20px,4vw,52px); background: var(--bg); }

.vip-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(36px,5vw,56px) clamp(24px,4vw,52px);
  box-shadow: 0 4px 28px rgba(0,102,51,0.07);
}

.vip-header { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }

.star-icon { color: var(--ouro); font-size: 22px; line-height: 1; }

.vip-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(18px,3vw,26px);
  letter-spacing: 2.5px;
  color: var(--verde);
}

.vip-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 28px;
}

.btn-vip { max-width: 520px; margin: 0 auto; }

/* ─── PROGRAMAÇÃO DO DIA ─── */
.schedule-section { padding: 70px clamp(20px,4vw,52px); background: var(--bg2); }

.schedule-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.schedule-list {
  margin-top: 28px;
  text-align: left;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,102,51,0.06);
}

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item:hover { background: var(--verde-pale); }

.schedule-left { display: flex; align-items: center; gap: 14px; min-width: 0; }

.schedule-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--verde-suave);
  color: var(--verde);
}
.schedule-icon svg, .schedule-icon i { width: 16px; height: 16px; }

.schedule-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.schedule-name small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text3);
  text-transform: uppercase;
  margin-top: 2px;
}

.schedule-time {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ouro);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── BADGES BAR ─── */
.badges-bar {
  padding: 36px clamp(20px,4vw,52px);
  background: var(--verde-suave);
  border-top: 1px solid rgba(0,102,51,0.1);
  border-bottom: 1px solid rgba(0,102,51,0.1);
}

.badges-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 clamp(20px,3vw,44px);
  flex: 1;
  min-width: 120px;
}
.badge-item svg, .badge-item i { color: var(--verde); width: 22px; height: 22px; }
.badge-item span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  color: var(--text2);
  line-height: 1.5;
}
.badge-sep { width: 1px; height: 40px; background: rgba(0,102,51,0.15); flex-shrink: 0; }

/* ─── EVENT INFO BAR (data · horário · local) ─── */
.event-info-bar {
  background: var(--ouro-pale);
  border-top: 3px solid var(--verde);
  border-bottom: 1px solid var(--border-gold);
}
.event-info-bar .badge-item svg,
.event-info-bar .badge-item i { color: var(--ouro); }
.event-info-bar .badge-item span { color: var(--text); }

/* ─── GALLERY SECTION ─── */
.gallery-section { padding: 70px clamp(20px,4vw,52px); background: var(--bg2); }

.gallery-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--verde-suave);
  border: 1px solid rgba(0,102,51,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--text);
}
.section-title .gold { color: var(--ouro); }

.gallery-subtitle {
  font-size: 15px;
  color: var(--text3);
  margin-bottom: 28px;
}

/* Subheading for Fotos / Vídeo subsections */
.gallery-subhead {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 14px;
}
.gallery-subhead i, .gallery-subhead svg { width: 16px; height: 16px; }
.gallery-subhead:not(:first-of-type) { margin-top: 36px; }

/* Photo grids — 4 horizontais + 3 verticais */
.gallery-grid { display: grid; gap: 12px; margin-bottom: 12px; }

.gallery-grid--horizontal {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid--horizontal .gallery-slot { aspect-ratio: 16 / 9; }

.gallery-grid--vertical {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}
.gallery-grid--vertical .gallery-slot { aspect-ratio: 3 / 4; }

.gallery-slot {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px dashed rgba(0,102,51,0.18);
  background: var(--verde-pale);
  transition: border-color .2s, background .2s, box-shadow .2s;
  cursor: zoom-in;
  position: relative;
}
.gallery-slot:hover {
  border-color: rgba(0,102,51,0.4);
  background: var(--verde-suave);
  box-shadow: 0 6px 20px rgba(0,102,51,0.1);
}

.gallery-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
  transition: transform 0.35s cubic-bezier(0.34,1.28,0.64,1), filter 0.3s ease;
}
.gallery-slot:hover img { transform: scale(1.04); filter: brightness(1.05); }

.gallery-slot::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 2;
}
.gallery-slot:hover::after { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(0,102,51,0.3);
}
.gallery-placeholder i { width: 32px; height: 32px; }
.gallery-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text3);
  text-align: center;
  padding: 0 16px;
}

/* Video grid */
.video-feature { max-width: 760px; margin: 0 auto; }

.video-slot {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(0,48,135,0.12);
  background: var(--azul-pale);
  aspect-ratio: 16/9;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.video-slot:hover {
  border-color: rgba(0,48,135,0.28);
  box-shadow: 0 6px 20px rgba(0,48,135,0.1);
}
.video-slot video { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; }
.video-slot iframe { width: 100%; height: 100%; border: none; border-radius: 16px; }

.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: absolute;
  inset: 0;
  color: var(--azul);
}
.video-placeholder .play-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(0,48,135,0.3);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,48,135,0.1);
}
.video-placeholder i { width: 24px; height: 24px; }
.video-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text3);
  text-align: center;
  padding: 0 16px;
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 70px clamp(20px,4vw,52px);
  background: linear-gradient(160deg, var(--verde-suave) 0%, var(--ouro-pale) 50%, var(--azul-pale) 100%);
  border-top: 1px solid var(--border);
}

.final-cta-inner { max-width: 580px; margin: 0 auto; text-align: center; }

.final-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16px,2.5vw,22px);
  letter-spacing: 4px;
  color: var(--verde);
  margin-bottom: 6px;
}

.final-tagline {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.btn-final { max-width: 460px; margin: 0 auto; }

.heart-final {
  margin-top: 24px;
  font-size: 20px;
  opacity: 0.7;
  animation: heart-beat 1.6s ease-in-out infinite;
}
@keyframes heart-beat {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.18); opacity: 1; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--verde);
  color: var(--white);
  padding: 40px clamp(20px,4vw,52px) 30px;
  border-top: 3px solid var(--ouro-bright);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2.5px;
  color: var(--ouro-bright);
}

.footer-edition {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-info { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.75); }

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.footer-ig:hover { color: var(--ouro-bright); }
.ig-link { text-decoration: none; }
.ig-icon { width: 18px; height: 18px; }

.footer-copy {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  max-width: 1000px;
  margin: 0 auto;
}

/* ─── FLAG STRIPE ─── */
.br-flag-stripe { display: flex; height: 4px; border-radius: 2px; overflow: hidden; margin-bottom: 20px; }
.br-flag-stripe span:nth-child(1) { flex: 1; background: var(--verde-medio); }
.br-flag-stripe span:nth-child(2) { flex: 1; background: var(--ouro-bright); }
.br-flag-stripe span:nth-child(3) { flex: 1; background: var(--azul); }

/* ─── FADE-UP ─── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94vw, 560px);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  z-index: 9998;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transition: bottom .45s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.cookie-banner.show { bottom: 20px; pointer-events: auto; }
.cookie-content strong { font-size: 14px; color: var(--text); display: block; margin-bottom: 6px; }
.cookie-content p { font-size: 12px; color: var(--gray); line-height: 1.6; }
.cookie-actions { display: flex; gap: 10px; margin-top: 14px; justify-content: flex-end; }
.cookie-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  min-height: 38px;
  text-transform: uppercase;
}
.cookie-primary { background: var(--verde); color: var(--white); }
.cookie-secondary { background: transparent; color: var(--gray); border: 1px solid var(--border); }

/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,14,0.88);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
  overscroll-behavior: contain;
  touch-action: pinch-zoom;
}
.lightbox-overlay.active { display: flex; animation: lb-fade-in 0.2s ease; }
@keyframes lb-fade-in { from { opacity: 0; } to { opacity: 1; } }

.lightbox-img {
  max-width: min(94vw, 1000px);
  max-height: min(88vh, 88svh);
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5), 0 30px 60px rgba(0,0,0,0.4);
  animation: lb-zoom-in 0.25s cubic-bezier(0.34,1.56,0.64,1);
  cursor: default;
  touch-action: manipulation;
}
@keyframes lb-zoom-in { from { transform: scale(0.84); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lightbox-close {
  position: fixed; top: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 20px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 100001;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }

.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 100001;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
  user-select: none;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.6); z-index: 100001;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .hero { min-height: auto; padding: 20px 16px 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 10px; max-width: 560px; margin: 0 auto; }
  .hero-content { order: 2; padding-right: 0; text-align: center; align-items: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-subtitle, .hero-movement-note, .hero-cta-group { max-width: 100%; }
  .hero-movement-note { text-align: left; }
  .hero-image-wrap {
    order: 1;
    justify-content: center;
    padding: 10px 8px 0;
    background: radial-gradient(ellipse 90% 85% at 50% 55%, rgba(0,102,51,0.08), transparent 70%);
    border-radius: 24px;
  }
  .hero-img { width: min(100%, 420px); height: auto; max-height: none; }
  .hero-image-glow { display: none; }
  .hero-floating-tag { position: relative; top: auto; right: auto; display: inline-flex; margin: 0 auto 10px; font-size: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .badges-inner { gap: 4px; }
  .badge-sep { display: none; }
  .badge-item { min-width: 80px; padding: 12px; }
  .btn-sympla-main::after { animation: none; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-inner { justify-content: space-between; }
  .nav-cta { font-size: 11px; padding: 9px 14px; }
  .topbar { font-size: 10px; padding: 9px 12px; letter-spacing: 1px; }
  /* Hero: remove altura mínima de 100vh — mostra conteúdo imediatamente */
  .hero { min-height: unset !important; padding: 24px 16px 0 !important; align-items: flex-start; }
  .hero-grid { max-width: 100%; display: flex !important; flex-direction: column; gap: 0; }
  .hero-content { order: 1; padding-right: 0; text-align: center; }
  .hero-image-wrap { order: 2; max-width: 260px; margin: 8px auto 0; padding-top: 0 !important; }
  .hero-img { width: 100% !important; height: auto !important; max-height: 36vh; object-fit: contain; }
  .hero-floating-tag { display: none; }
  .hero-title { font-size: clamp(48px, 14vw, 72px); margin-bottom: 14px; }
  .hero-subtitle { font-size: 15px; }
  .hero-movement-note { font-size: 13px; padding: 12px 14px; max-width: 100%; }
  .features-section { padding: 40px 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-card { padding: 20px 12px; }
  .divider-text { font-size: 12px; letter-spacing: 2px; }
  .sympla-section { padding: 44px 16px; }
  .btn-sympla-main { font-size: 14px; padding: 16px 24px; min-height: 52px; }
  .vip-section { padding: 40px 16px; }
  .vip-inner { padding: 28px 20px; }
  .vip-desc { font-size: 15px; }
  .badges-bar { padding: 24px 16px; }
  .badges-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .badge-sep { display: none; }
  .badge-item { min-width: unset; padding: 14px 8px; border: 1px solid rgba(0,102,51,0.1); border-radius: 12px; background: rgba(255,255,255,0.6); }
  .gallery-section { padding: 40px 16px; }
  .gallery-grid { gap: 8px; }
  .gallery-grid--horizontal { grid-template-columns: 1fr; }
  .gallery-subhead:not(:first-of-type) { margin-top: 28px; }
  .gallery-subtitle { font-size: 13px; }
  .lightbox-nav { display: none; }
  .lightbox-img { max-width: 96vw; max-height: 82svh; border-radius: 10px; }
  .final-cta { padding: 50px 16px; }
  .final-tagline { font-size: 10px; letter-spacing: 1.5px; }
  footer { padding: 32px 16px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-copy { font-size: 10px; letter-spacing: 1px; padding-bottom: env(safe-area-inset-bottom, 0); }
  .cookie-banner { width: 94vw; padding: 16px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
  .btn-primary::after { animation: none; }
}

@media (max-width: 390px) {
  .nav-brand { font-size: 16px; }
  .nav-cta { font-size: 10px; padding: 8px 10px; }
  .hero-img { width: min(100%, 300px); }
  .hero-title { font-size: clamp(44px, 13vw, 60px); }
  .gallery-grid { gap: 6px; }
  .badges-inner { gap: 8px; }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  body { padding-bottom: env(safe-area-inset-bottom); }
  .cookie-banner.show { bottom: calc(16px + env(safe-area-inset-bottom)); }
}

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--verde);
  outline-offset: 4px;
}


/* ─── AJUSTES SOLICITADOS — ELAS NO SHAPE ─── */
.hero-image-wrap { padding-top: 46px; }
.hero-floating-tag {
  top: -12px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 6;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0,102,51,0.12);
}

.gallery-grid--five.gallery-grid--horizontal { grid-template-columns: repeat(5, 1fr); }
.gallery-grid--five.gallery-grid--vertical { grid-template-columns: repeat(5, 1fr); }
.gallery-placeholder { position:absolute; inset:0; }
.gallery-placeholder small,
.video-placeholder small { font-size: 10px; opacity: .6; }
.video-grid {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}
.video-grid--vertical { grid-template-columns: repeat(5, 1fr); }
.video-slot--vertical {
  aspect-ratio: 9 / 16;
  cursor: zoom-in;
}
.video-slot--vertical::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 28px;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  z-index: 3;
}
.video-slot--vertical:hover::after { opacity: .9; transform: translate(-50%, -50%) scale(1); }
.video-slot video[poster] + .video-placeholder { pointer-events: none; }
.video-lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(10,20,14,.9);
  align-items: center;
  justify-content: center;
  padding: 22px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.video-lightbox-overlay.active { display: flex; }
.video-lightbox-player {
  max-height: min(90vh, 90svh);
  max-width: min(94vw, 520px);
  width: auto;
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

/* Cookies: fixo visível e sem travar o final da página */
.cookie-banner {
  bottom: calc(18px + var(--safe-bottom));
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 28px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.cookie-banner.show {
  bottom: calc(18px + var(--safe-bottom));
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

/* Patrocinadores — editável e no padrão verde/ouro/azul do site */
.sponsors-section {
  padding: 76px clamp(20px,4vw,52px) 54px;
  background: linear-gradient(160deg, var(--verde-pale) 0%, var(--ouro-pale) 52%, var(--azul-pale) 100%);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border-blue);
}
.sponsors-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.sponsors-kicker {
  color: var(--verde);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sponsors-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: 1px;
  line-height: .9;
  margin-bottom: 34px;
  color: var(--text);
}
.sponsors-title span { color: var(--ouro); }
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 0 auto 28px;
}
.sponsor-card {
  min-height: 112px;
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  color: var(--text2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1.5px dashed rgba(0,102,51,.28);
  box-shadow: 0 8px 24px rgba(0,102,51,.10);
  padding: 10px;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s, background .2s;
}
.sponsor-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(201,150,10,.48);
  box-shadow: 0 14px 34px rgba(0,102,51,.15);
}
.sponsor-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  object-position: center;
}
.sponsor-logo[src=""] { display: none; }
.sponsor-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.4px;
  line-height: 1.15;
  color: var(--verde);
  text-transform: uppercase;
}
.sponsor-placeholder small {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text3);
}
.sponsors-note {
  color: var(--text2);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .4px;
}
.sponsors-note a { color: var(--verde); text-decoration: none; font-weight: 900; }

/* Footer no mesmo padrão visual do site */
.site-footer {
  background: var(--verde);
  color: var(--white);
  padding: 40px clamp(20px,4vw,52px) 24px;
  border-top: 3px solid var(--ouro-bright);
}
.site-footer .footer-inner {
  max-width: 1160px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.site-footer .footer-brand { color: var(--ouro-bright); }
.site-footer .footer-edition,
.site-footer .footer-info,
.site-footer .footer-copy { color: rgba(255,255,255,.72); }
.site-footer .footer-ig { color: var(--ouro-bright); font-weight: 900; }
.footer-policies {
  max-width: 820px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-policies a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
}
.footer-policies a:hover { color: var(--ouro-bright); }
.footer-legal-note {
  max-width: 690px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.70);
  text-align: center;
  font-size: 11px;
  line-height: 1.55;
}


/* Vídeos: mostra a thumb ao acessar o site e abre o vídeo ampliado ao clicar */
.video-slot { cursor: zoom-in; }
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  z-index: 1;
}
.video-slot video { position: relative; z-index: 0; }
.video-placeholder { z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(0,48,135,.08), rgba(0,102,51,.16)); }
.video-slot:hover .video-thumb { filter: brightness(1.05); transform: scale(1.03); transition: transform .35s ease, filter .3s ease; }
