/* ============================================================
   GCFC 2026 – Landing Page Stylesheet
   Paleta: #1a0030 (fundo escuro), #6b21a8 (roxo), #a855f7 (lilás),
           #d946ef (magenta/pink), #f5c842 (dourado), #fff
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:   #0d001a;
  --bg-dark:   #130025;
  --bg-mid:    #1e003a;
  --purple-deep: #2d006b;
  --purple:    #6b21a8;
  --purple-mid:#8b3ec8;
  --lilac:     #a855f7;
  --magenta:   #d946ef;
  --pink:      #ec4899;
  --gold:      #f5c842;
  --gold-light:#fde68a;
  --white:     #ffffff;
  --off-white: #f0e8ff;
  --text-muted:#b89fcc;
  --card-bg:   rgba(255,255,255,0.05);
  --card-border: rgba(168,85,247,0.25);
  --radius:    12px;
  --radius-lg: 20px;
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Raleway', sans-serif;
  --font-script:  'Dancing Script', cursive;
  --transition:   0.3s ease;
  --glow: 0 0 30px rgba(168,85,247,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── GLOBAL ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.script-font { font-family: var(--font-script); font-size: 1.8rem; color: var(--gold-light); }

/* ── ANIMATIONS ── */
.animate-up { opacity: 0; transform: translateY(40px); animation: fadeUp 0.8s ease forwards; }
.animate-right { opacity: 0; transform: translateX(60px); animation: fadeRight 0.9s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 0.9s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { to { opacity: 1; transform: translateX(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 0, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168,85,247,0.15);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.5rem 2rem;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.logo-box {
  display: grid; grid-template-columns: 1fr 1fr;
  width: 40px; height: 40px; border: 2px solid var(--lilac);
  border-radius: 6px; overflow: hidden;
}
.logo-box.sm { width: 30px; height: 30px; }
.logo-gc { background: var(--lilac); color: var(--bg-deep); font-size: 0.5rem; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.logo-fc { background: var(--bg-deep); color: var(--lilac); font-size: 0.5rem; font-weight: 900; display: flex; align-items: center; justify-content: center; border: 1px solid var(--lilac); }
.logo-text { display: flex; flex-direction: column; font-size: 0.55rem; font-weight: 600; color: var(--white); line-height: 1.2; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.nav-links a { color: var(--off-white); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: var(--transition); white-space: nowrap; }
.nav-links a:hover { color: var(--lilac); }
.nav-notified {
  border: 1.5px solid var(--lilac);
  padding: 0.35rem 1rem; border-radius: 20px;
  color: var(--lilac) !important;
}
.nav-notified:hover { background: var(--lilac); color: var(--white) !important; }
.nav-cta {
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  padding: 0.45rem 1.2rem; border-radius: 20px;
  color: var(--white) !important; font-weight: 700;
  box-shadow: 0 4px 15px rgba(217,70,239,0.4);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(217,70,239,0.6); }
.nav-lang { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

.nav-mobile { display: none; flex-direction: column; gap: 0.5rem; padding: 1rem 2rem 1.5rem; }
.nav-mobile a { color: var(--off-white); text-decoration: none; font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-cta-mobile { background: linear-gradient(135deg, var(--magenta), var(--purple)); padding: 0.8rem 1.5rem; border-radius: 8px; text-align: center; font-weight: 700; margin-top: 0.5rem; }


img[src="static/img/secimprensamobileat.png"] {
  display: none !important;
}

img[src="static/img/secao4privilegiomobile.png"] {
  display: none !important;
}

img[src="static/img/secao5cronogramamobile.png"] {
  display: none !important;
}

img[src="static/img/secao6categoriasmobile.png"] {
  display: none !important;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.mobile-only {
  display: none;
}

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 80px;
  background: var(--bg-deep) !important; /* só isso, sem gradiente */
}
/* ══════════════════════════════════════════
   HERO DESCRIPTION (texto sobre a imagem)
   ══════════════════════════════════════════ */

.hero-description-overlay {
  position: absolute;
  bottom: 31%;
  left: 5%;
  width: 45%;
  z-index: 20;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: white;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
  letter-spacing: 0.5px;
}
  
  


/* Destaque para palavras importantes (opcional) */
.hero-description strong {
  color: var(--gold);
  font-weight: 700;
}
.hero-bg {
  
  position: absolute; inset: 0;
  background-size: 100%;
  background-position: center 70%;
  background-repeat: no-repeat;
  opacity: 1;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.8), transparent);
  animation: float linear infinite;
}
.hero-floating-btn {
  position: absolute;
  bottom: 7%;
  left: 4.8%;      /* ALINHA COM O CONTAINER - ajuste este valor */
  transform: translateX(0);  /* Remove o translateX anterior */
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--magenta);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(220,200,240,0.85));
  border: 2px solid var(--magenta);
  box-shadow: 0 0 20px rgba(217,70,239,0.35), inset 0 1px 2px rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  white-space: nowrap;
}

.hero-floating-btn:hover {
  transform: translateY(-3px);  /* Remove o translateX do hover também */
  box-shadow: 0 0 35px rgba(217,70,239,0.55), inset 0 1px 2px rgba(255,255,255,0.9);
}

.hero-btn-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}



@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 2rem; padding: 3rem 2rem;
}
.hero-content { display: grid; flex-direction: column; gap: 1rem; }

.hero-pre { font-size: 0; margin-bottom: -0.5rem; }
.hero-pre em { font-size: 2rem; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white);
  text-shadow: 0 0 60px rgba(168,85,247,0.5);
}
.hero-sub { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; max-width: 480px; font-weight: 400; }
.hero-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.meta-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(168,85,247,0.3);
  padding: 0.5rem 1rem; border-radius: 25px;
  font-size: 0.9rem; font-weight: 600;
}
.meta-badge svg { width: 16px; height: 16px; fill: none; stroke: var(--lilac); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--purple) 100%);
  color: var(--white); text-decoration: none; font-weight: 700;
  padding: 0.9rem 2rem; border-radius: 30px; font-size: 1rem;
  box-shadow: 0 8px 30px rgba(217,70,239,0.5);
  transition: var(--transition); width: fit-content;
  border: none; cursor: pointer;
}
.btn-hero svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(217,70,239,0.7); }

.hero-realizacao { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.hero-realizacao > span { font-style: italic; color: var(--text-muted); font-size: 0.85rem; }
.realizacao-logos { display: flex; align-items: center; gap: 1rem; }
.realizacao-terra {
  background: linear-gradient(135deg, #ff6600, #ff9900);
  color: white; font-weight: 900; font-size: 0.75rem;
  padding: 0.3rem 0.6rem; border-radius: 6px; line-height: 1.1; text-align: center;
}
.realizacao-gcfc { display: flex; align-items: center; }

.hero-image {
  position: relative; display: flex; justify-content: flex-end; align-items: flex-end;
  height: 75vh; min-height: 400px;
}
.hero-image img {
  max-height: 100%; max-width: 100%; object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(168,85,247,0.4));
  position: relative; z-index: 2;
}
.hero-glow {
  position: absolute; bottom: 0; right: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.3), transparent 70%);
  border-radius: 50%; filter: blur(40px); z-index: 1;
}
.hero-bottom-glow {
  position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  z-index: 3;
}

/* Banner section com posicionamento relativo */
.banner-section {
  position: relative;
  width: 100%;
  background: var(--bg-deep);
    overflow: hidden;
}

.banner-wrapper {
  position: relative;
  width: 100%;
}

.banner-section img {
  width: 100%;
  display: block;
}

/* Bloco sobreposto à imagem do banner */
.banner-overlay-text {
  position: absolute;
  left: 8%;
  top: 20%;
  transform: translateY(-50%);
  width: 42%;
  z-index: 99;
  pointer-events: auto;
}

/* Linha superior */
.banner-lead {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.banner-line {
  width: 60px;
  height: 2px;
  background: white;
  margin-top: 25%;
}

.banner-lead-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-top: 25%;
}

/* Texto principal */
.banner-main-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(29px, 2vw, 50px);
  line-height: 1.1;
  color: white;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
  margin-bottom: 4rem;
  margin-top: 20%;
}

/* TRAVA O CONTEÚDO AO ZOOM */
.banner-text-container,
.banner-overlay-text,
.banner-overlay-text * {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.banner-main-text strong {
  font-weight: 600;
}

/* Linha de ícones */
.banner-features {
  display: flex;
  gap: 2.5rem;
  flex-wrap: nowrap;
}

.banner-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.8rem;
}

.banner-icon {
  width: 55px;
  height: 55px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

.banner-feature span {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: white;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  line-height: 1.3;
  max-width: 500px;
  white-space: nowrap;
  
  
}

.banner-section {
  width: 100%;
  background: var(--bg-deep);
}

.banner-section img {
  width: 100%;
  display: block;
}
/* Container invisível para referência de alinhamento */
.hero-container-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  /* Container invisível - só serve como referência */
  background: transparent;
  pointer-events: none; /* Permite clicar através do container */
}

/* Você pode definir áreas específicas dentro do container */
.hero-container-overlay::before {
  content: '';
  position: absolute;
  left: 8%;      /* Define a margem esquerda desejada */
  top: 0;
      /* Linha de referência (opcional - remove depois) */
  height: 100%;
  background: rgba(255, 0, 0, 0.3); /* Visível para debug - remove depois */
  pointer-events: none;
}
/* ══════════════════════════════════════════
   VIDEO
══════════════════════════════════════════ */
.video-section {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-dark) 50%, var(--bg-deep));
  padding: 5rem 2rem; position: relative;
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-dark) 50%, var(--bg-deep));
  background-image: url('static/img/sec2video.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay; /* mescla com o gradiente */
  padding: 5rem 2rem;
  position: relative;
}
.section-ornament {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lilac), transparent);
}
.section-ornament.top { top: 0; }
.section-ornament.bottom { bottom: 0; }
.video-wrapper { position: relative; max-width: 860px; margin: 0 auto; }
.video-frame {
  border-radius: 20px; overflow: hidden;
  border: 2px solid rgba(168,85,247,0.4);
  box-shadow: 0 0 60px rgba(168,85,247,0.3), 0 30px 80px rgba(0,0,0,0.5);
  aspect-ratio: 16/9; position: relative;
  background: linear-gradient(135deg, #1a003a, #0d001a);
}
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  background: linear-gradient(135deg, rgba(107,33,168,0.7), rgba(13,0,26,0.8));
}
.video-thumbnail-bg {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.3rem;
}
.vl-small { font-size: 0.7rem; letter-spacing: 3px; color: var(--gold-light); font-weight: 600; }
.vl-big { font-size: clamp(2rem, 6vw, 4rem); font-weight: 900; font-family: var(--font-display); color: var(--white); line-height: 1; }
.vl-city { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 2px; }
.gcfc-logo-video { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 0.6rem; }
.gcfc-logo-video span { font-size: 0.65rem; color: var(--text-muted); }
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 0 rgba(217,70,239,0.5);
  animation: pulse-ring 2s ease infinite;
  transition: var(--transition);
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 30px; height: 30px; fill: white; margin-left: 4px; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(217,70,239,0.5); }
  70% { box-shadow: 0 0 0 30px rgba(217,70,239,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,70,239,0); }
}

.video-swirl.left { left: -80px; transform: translateY(-50%) rotate(-30deg); }
.video-swirl.right { right: -80px; transform: translateY(-50%) rotate(30deg) scaleX(-1); }

/* ══════════════════════════════════════════
   WINNERS
══════════════════════════════════════════ */
.winners-section { padding: 5rem 2rem; background: var(--bg-dark); overflow: hidden; }
.winners-track-wrapper { position: relative; overflow: hidden; }
.winners-track {
  display: flex; gap: 1.5rem;
  animation: scroll-left 30s linear infinite;
  width: max-content;
  padding: 1.5rem 0;
}
.winners-track:hover { animation-play-state: paused; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.winner-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  cursor: pointer;
}
.winner-logo {
  width: 110px; height: 80px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #222;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 2px solid rgba(168,85,247,0.2);
  transition: var(--transition);
  padding: 0.5rem;
  
}
.winner-logo.azzure {
  background: #00497b !important;
}
.winner-logo.ita {
  background: #8d014c !important;
}
.winner-logo.nord {
  padding: 0px !important;
  
}
.winner-logo.sky {
  padding: 2px !important;
  
}
.winner-logo.velox {
  padding: 0px !important;
  
}
.winner-logo:hover { border-color: var(--lilac); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(168,85,247,0.4); }
.winner-logo.sky-g { background: #2d2d2d; color: #f5c842; }
.winner-logo.sky-g em { font-style: italic; font-size: 1.4rem; }
.winner-logo.sky-g small { font-size: 0.6rem; color: #999; font-style: normal; }
.winner-logo.ita { background: linear-gradient(135deg, #1565c0, #0d47a1); color: white; }
.winner-logo.ita span { font-size: 1.4rem; color: #ffcc00; }
.winner-logo.ita small { font-size: 0.55rem; letter-spacing: 1px; }
.winner-logo.iobee { background: #f5f5f5; color: #333; font-size: 1.2rem; }
.winner-logo.polen { background: #1a1a2e; color: #a0c4ff; font-size: 0.7rem; text-align: center; }
.winner-logo.veloxx { background: #111; color: #fff; font-style: italic; }
.winner-card span { font-size: 0.75rem; color: var(--text-muted); }
.winners-arrow {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  border: none; color: white; font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--glow); transition: var(--transition);
}
.winners-arrow:hover { transform: translateY(-50%) scale(1.1); }

.winner-logo img {
  width: 135%;
  height: 135%;
  object-fit: contain;
  padding: 8px;
}

/* ══════════════════════════════════════════
   PRESS
══════════════════════════════════════════ */
.press-section {
  position: relative;
  width: 100%;
}

.press-bg-img {
  width: 100%;
  display: block;
}

.press-text-overlay {
  position: absolute;
  top: 30%;
  left: 9%;
  transform: translateY(-50%);
  z-index: 2;
}

.press-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.0rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #aaaaaa 40%, #cccccc 60%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.press-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 400;
}

/* ══════════════════════════════════════════
   CATEGORIAS PARTICIPANTES
══════════════════════════════════════════ */

.categories-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 5rem 2rem;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.categories-bg {
  position: absolute;
  inset: 0;
  background-image: url('../static/img/catparticipantesl.png'); /* troque aqui */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.categories-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,0,26,0.75) 0%, rgba(45,0,107,0.55) 100%);
}

.categories-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/* ── TÍTULO ── */
.categories-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 2.8vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 1px;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #aaaaaa 40%, #cccccc 60%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* ── DIVISOR ── */
.categories-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.divider-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

/* ── GRID ── */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 4rem;
  text-align: left;
  max-width: 780px;
  margin: 0 auto;
}

.cat-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 200;
  color: rgba(255,255,255,0.9);
}

.cat-item svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: url(#silverGrad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .categories-section {
    padding: 3.5rem 1.5rem;
    min-height: auto;
  }

  .categories-title {
    font-size: 1.8rem;
  }

  .divider-text {
    font-size: 0.95rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .cat-item {
    font-size: 0.95rem;
  }

  .cat-item svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 380px) {
  .categories-title {
    font-size: 1.5rem;
  }
}
/* ══════════════════════════════════════════
   PRIVILEGES
══════════════════════════════════════════ */
.privileges-section { padding: 5rem 2rem; background: var(--bg-deep); }
.privileges-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.privilege-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  transition: var(--transition);
}
.privilege-card:hover {
  border-color: var(--lilac);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(168,85,247,0.25);
}
.priv-icon {
  width: 64px; height: 64px; margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, rgba(217,70,239,0.2), rgba(107,33,168,0.2));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(168,85,247,0.3);
}
.priv-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--white); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.privilege-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.4rem; }
.privilege-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   SEÇÃO VENUE (LOCAL E HORÁRIOS)
   ══════════════════════════════════════════ */

.venue-section {
  position: relative;
  width: 100%;
  min-height: 80px;
  overflow: hidden;
}


/* Imagem de fundo */
.venue-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay roxo/preto translúcido */
.venue-overlay {
  position: absolute;
  top: 0;
  left: 15%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(13, 0, 26, 0.3) 0%,
    rgba(107, 33, 168, 0.75) 50%,
    rgba(217, 70, 239, 0.7) 100%);
  z-index: 1;
}

/* Container do conteúdo */
.venue-content-wrapper {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.venue-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
}

/* Lado Esquerdo (reservado) */
.venue-left {
  /* Pode deixar vazio ou adicionar conteúdo */
}

/* Lado Direito - Card de informações */
.venue-right {
  display: flex;
  justify-content: flex-end;
}

.venue-info-card {
  max-width: 800px;
  width: 90%;
  padding: 3rem;
  
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ══════════════════════════════════════════
   HEADER (ÍCONE + TÍTULO)
   ══════════════════════════════════════════ */

.venue-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.venue-icon {
  width: 48px;
  height: 48px;
  color: rgb(255, 255, 255);
  flex-shrink: 0;
}

.venue-icon svg {
  width: 100%;
  height: 100%;
  stroke: rgb(189, 189, 189);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px rgba(217, 70, 239, 0.5));
}

.venue-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

/* Subtítulo */
.venue-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  margin-left: 4px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════════════
   PROGRAMAÇÃO COM LINHA VERTICAL
   ══════════════════════════════════════════ */

.venue-schedule-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

/* Linha vertical branca */
.venue-timeline-line {
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.3));
  z-index: 0;
}

.venue-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  position: relative;
  z-index: 1;
}

.schedule-time {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  min-width: 60px;
  text-shadow: 0 0 15px rgba(217, 70, 239, 0.4);
  letter-spacing: -0.02em;
}

.schedule-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.0;
}
.schedule-desc-aj {
  margin-left: 5.3%;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.0;

}

/* ══════════════════════════════════════════
   BOTÃO LOCALIZAÇÃO
   ══════════════════════════════════════════ */

.venue-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 70, 239, 0.5);
  border-radius: 50px;
  padding: 1rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--magenta);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.3);
  margin-top: 0.5rem;
}

.venue-location-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--magenta);
  stroke-width: 2;
}

.venue-location-btn:hover {
  background: rgba(217, 70, 239, 0.2);
  border-color: var(--magenta);
  box-shadow: 0 0 25px rgba(217, 70, 239, 0.5);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .venue-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .venue-right {
    justify-content: center;
  }
  
  .venue-info-card {
    max-width: 600px;
  }
  
  .venue-main-title {
    font-size: 3rem;
  }
  
  .schedule-time {
    font-size: 1.3rem;
    min-width: 55px;
  }
  
  .schedule-desc-aj {
    font-size: 0.9rem;
    margin-left: 0%;
  }
  
  .venue-timeline-line {
    left: 55px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .venue-section {
    min-height: auto;
  }
  
  .venue-content-wrapper {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .venue-container {
    padding: 2rem 1.2rem;
  }
  
  .venue-info-card {
    padding: 1.5rem;
    backdrop-filter: blur(4px);
  }
  
  .venue-header {
    gap: 0.75rem;
  }
  
  .venue-icon {
    width: 36px;
    height: 36px;
  }
  
  .venue-main-title {
    font-size: 1.5rem;
  }
  
  .venue-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
  
  .venue-timeline-line {
    left: 45px;
  }
  
  .schedule-item {
    gap: 1rem;
  }
  
  .schedule-time {
    font-size: 1.1rem;
    min-width: 45px;
  }
  
  .schedule-desc {
    font-size: 0.8rem;
  }
  
    
  

}
  
  .venue-schedule-list {
    gap: 1rem;
  }
  
  .venue-location-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .venue-info-card {
    padding: 1.2rem;
  }
  
  .venue-main-title {
    font-size: 1.3rem;
  }
  
  .venue-timeline-line {
    left: 38px;
  }
  
  .schedule-time {
    font-size: 1rem;
    min-width: 40px;
  }
  
  .schedule-desc {
    font-size: 0.75rem;
  }
}

.btn-localizacao {
  position: absolute;
  bottom: 5%;      /* ajuste para subir ou descer */
  left: 67%;        /* ajuste para mover na horizontal */
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--magenta);
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(220,200,240,0.7));
  border: 2px solid var(--magenta);
  box-shadow: 0 0 20px rgba(217,70,239,0.3), inset 0 1px 1px rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  z-index: 10;
}

.btn-localizacao svg {
  width: 45px;
  height: 45px;
  fill: var(--magenta);
  flex-shrink: 0;
}

.btn-localizacao:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(230,210,250,0.8));
  box-shadow: 0 0 35px rgba(217,70,239,0.5), inset 0 1px 1px rgba(255,255,255,0.9);
  transform: translateX(-50%) translateY(-2px);
}

/* ══════════════════════════════════════════
   MENU / CARDÁPIO
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   SEÇÃO CARDÁPIO COM SOBREPOSIÇÃO
   ══════════════════════════════════════════ */

.menu-section {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
}

/* Imagem de fundo */
.menu-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.menu-bg-mobile {
    display: none !important;
  }

/* Conteúdo sobreposto */
.menu-overlay-content {
  position: relative;
  z-index: 2;
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.menu-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* ══════════════════════════════════════════
   TIMELINE (LINHA VERTICAL COM CÍRCULOS)
   ══════════════════════════════════════════ */

.menu-timeline {
  position: relative;
  padding-left: 36px;
}

/* Linha vertical branca */
.timeline-line {
  position: absolute;
  left: 16px;
  top: 63px;
  bottom: 10px;
  width: 1.5px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
  z-index: 1;
   height: 90%;
}

.timeline-items {
  position: relative;
  z-index: 2;
}

/* Cada item da timeline */
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

/* Último item sem margem */
.timeline-item:last-child {
  margin-bottom: 0;
}

/* Círculo branco */
.timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
  z-index: 3;
}




/* Conteúdo do texto */
.timeline-content {
  flex: 1;
  padding-left: 20px;
  margin-top: 5px;
}
.title-item .timeline-dot {
  display: none !important;
}

/* Título do cardápio */
.menu-cardapio-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(190, 190, 190);
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  margin-top: -5%;
  margin-left: 18%;
}

/* Texto dos itens */
.menu-item-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: white;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Subtexto para ingredientes */
.menu-subtext {
  font-size: 0.85rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .menu-overlay-content {
    padding: 3rem 1.5rem;
  }
  
  .menu-container {
    max-width: 700px;
  }
  
  .menu-cardapio-title {
    font-size: 1.6rem;
  }
  
  .menu-item-text {
    font-size: 0.9rem;
  }
  
  .menu-subtext {
    font-size: 0.75rem;
  }
  
  .timeline-item {
    margin-bottom: 1.5rem;
  }
  
  .title-item {
    margin-bottom: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-overlay-content {
    padding: 3rem 2rem;
    min-height: auto;
  }
  
  .menu-section {
    min-height: auto;
  }
  
  .menu-timeline {
    padding-left: 25px;
  }
  
  .timeline-line {
    left: 10px;
  }
  
  .timeline-dot {
    left: -18px;
    width: 8px;
    height: 8px;
  }
  
  .title-item .timeline-dot {
    width: 10px;
    height: 10px;
  }
  
  .timeline-content {
    padding-left: 15px;
  }
  
  .menu-cardapio-title {
    font-size: 1.3rem;
  }
  
  .menu-item-text {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .menu-subtext {
    font-size: 0.7rem;
  }
  
  .timeline-item {
    margin-bottom: 1.2rem;
  }
  
  .title-item {
    margin-bottom: 1.5rem;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .menu-timeline {
    padding-left: 19px;
  }
  
  .timeline-line {
    left: 7px;
  }
  
  .timeline-dot {
    left: -14px;
    width: 7px;
    height: 7px;
  }
  
  .timeline-content {
    padding-left: 12px;
  }
  
  .menu-cardapio-title {
    font-size: 1.1rem;
  }
  
  .menu-item-text {
    font-size: 0.7rem;
  }
  
  .menu-subtext {
    font-size: 0.6rem;
  }
  
  .timeline-item {
    margin-bottom: 1rem;
  }
}

/* ══════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════ */
.categories-section {
  width: 100%;
  background: var(--bg-mid);
}

.categories-section img {
  width: 100%;
  display: block;
}
.categories-bg-car {
  position: absolute; bottom: 0; right: -5%; width: 60%; height: 50%;
  background: radial-gradient(ellipse at center, rgba(107,33,168,0.15), transparent 70%);
  pointer-events: none;
}
.categories-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.categories-sub { font-size: 1rem; color: var(--gold-light); font-weight: 600; text-align: center; }
.categories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 3rem; max-width: 700px; margin: 0 auto; }
.cat-col { display: flex; flex-direction: column; gap: 0.8rem; }
.cat-item { display: flex; align-items: center; gap: 0.7rem; font-size: 1.4rem; color: var(--off-white); }
.cat-item svg { width: 20px; height: 20px;  flex-shrink: 0; }

/* ══════════════════════════════════════════
   FORM
══════════════════════════════════════════ */
.form-section {
  position: relative;
  padding: 5rem 2rem;
  overflow: hidden;
}

.form-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.form-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 0, 26, 0.6);
}

.form-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.form-logo img {
  max-width: 180px;
  margin-bottom: 2rem;
}

.form-promo-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.form-left p {
  color: var(--off-white);
  font-size: 1rem;
  line-height: 1.7;
}

.form-title {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-group label {
  font-size: 0.9rem;
  color: var(--off-white);
  font-weight: 400;
}

.field-group input,
.field-group select {
  background: rgba(20, 0, 50, 0.7);
  border: 1.5px solid rgba(168, 85, 247, 0.5);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}

.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--lilac);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
  background: rgba(30, 0, 60, 0.8);
}

.field-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  background-color: rgba(20, 0, 50, 0.7);
}

.field-group select option {
  background: #1e003a;
}

.btn-submit {
  background: transparent;
  border: 2px solid var(--magenta);
  color: var(--magenta);
  padding: 1rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(217, 70, 239, 0.4);
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { padding: 5rem 2rem; background: var(--bg-dark); }
.faq-eyebrow { text-align: center; color: var(--text-muted); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.5rem; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  border-radius: 10px;
  border: 1px solid rgba(168,85,247,0.25);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.faq-item.open { border-color: rgba(168,85,247,0.5); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; background: none; border: none;
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 600; cursor: pointer; text-align: left; transition: var(--transition);
}
.faq-q:hover { color: var(--lilac); }
.faq-item.open .faq-q { color: var(--lilac); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; background: linear-gradient(135deg, var(--magenta), var(--purple)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: white; font-weight: 700; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 1.5rem 1rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   CONTACT / FOOTER
══════════════════════════════════════════ */
.final-section {
  position: relative;
  width: 100%;
}

.final-bg-img {
  width: 100%;
  display: block;
}

.final-overlay {
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.final-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: rgb(230, 230, 230);
  margin-bottom: 0.5rem;
}

.final-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.final-contact-btn {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: var(--transition);
  max-width: 380px;
}

.final-contact-btn:hover {
  transform: translateX(5px);
}

.final-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 0px;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(217,70,239,0.4);
}

.final-contact-icon svg {
  width: 26px;
  height: 26px;
}

.final-contact-text {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(220,200,240,0.8));
  color: #444;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0 25px 25px 0;
  flex: 1;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.8);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .privileges-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-lang { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-mobile.open { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { height: 280px; justify-content: center; }
  .venue-inner, .menu-inner, .press-inner, .form-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .privileges-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .privileges-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .video-swirl { display: none; }
  .drinks-grid { grid-template-columns: 1fr; }
  .drink-item.full { grid-column: span 1; }
}
/* Esconder a imagem mobile no desktop */
.hero-mobile-image {
  display: none;
}

@media (max-width: 768px) {
  

}


img[src="static/img/secjordevaatmobile.png"] {
  display: none;
}


.logo-globo img { width: 120px; }
.logo-valor img { width: 130px; }
.logo-ig img { width: 40px; }
.logo-terra img { width: 120px; }

/* Ou para estilos diferentes */
.logo-globo { background: #003399; padding: 5px; }
.logo-valor { border-radius: 10px; }
.logo-ig { background: #ffffff; padding: 5px; }
.logo-terra { background: #ffae01; padding: 5px; filter: brightness(1.1); }
/* ══════════════════════════════════════════
   SEÇÃO CONFIRME SUA PRESENÇA (WHATSAPP)
══════════════════════════════════════════ */

.whatsapp-section {
  position: relative;
  padding: 5rem 2rem;
  overflow: hidden;
  background: linear-gradient(160deg, #0d001a 0%, #1e003a 50%, #0d001a 100%);
}

.whatsapp-bg {
  position: absolute;
  inset: 0;
  background-image: url('static/img/form-bg.jpg'); /* troque pela sua imagem de fundo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.whatsapp-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,0,26,0.7) 40%, rgba(13,0,26,0.4) 100%);
}

.whatsapp-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── LADO ESQUERDO ── */
.whatsapp-logo {
  margin-bottom: 1.8rem;
}

.whatsapp-logo img {
  max-width: 160px;
  height: auto;
}

.whatsapp-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.whatsapp-sub {
  color: var(--off-white);
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
}

/* ── LADO DIREITO — CARD ── */
.whatsapp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ícone whatsapp metálico */
.whatsapp-icon-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.25), transparent 70%);
  filter: blur(10px);
}

.whatsapp-icon-svg {
  width: 100px;
  height: 100px;
  filter:
    drop-shadow(0 4px 15px rgba(168,85,247,0.5))
    drop-shadow(0 0 30px rgba(217,70,239,0.3));
}

.whatsapp-icon-svg path:first-child {
  fill: url(#metalGrad);
}

/* gradiente metálico via SVG inline */
.whatsapp-icon-svg {
  background: none;
}

/* Simula o efeito metálico com filter */
.whatsapp-icon-wrap .whatsapp-icon-svg {
  filter:
    drop-shadow(0 6px 20px rgba(150,120,200,0.6))
    drop-shadow(0 0 40px rgba(217,70,239,0.2))
    contrast(1.1) brightness(1.4) saturate(0.3) grayscale(0.6);
}

.whatsapp-card-text {
  font-size: 0.92rem;
  color: var(--off-white);
  line-height: 1.7;
  opacity: 0.85;
}

/* ── BOTÃO WHATSAPP ── */
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(168,85,247,0.1));
  border: 2px solid rgba(168, 85, 247, 0.6);
  border-radius: 15px;
  padding: 0.9rem 2rem;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  transition: var(--transition);
  box-shadow:
    0 0 20px rgba(168,85,247,0.2),
    inset 0 1px 1px rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(217,70,239,0.15));
  border-color: var(--lilac);
  box-shadow: 0 0 35px rgba(168,85,247,0.4);
  transform: translateY(-2px);
}
.btn-whatsapp-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}
.btn-whatsapp svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: brightness(1.5) saturate(0.2) grayscale(0.4);
}

.btn-whatsapp svg path:first-child {
  fill: #c0b0d8;
}

.btn-whatsapp-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.btn-whatsapp-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.btn-whatsapp-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 500;
}

.whatsapp-hours {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .whatsapp-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .whatsapp-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-title {
    font-size: 2rem;
  }

  .whatsapp-card {
    padding: 2rem 1.5rem;
  }

  .btn-whatsapp {
    padding: 0.9rem 1.5rem;
  }

  .btn-whatsapp-main {
    font-size: 0.7rem;
  }
}
.whatsapp-icon-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.video-thumbnail-bg {
  background-image: url('static/img/video.png');
  background-size: cover;
  background-position: center;
  /* remove os textos se não quiser mais */
}

/* Se quiser esconder os textos */
.video-label,
.gcfc-logo-video {
  display: none;
}


.video-capa-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.section-title,
.press-heading,
.form-promo-title,
.form-title,
.whatsapp-title,
.venue-title,
.menu-title,
.privilege-card h3,
.contact-title,
.faq-eyebrow {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #aaaaaa 40%, #cccccc 60%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.press-logos-overlay {
  position: absolute;
  top: 43%;    /* ajuste para subir ou descer */
  left: 9%;    /* ajuste para mover na horizontal */
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.press-logo-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  width: 80px;
  height: 80px;
}

.press-logo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.press-logo-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
  filter: brightness(1.1);
}