/* css/styles.css */
:root {
  /* Brand Colors — Festa de Gols 2026 Design System */
  --c-primary: #9a4600;
  --c-primary-dark: #753400;
  --c-primary-light: #f4760f;
  --c-accent: #f4760f;
  --c-accent-dark: #9a4600;
  --c-success: #80a700;

  /* Neutrals */
  --c-white: #ffffff;
  --c-bg-light: #f3f3f4;
  --c-text: #584236;
  --c-text-dark: #1a1c1c;
  --c-text-light: #8b7264;
  --c-border: #dfc0b0;

  /* Typography */
  --font-heading-main: "Montserrat", sans-serif;
  --font-heading-sec: "Montserrat", sans-serif;
  --font-body: "Be Vietnam Pro", sans-serif;

  /* Transitions & Animations */
  --transition-fast: 0.2s ease-in-out;
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background-color: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--c-text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 27px; /* Aumentado em 3px das margens da página */
}

/* Typography Utilities */
.section-title {
  font-family: var(--font-heading-sec);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: var(--c-text);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Header */
.header {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--c-white);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 39, 138, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 104px; /* Aumentado de 72px para 104px para dar mais espaçamento à logo */
  transition: height var(--transition-fast);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--c-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle span:nth-child(1) {
  top: 0;
}

.mobile-toggle span:nth-child(2) {
  top: 9px;
}

.mobile-toggle span:nth-child(3) {
  top: 18px;
}

/* Hero Section */
.new-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background-color: transparent;
  color: #ffffff;
}

.new-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}


.new-hero-banner-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0;
}

.new-hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 0.85;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.new-hero-actions {
  margin-top: 0;
}

.new-hero-btn {
  display: inline-block;
  background-color: #f4760f;
  color: #552400;
  font-family: var(--font-heading-sec);
  font-size: 1rem;
  font-weight: 900;
  padding: 14px 36px;
  border-radius: 9999px;
  border: 4px solid #1a1c1c;
  box-shadow: 6px 6px 0px rgba(26,28,28,1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.new-hero-btn:hover {
  transform: scale(1.05);
}

.new-hero-btn:active {
  transform: scale(0.95);
}

/* Divisória estilizada entre a Hero e a próxima seção */
.hero-divider {
  position: relative;
  z-index: 20;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background-color: #ffffff;
}

.hero-divider-svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-divider-fill {
  position: relative;
  z-index: 1;
}

/* Game Section */
.new-game-section {
  width: 100%;
  padding: 96px 24px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.blob-blue {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 320px;
  height: 320px;
  background-color: rgba(10, 149, 208, 0.2);
  border-radius: 50%;
  filter: blur(64px);
  z-index: 0;
}

.new-game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .new-game-container {
    flex-direction: row;
  }
}

.new-game-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.new-game-visual {
  flex: 1.5;
  width: 100%;
  position: relative;
  z-index: 10;
}

.new-game-card {
  min-height: 600px;
  background-color: #6b2500;
  border-radius: 24px;
  border: 4px solid #3d58b5;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 0 #072d8c;
  transform: rotate(1deg);
  transition: transform 0.3s;
}
.new-game-card:hover {
  transform: rotate(0deg);
}

/* Game Embed Container */
.game-embed {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ge-burst-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #f4760f 0%, #9a4600 45%, #6b2500 100%);
  z-index: 0;
}
.ge-burst-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.07) 0px,
    rgba(255, 215, 0, 0.07) 2px,
    transparent 2px,
    transparent 28px
  );
  z-index: 1;
}
.ge-globe-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 2px, transparent 2px);
  background-size: 60px 60px;
  z-index: 2;
  pointer-events: none;
}
.ge-game-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── GAME SECTION — LEFT SIDE (Gold Package Style) ─────────────────── */
.game-info-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading-main);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f4760f;
  margin: 0;
}

.game-eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background-color: #f4760f;
  flex-shrink: 0;
}

.game-info-title {
  font-family: var(--font-heading-sec);
  font-size: clamp(1rem, 1.8vw, 1.9rem);
  font-weight: 900;
  color: #9a4600;
  line-height: 1.1;
  margin: 0;
  white-space: nowrap;
  filter: drop-shadow(2px 2px 0 rgba(154, 70, 0, 0.15));
}

.game-rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.game-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 59, 182, 0.1);
}

.game-rule-item:last-child {
  border-bottom: none;
}

.game-rule-dash {
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background-color: #003bb6;
  margin-top: 14px;
  flex-shrink: 0;
}

.game-rule-content {
  flex: 1;
}

.game-rule-number {
  font-family: var(--font-heading-sec);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f4760f;
  display: block;
  margin-bottom: 4px;
}

.game-rule-text {
  font-family: var(--font-heading-main);
  font-size: 0.88rem;
  font-weight: 600;
  color: #0d1b2a;
  margin: 0;
  line-height: 1.6;
}

.stat-card {
  background: var(--c-white);
  padding: 48px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 39, 138, 0.05);
  border: 1px solid var(--c-border);
  transition: transform var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card.primary {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateX(-30px);
  border-color: var(--c-primary-dark);
}

.stat-card.primary:hover {
  transform: translateX(-30px) translateY(-5px);
}

.stat-card.primary .stat-number {
  color: var(--c-accent);
}

.stat-card.secondary .stat-number {
  color: var(--c-success);
}

.faq-item {
  background: var(--c-bg-light);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--transition-smooth),
    transform var(--transition-smooth);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

/* Responsive */
@media (max-width: 1024px) {
  .stat-card.primary {
    transform: translateX(-15px);
  }

  .stat-card.primary:hover {
    transform: translateX(-15px) translateY(-5px);
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 90px; /* TopBar um pouco mais compacta no mobile */
  }

  .new-hero {
    padding: 0 !important;
  }

  .new-hero-content {
    bottom: 14px;
  }

  .new-hero-btn {
    padding: 11px 26px;
    font-size: 0.85rem;
  }

  .nav {
    position: absolute;
    top: 90px; /* Alinhado ao novo tamanho do header no mobile */
    left: 0;
    width: 100%;
    background: var(--c-white);
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-in-out;
  }

  .nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .mobile-toggle {
    display: block;
  }

  .stat-card.primary {
    transform: none;
  }

  .stat-card.primary:hover {
    transform: translateY(-5px);
  }
}

/* =========================================================
   CUPONS DO ARRAIÁ — Section 3
   ========================================================= */
.new-coupons-section {
  position: relative;
  width: 100%;
  padding: 100px 24px 120px;
  background-color: #06122b;
  overflow: hidden;
}

/* Decorative background shapes */
.new-coupons-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.new-coupons-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 149, 208, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.new-coupons-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

/* Section Header */
.new-coupons-header {
  text-align: center;
  margin-bottom: 64px;
}

.new-coupons-title {
  font-family: var(--font-heading-sec);
  font-size: calc(clamp(0.85rem, 4.2vw, 3.8rem) - 4px);
  font-weight: 900;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.8));
  line-height: 1.1;
  margin: 0 0 16px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.new-coupons-title-underline {
  display: block;
  width: 100%;
  height: 20px;
  color: #f4760f;
  margin-top: 4px;
}

.new-coupons-subtitle {
  display: inline-block;
  font-family: var(--font-heading-sec);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: #f4760f;
  border: 1.5px solid #9a4600;
  border-radius: 6px;
  padding: 6px 16px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.85);
  margin: 0;
  white-space: nowrap;
}

/* Grid */
.new-coupons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* ---- Ticket Card ---- */
.new-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.85);
  border: 3px solid #1a1c1c;
  border-left: 7px solid #1a1c1c;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.new-ticket:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 10px 12px 0px rgba(0, 0, 0, 0.85);
}

.ticket-name {
  font-family: var(--font-heading-sec);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0d1b2a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.ticket-qty {
  font-family: var(--font-heading-sec);
  font-size: 2.4rem;
  font-weight: 900;
  color: #1a1c1c;
  line-height: 1;
  flex-shrink: 0;
}

.ticket-qty-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.ticket-available {
  font-family: var(--font-heading-sec);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: #f4760f;
  border: 1.5px solid #9a4600;
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1.4;
  white-space: nowrap;
}

/* Ticket Buttons */
.ticket-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  border: 2.5px solid #1a1c1c;
  font-family: var(--font-heading-sec);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.75);
}

.ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0px rgba(0,0,0,0.75);
}

.ticket-btn:active {
  transform: translateY(1px);
  box-shadow: 1px 1px 0px rgba(0,0,0,0.75);
}

/* Featured ticket — gold accent */
.new-ticket.ticket-featured {
  border-color: #FFD700;
  border-left-color: #FFD700;
  box-shadow: 6px 6px 0px #FFD700, 0 0 24px rgba(255, 215, 0, 0.25);
  background: linear-gradient(160deg, #fff9e6 0%, #ffffff 100%);
}

.new-ticket.ticket-featured:hover {
  box-shadow: 10px 12px 0px #FFD700, 0 0 40px rgba(255, 215, 0, 0.35);
}

.new-ticket.ticket-featured .ticket-qty {
  color: #e65100;
}

.new-ticket.ticket-featured .ticket-available {
  background: #3d58b5;
  border-color: #1a2e7a;
}

/* Responsive adjustments for coupons */
@media (max-width: 768px) {
  .new-coupons-section {
    padding: 72px 16px 88px;
  }

  .new-coupons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ticket-name {
    font-size: 0.95rem;
  }

  .ticket-qty {
    font-size: 2rem;
  }
}

/* =========================================================
   NEW FOOTER
   ========================================================= */
.new-footer {
  background-color: #030c1a;
  border-top: 3px solid rgba(255, 215, 0, 0.2);
  padding: 32px 24px;
  color: rgba(255, 255, 255, 0.6);
}

.new-footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-footer-copyright {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  text-align: center;
}

/* ── MOBILE FULLSCREEN GAME BOARD ───────────────────────────────────────── */
@media (max-width: 767px) {
  .new-game-section {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .new-game-container {
    padding: 0;
    gap: 24px;
  }
  .new-game-info {
    padding: 0 16px;
  }
  .new-game-visual {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: none;
  }
  .new-game-card {
    min-height: 100svh;
    border-radius: 0;
    transform: none !important;
    box-shadow: none;
    border-left: none;
    border-right: none;
  }
}

/* ── Hero: ajustes de espaçamento para telas de celular ── */
@media (max-width: 480px) {
  .new-hero-content {
    bottom: 10px;
  }
  .new-hero-btn {
    padding: 9px 22px;
    font-size: 0.78rem;
    border-width: 3px;
    box-shadow: 4px 4px 0px rgba(26, 28, 28, 1);
  }
}

/* ── Telas muito pequenas (≤ 360px) ── */
@media (max-width: 360px) {
  .new-game-section {
    padding-top: 48px;
  }
  .game-info-title {
    font-size: 0.95rem;
  }
  .game-rule-text {
    font-size: 0.82rem;
  }
}


