/* 
  =========================================
  MINDCARE - PALESTRA PARA CASAIS
  Design System & Stylesheet (Dark Theme)
  =========================================
*/

/* Importando Fontes Premium do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Variáveis de Cores e Tokens de Design */
:root {
  --bg-primary: #070707;
  --bg-secondary: #0f0f0f;
  --bg-card: #151515;
  --bg-card-hover: #1c1c1c;
  
  --gold-light: #f9e8a2;
  --gold-primary: #d4af37;
  --gold-dark: #aa7c11;
  --gold-deep: #8a6623;
  
  /* Gradientes Metálicos */
  --gold-gradient: linear-gradient(135deg, #f9e8a2 0%, #d4af37 40%, #aa7c11 75%, #8a6623 100%);
  --gold-gradient-text: linear-gradient(135deg, #fff3c4 0%, #d4af37 50%, #aa7c11 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(249, 232, 162, 0.08) 0%, rgba(212, 175, 55, 0.03) 50%, rgba(138, 102, 35, 0.08) 100%);
  --dark-gradient: linear-gradient(180deg, #121212 0%, #070707 100%);
  
  /* Cores de Feedback */
  --color-success: #2ec4b6;
  --color-error: #e63946;
  
  /* Textos */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #7c7c7c;
  
  /* Bordas e Sombras */
  --border-gold-alpha: rgba(212, 175, 55, 0.15);
  --border-gold-alpha-hover: rgba(212, 175, 55, 0.4);
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.15);
  --shadow-glow-strong: 0 0 35px rgba(212, 175, 55, 0.3);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.8);
  
  /* Transições e Border Radius */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Fontes */
  --font-title: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Barra de Rolagem Customizada */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Elementos Utilitários de Texto */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.gold-text-gradient {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold-primary);
}

.text-center {
  text-align: center;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
}

/* Layout Geral & Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* -----------------------------------------
   HEADER & NAVIGATION
   ----------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(7, 7, 7, 0.95);
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .container {
  height: 65px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-img {
  height: 63px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

header.scrolled .header-logo-img {
  height: 53px;
}

.about-logo-img {
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.footer-logo-img {
  height: 63px;
  width: auto;
  display: block;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: var(--shadow-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
  filter: brightness(1.1);
}

.btn-gold:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-gold-alpha);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* Nav Menu (para desktops) */
.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--gold-primary);
}

/* Hamburguer menu para mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* -----------------------------------------
   HERO SECTION
   ----------------------------------------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 60%), var(--bg-primary);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-primary) 35%, rgba(7, 7, 7, 0.8) 60%, rgba(7, 7, 7, 0.4) 100%);
  z-index: 2;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: url('assets/couple_hero.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.55;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-alpha);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-primary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero-tag svg {
  fill: var(--gold-primary);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-info-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* -----------------------------------------
   PROBLEMS SECTION (AGITATION)
   ----------------------------------------- */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-alpha);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold-alpha-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-premium);
}

.problem-card:hover::before {
  height: 100%;
}

.problem-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
}

.problem-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.problem-title {
  font-size: 18px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.problem-desc {
  font-size: 14.5px;
  line-height: 1.6;
}

/* -----------------------------------------
   SOLUTION SECTION (THE EVENT)
   ----------------------------------------- */
#solucao {
  background: var(--bg-secondary);
}

.solution-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.solution-content-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 400;
  border-left: 2px solid var(--gold-primary);
  padding-left: 20px;
}

.solution-text {
  font-size: 15px;
  line-height: 1.7;
}

.solution-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.pillar-item {
  display: flex;
  gap: 16px;
}

.pillar-number {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--gold-primary);
  font-weight: 700;
  line-height: 1;
}

.pillar-info h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pillar-info p {
  font-size: 14px;
}

.solution-image-right {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-gold-alpha);
  aspect-ratio: 4/5;
}

.solution-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.solution-image-right:hover .solution-img {
  transform: scale(1.05);
}

.solution-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-overlay-title {
  font-size: 20px;
  color: var(--gold-light);
}

.solution-overlay-text {
  font-size: 13px;
  color: var(--text-secondary);
}

/* -----------------------------------------
   INFO EVENT SECTION (CARDS EXTRAS)
   ----------------------------------------- */
#detalhes-evento {
  background: radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%), var(--bg-primary);
}

.event-details-panel {
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold-alpha);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-premium);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
}

.panel-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-col:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 40px;
}

.panel-heading {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--gold-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.detail-icon {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.detail-icon svg {
  width: 24px;
  height: 24px;
}

.detail-text h5 {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.detail-text p {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.detail-text a {
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 13px;
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.detail-text a:hover {
  text-decoration: underline;
  color: var(--gold-light);
}

.countdown-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.countdown-item {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  text-align: center;
}

.countdown-value {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-primary);
  display: block;
}

.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}

.countdown-text {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 24px;
  line-height: 1.5;
}

/* -----------------------------------------
   WHO IS IT FOR SECTION
   ----------------------------------------- */
#para-quem {
  background: var(--bg-secondary);
}

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.audience-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.03);
}

.audience-card.sim {
  border-top: 4px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.02);
}

.audience-card.nao {
  border-top: 4px solid #333333;
}

.audience-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.audience-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
}

.audience-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* -----------------------------------------
   ABOUT MINDCARE SECTION
   ----------------------------------------- */
#sobre-mindcare {
  background: var(--bg-primary);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-logo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-alpha);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 1;
  transition: var(--transition-smooth);
}

.about-logo-card:hover {
  border-color: var(--border-gold-alpha-hover);
  box-shadow: var(--shadow-glow), var(--shadow-premium);
}

.about-logo-svg {
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
}

.about-logo-card h3 {
  font-size: 26px;
  letter-spacing: 0.1em;
}

.about-logo-card p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-top: 4px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.about-text {
  font-size: 15.5px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.about-feature-item {
  display: flex;
  gap: 12px;
}

.about-feature-icon {
  color: var(--gold-primary);
}

.about-feature-text h5 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: 13.5px;
}

/* -----------------------------------------
   PRICING & OFFERS SECTION
   ----------------------------------------- */
#ingressos {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#ingressos::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.pricing-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.pricing-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.tickets-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  align-items: center;
}

@keyframes ticketFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes shimmerSweep {
  0%   { left: -60%; }
  100% { left: 120%; }
}

@keyframes borderPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.2), 0 0 60px rgba(212, 175, 55, 0.05); }
  50%       { box-shadow: 0 0 45px rgba(212, 175, 55, 0.4), 0 0 90px rgba(212, 175, 55, 0.12); }
}

.ticket-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  position: relative;
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 480px;
  animation: ticketFloat 5s ease-in-out infinite, borderPulse 3s ease-in-out infinite;
  overflow: hidden;
}

/* Faixa de brilho deslizante */
.ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 232, 162, 0.07), transparent);
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Linha de destaque no topo */
.ticket-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.ticket-card > * {
  position: relative;
  z-index: 1;
}

.ticket-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-light);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.35), 0 30px 60px rgba(0, 0, 0, 0.9);
  animation-play-state: paused;
}

.ticket-card.featured {
  background: var(--gold-gradient-soft);
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-glow);
}

.ticket-card.featured:hover {
  box-shadow: var(--shadow-glow-strong), var(--shadow-premium);
}

.badge-featured {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000000;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
}

.ticket-header {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.ticket-name {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.ticket-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.ticket-price-box {
  margin-top: 20px;
}

.price-original {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--text-muted);
  display: block;
}

.price-now {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 4px 0;
}

.price-now span {
  font-size: 18px;
  font-weight: 500;
}

.price-installments {
  font-size: 14px;
  color: var(--gold-primary);
  font-weight: 600;
  display: block;
}

.ticket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.ticket-features li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.ticket-features li svg {
  flex-shrink: 0;
  color: var(--gold-primary);
}

.ticket-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.ticket-features li.disabled svg {
  color: var(--text-muted);
}

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5), var(--shadow-glow); }
  70%  { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0), var(--shadow-glow); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0), var(--shadow-glow); }
}

.btn-ticket {
  width: 100%;
  background: var(--gold-gradient);
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px 28px;
  box-shadow: var(--shadow-glow);
  animation: pulseRing 2.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.btn-ticket:hover {
  background: var(--gold-gradient);
  filter: brightness(1.15);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow-strong), 0 15px 35px rgba(0,0,0,0.6);
  animation-play-state: paused;
  color: #000000;
}

/* Formulário de Inscrição Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-alpha);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 550px;
  padding: 45px;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-header {
  margin-bottom: 30px;
}

.modal-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* Campos de Formuários */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error-msg {
  font-size: 11.5px;
  color: var(--color-error);
  display: none;
  margin-top: 4px;
}

/* -----------------------------------------
   FAQ SECTION (ACCORDION)
   ----------------------------------------- */
#faq {
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-alpha);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-gold-alpha-hover);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
}

.faq-question {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-right: 20px;
  line-height: 1.4;
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--gold-primary);
  transition: transform 0.3s ease;
}

/* Linha horizontal */
.faq-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

/* Linha vertical */
.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon::before {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 30px 24px 30px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* -----------------------------------------
   CTA FINAL BLOCK
   ----------------------------------------- */
#cta-final {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(21, 21, 21, 0.8) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gold-gradient);
}

.cta-final-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-final-box h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.25;
}

.cta-final-box p {
  font-size: 17px;
  max-width: 650px;
}

/* -----------------------------------------
   FOOTER
   ----------------------------------------- */
footer {
  background: #040404;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 60px 0 40px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-info {
  max-width: 350px;
}

.footer-info .logo-wrapper {
  margin-bottom: 16px;
}

.footer-info p {
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h5 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 16px;
  list-style: none;
}

.social-link {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.social-link:hover {
  color: var(--gold-primary);
}

/* -----------------------------------------
   RESPONSIVIDADE (MEDIA QUERIES)
   ----------------------------------------- */

@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }
  
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .solution-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .solution-image-right {
    aspect-ratio: 16/9;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .panel-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .panel-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 30px;
  }
  
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-logo-card {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .tickets-container {
    flex-direction: column;
    max-width: 500px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  header .container {
    height: 70px;
  }
  
  .nav-menu {
    display: none; /* Em um menu completo usaríamos JS para alternar, mas focaremos no CTA principal */
  }
  
  .menu-toggle {
    display: flex;
  }
  
  #hero {
    padding-top: 100px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 80%), var(--bg-primary);
  }
  
  #hero::before {
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.8) 0%, rgba(7, 7, 7, 0.95) 100%);
  }
  
  .hero-image-bg {
    width: 100%;
    height: 50%;
    top: 0;
    bottom: auto;
    opacity: 0.3;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 320px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .problems-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .audience-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .audience-card {
    padding: 35px 25px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    padding: 30px 20px;
    max-width: 90%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links-group {
    gap: 40px;
    width: 100%;
  }
  
  .footer-links {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
