/* ==========================================
   IMPULSO EMPRESARIAL — Landing Page Styles
   ========================================== */

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

:root {
  /* Paleta do evento Impulso Empresarial */
  --navy:      #141c2f;   /* azul escuro — fundo principal */
  --blue:      #77cbf5;   /* azul claro  — destaque/CTA    */
  --offwhite:  #eff1f0;   /* quase branco — texto/claro    */
  --slate:     #a3b9c6;   /* azul acinzentado — secundário */

  /* Mapeamento semântico */
  --black:        #141c2f;
  --dark:         #141c2f;
  --dark-2:       #1a2440;
  --dark-3:       #1f2d4e;
  --mid:          #263558;
  --border:       rgba(163, 185, 198, 0.18);
  --text:         #eff1f0;
  --text-muted:   #a3b9c6;
  --text-light:   rgba(239, 241, 240, 0.85);
  --primary:      #77cbf5;
  --primary-dark: #57b8e8;
  --primary-light:#96d7f7;
  --gold:         #eff1f0;
  --gold-dark:    #d0d4d3;
  --white:        #eff1f0;
  --green:        #22c55e;
  --font-heading: 'Sora', sans-serif;
  --font-body:    'Sora', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.7);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === CONTAINER === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}

.btn-sm  { padding: 10px 20px; font-size: 13px; }
.btn-md  { padding: 14px 28px; font-size: 15px; }
.btn-lg  { padding: 18px 36px; font-size: 16px; }
.btn-xl  { padding: 20px 44px; font-size: 18px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(119,203,245,0.4);
}

.btn-gold {
  background: var(--offwhite);
  color: var(--navy);
  border: 2px solid var(--offwhite);
}
.btn-gold:hover {
  background: transparent;
  color: var(--offwhite);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(239,241,240,0.15);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-whatsapp:hover {
  background: #1eb85a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--primary);
  color: var(--navy);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 100;
  line-height: 1.6;
}
.announcement-bar p { margin: 0; color: var(--navy); }
.announcement-bar p:first-child { font-weight: 800; letter-spacing: 0.5px; }
.announcement-bar p:last-child { font-weight: 500; }
.announcement-bar a {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 700;
  margin-left: 4px;
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(20,28,47,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
}
.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--white); }

/* === HERO === */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 65% 0%, rgba(119,203,245,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(163,185,198,0.06) 0%, transparent 50%),
    var(--black);
  padding: 120px 0 80px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.event-badge {
  display: inline-block;
  background: rgba(119,203,245,0.12);
  border: 1px solid rgba(119,203,245,0.35);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.event-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin: 0 auto 36px;
  max-width: 700px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.event-info-icon { font-size: 24px; }
.event-info-item div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.event-info-item strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.event-info-item span { font-size: 13px; color: var(--text-muted); }

.event-info-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === COUNTDOWN === */
.countdown-wrapper {
  margin: 0 auto 36px;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.countdown-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.countdown, .cta-final-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  min-width: 80px;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.countdown-unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.countdown-sep {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  align-self: flex-start;
  margin-top: 10px;
}

/* === HERO CTA === */
.hero-cta-group {
  animation: fadeInUp 0.7s ease 0.5s both;
}
.hero-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
}

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-dark { background: var(--black); }
.section-mid { background: var(--dark); }
.section-accent {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(119,203,245,0.1);
  border: 1px solid rgba(119,203,245,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* === CARDS GRID === */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-bordered {
  background: var(--dark-2);
  border: 1px solid var(--border);
}
.card-icon { font-size: 40px; margin-bottom: 18px; }
.card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* === MODULES === */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.module-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s;
}
.module-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.module-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: rgba(119,203,245,0.2);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.module-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.module-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* === SPEAKERS === */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.speaker-card {
  text-align: center;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.speaker-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.speaker-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.speaker-placeholder {
  background: linear-gradient(135deg, var(--dark-3), var(--mid));
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.speaker-placeholder span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: 2px;
}

.speaker-info { padding: 20px 16px; }
.speaker-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.speaker-role {
  display: block;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.speaker-bio { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.section-cta { text-align: center; margin-top: 36px; }
.teaser-note {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--dark-2);
  border: 1px dashed var(--border);
  display: inline-block;
  padding: 10px 24px;
  border-radius: 100px;
}

/* === SCHEDULE === */
.schedule-wrapper {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
.schedule-wrapper::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.schedule-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}
.schedule-item + .schedule-item { border-top: 1px solid rgba(163,185,198,0.1); }

.schedule-time {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  min-width: 48px;
  text-align: right;
  padding-top: 3px;
}

.schedule-content {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  flex: 1;
  position: relative;
  margin-left: 20px;
}
.schedule-content::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--dark);
}

.schedule-content h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.schedule-content p { font-size: 13px; color: var(--text-muted); }

.schedule-break .schedule-content {
  background: rgba(163,185,198,0.07);
  border-color: rgba(163,185,198,0.25);
}
.schedule-break .schedule-content h4 { color: var(--slate); }

.schedule-end .schedule-content {
  background: rgba(119,203,245,0.07);
  border-color: rgba(119,203,245,0.25);
}
.schedule-end .schedule-content h4 { color: var(--primary); }

/* === TICKETS === */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto 40px;
}

.ticket-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ticket-featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(119,203,245,0.08), var(--dark-2));
  box-shadow: 0 0 40px rgba(119,203,245,0.15);
}

.ticket-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.ticket-badge-gold {
  background: var(--offwhite);
  color: var(--navy);
}

.ticket-header { margin-bottom: 24px; }
.ticket-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.ticket-desc { font-size: 14px; color: var(--text-muted); }

.ticket-price-block { margin-bottom: 28px; }
.ticket-original {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.ticket-price-row {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}
.ticket-currency {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-top: 12px;
}
.ticket-amount {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.ticket-period {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 18px;
}
.ticket-installment { font-size: 14px; color: var(--text-muted); }

.ticket-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-features li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 4px;
}

.ticket-urgency {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 14px;
}

.payment-methods {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
.payment-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}
.payment-icon {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* === GUARANTEE === */
.section-guarantee {
  padding: 60px 0;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(119,203,245,0.05);
  border: 1px solid rgba(119,203,245,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 740px;
  margin: 0 auto;
}
.guarantee-icon { font-size: 60px; flex-shrink: 0; }
.guarantee-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.guarantee-content p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s, border-color 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(119,203,245,0.35);
}

.testimonial-photo, .placeholder-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.placeholder-avatar {
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}
.placeholder-avatar span {
  font-size: 10px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: 1px;
}

.testimonial-card blockquote {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-card blockquote::before { content: '"'; }
.testimonial-card blockquote::after { content: '"'; }

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-author span { font-size: 12px; color: var(--text-muted); }
.testimonial-stars { font-size: 14px; }

/* === SOCIAL IMPACT === */
.section-social {
  padding: 60px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-box {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.social-icon { font-size: 60px; flex-shrink: 0; }
.social-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.social-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.social-content strong { color: var(--white); }

/* === FAQ === */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--primary); }

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.faq-item summary:hover { color: var(--primary); }

.faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 16px;
}

/* === CTA FINAL === */
.section-cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg,
    rgba(119,203,245,0.1) 0%,
    var(--black) 40%,
    rgba(163,185,198,0.06) 100%
  );
  border-top: 1px solid rgba(119,203,245,0.2);
}

.cta-final-content {
  text-align: center;
}
.cta-final-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-final-content > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta-final-timer {
  margin-bottom: 40px;
}

.cta-final-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-final-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand .logo-text { font-size: 16px; }
.footer-brand p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 240px;
}

.footer-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-info p { font-size: 14px; color: var(--text-muted); }

.footer-contact { text-align: right; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* === ANIMATIONS === */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* === CHECKLIST (Para quem é) === */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color 0.25s, transform 0.25s;
}
.checklist-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}
.checklist-item-full { grid-column: 1 / -1; }
.check-icon {
  font-size: 20px;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: var(--font-heading);
}
.check-icon-highlight {
  background: var(--offwhite);
  color: var(--navy);
}
.checklist-item p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

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

/* === HERO BADGE ROW === */
.hero-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}
.event-edition-badge {
  background: var(--primary);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
}
.event-theme-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-light);
  font-size: 13px;
  font-style: italic;
  padding: 6px 18px;
  border-radius: 100px;
}
.hero-year { color: var(--primary); }
.hero-subtitle-main {
  font-family: var(--font-heading);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.15s both;
}
.hero-text {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-light);
  max-width: 660px;
  margin: 0 auto 16px;
  animation: fadeInUp 0.7s ease 0.2s both;
  line-height: 1.7;
}
.hero-text strong { color: var(--white); }

/* === SPEAKERS (updated) === */
.speakers-confirmed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.speaker-confirmed {
  display: flex;
  flex-direction: column;
}
.speaker-photo-wrap { width: 100%; }
.speaker-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.speaker-info { padding: 20px 20px 24px; flex: 1; }

.speakers-soon-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.speaker-soon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 120px;
}
.speaker-soon-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--mid);
  border: 2px dashed var(--border);
  filter: grayscale(100%);
}
.speaker-soon-card p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === BRANDS (Realização) === */
.brands-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.brand-main-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.brand-main-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.brand-logo-placeholder {
  width: 100%;
  height: 80px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 2px;
}
.brand-axya {
  background: rgba(119,203,245,0.08);
  border: 1px solid rgba(119,203,245,0.25);
  color: var(--primary);
}
.brand-bufunffa {
  background: rgba(163,185,198,0.08);
  border: 1px solid rgba(163,185,198,0.25);
  color: var(--slate);
}
.brand-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.brand-info p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.brand-info strong { color: var(--white); }

.brands-together {
  background: rgba(119,203,245,0.05);
  border: 1px solid rgba(119,203,245,0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
}
.brands-together p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.brands-together strong { color: var(--white); }

/* === CLIENT LOGOS === */
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}
.client-logo-placeholder {
  height: 70px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 0.2s;
}
.client-logo-placeholder:hover { border-color: var(--text-muted); }

/* === SOCIAL IMPACT (updated) === */
.social-image-placeholder {
  margin-top: 20px;
  width: 100%;
  height: 200px;
  background: var(--mid);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-social .social-box { flex-direction: column; max-width: 760px; }

/* === SPONSORS === */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.sponsor-logo-placeholder {
  width: 100%;
  height: 90px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color 0.2s;
}
.sponsor-logo-placeholder:hover { border-color: var(--primary); }
.sponsor-card p { font-size: 12px; color: var(--text-muted); }

/* === SPONSORS MARQUEE === */
.sponsors-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.sponsors-marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: sponsors-scroll 16s linear infinite;
}
.sponsors-marquee-wrapper:hover .sponsors-marquee-track {
  animation-play-state: paused;
}
.sponsors-marquee-track .sponsor-card {
  flex-shrink: 0;
  width: 200px;
}
.sponsors-marquee-track .sponsor-logo-placeholder {
  width: 200px;
}
@keyframes sponsors-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === TICKETS COUNTDOWN === */
.tickets-countdown {
  text-align: center;
  margin-bottom: 40px;
}
.tickets-countdown .countdown {
  justify-content: center;
  margin-top: 12px;
}

/* === SVG ICONS === */
.event-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.sched-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.8;
}

.feat-check {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--primary);
  margin-right: 8px;
}
.feat-check-accent { color: var(--offwhite); }

.footer-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  color: var(--primary);
  vertical-align: middle;
}

.ticket-features li {
  display: flex;
  align-items: center;
}

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

/* === HAMBURGER === */
.header-actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === CAROUSEL DOTS === */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.4);
}

/* === JS SLIDER === */
.js-carousel-outer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.js-carousel-track {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}
.js-carousel-track > * {
  min-width: 100% !important;
  max-width: 100% !important;
  flex-shrink: 0 !important;
  box-sizing: border-box;
}
.js-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 28, 47, 0.92);
  border: 1px solid var(--border);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  transition: background 0.2s;
}
.js-carousel-btn:hover { background: rgba(119, 203, 245, 0.18); }
.js-carousel-btn:disabled { opacity: 0.18; pointer-events: none; }
.js-carousel-btn-prev { left: 6px; }
.js-carousel-btn-next { right: 6px; }

/* === RESPONSIVE === */

@media (max-width: 900px) {
  .cards-grid-3 { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tickets-grid { grid-template-columns: 1fr; max-width: 460px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-contact { text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .speakers-confirmed-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-main-grid { grid-template-columns: 1fr; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 18px; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  /* Announcement bar */
  .announcement-bar { font-size: 11px; padding: 8px 16px; }

  /* Header */
  .header-inner { height: 60px; }
  .hamburger { display: flex; }

  /* Nav — fullscreen overlay no mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14, 21, 38, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 150;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { font-size: 22px; letter-spacing: 2px; color: var(--offwhite); }
  .nav-links a:hover { color: var(--primary); }

  /* Hero */
  .hero { padding: 90px 0 64px; min-height: auto; }
  .event-theme-badge { display: none; }
  .hero-badge-row { margin-bottom: 18px; }
  .event-info-row { flex-direction: column; gap: 14px; padding: 20px 72px; align-items: stretch; }
  .event-info-divider { display: none; }
  .event-info-item { justify-content: flex-start; }

  /* Countdown */
  .countdown { gap: 6px; }
  .countdown-item { min-width: 60px; padding: 10px 12px; }
  .countdown-num { font-size: 26px; }
  .countdown-sep { font-size: 22px; margin-top: 8px; }

  /* Botões CTA */
  .btn-lg { font-size: 14px; padding: 16px 22px; }
  .btn-xl { font-size: 15px; padding: 18px 26px; }

  /* === Para quem é: coluna única no mobile === */
  #checklist-carousel {
    grid-template-columns: 1fr;
  }
  #checklist-carousel .checklist-item-full {
    grid-column: 1;
  }

  /* === CARROSSEL: Palestrantes === */
  #speakers-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 4px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: unset;
    margin-bottom: 8px;
  }
  #speakers-carousel::-webkit-scrollbar { display: none; }
  #speakers-carousel .speaker-card {
    scroll-snap-align: start;
    min-width: min(320px, 84vw);
    max-width: min(320px, 84vw);
    flex-shrink: 0;
  }
  #speakers-dots { display: flex; }

  /* Cronograma — simplificar timeline no mobile */
  .schedule-wrapper::before { display: none; }
  .schedule-item { flex-direction: column; gap: 6px; padding: 16px 0; }
  .schedule-time { text-align: left; min-width: unset; font-size: 12px; padding-top: 0; }
  .schedule-content { margin-left: 0; padding: 14px 16px; }
  .schedule-content::before { display: none; }
  .schedule-content h4 { font-size: 14px; }

  /* Marcas realização */
  .brands-main-grid { grid-template-columns: 1fr; }
  .brand-main-card { padding: 24px; }

  /* Patrocinadores */
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 100%; }

  /* Logos parceiros */
  .client-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* Social */
  .social-box { flex-direction: column; text-align: center; padding: 24px 20px; }

  /* Ingresso */
  .ticket-card { padding: 28px 22px; }

  /* Footer */
  .footer-inner { gap: 28px; }

  /* Garantia / outros boxes */
  .guarantee-box { flex-direction: column; text-align: center; }

  /* CTA final */
  .cta-final-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Sections */
  .section { padding: 56px 0; }
  .hero { padding: 80px 0 56px; }

  /* Tipografia */
  .hero-title { font-size: clamp(26px, 8vw, 36px); }
  .section-title { font-size: clamp(22px, 6vw, 30px); }
  .section-subtitle { font-size: 15px; }

  /* Countdown */
  .countdown { gap: 4px; }
  .countdown-item { min-width: 52px; padding: 8px 10px; }
  .countdown-num { font-size: 22px; }
  .countdown-sep { font-size: 18px; margin-top: 6px; }

  /* Botões */
  .btn-lg { font-size: 13px; padding: 15px 18px; }
  .btn-xl { font-size: 14px; padding: 16px 20px; }

  /* Ingressos */
  .ticket-card { padding: 24px 18px; }
  .ticket-amount { font-size: 52px; }
  .tickets-grid { max-width: 100%; }

  /* Palestrantes em breve */
  .speakers-soon-row { gap: 10px; }
  .speaker-soon-card { width: 80px; }
  .speaker-soon-photo { width: 68px; height: 68px; }

  /* Patrocinadores */
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sponsor-logo-placeholder { height: 70px; font-size: 13px; }

  /* Logos parceiros */
  .client-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .client-logo-placeholder { height: 56px; font-size: 10px; }

  /* Pagamento */
  .payment-icons { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .payment-icon { font-size: 12px; padding: 6px 12px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-inner { gap: 24px; padding-bottom: 36px; }
  .footer-brand .logo-text { font-size: 14px; }

  /* Ação social */
  .social-box { padding: 20px 16px; }
  .social-icon svg { width: 40px !important; height: 40px !important; }

  /* FAQ */
  .faq-item summary { font-size: 14px; padding: 16px 18px; }
  .faq-answer { padding: 0 18px 16px; }

  /* CTA final */
  .cta-final-content h2 { font-size: clamp(22px, 6vw, 32px); }
  .cta-final-content > p { font-size: 16px; }
  .section-cta-final { padding: 80px 0; }

  /* Marcas realização */
  .brand-main-card { padding: 20px; }
  .brand-logo-placeholder { font-size: 22px; height: 66px; }

  /* Seção header */
  .section-header { margin-bottom: 28px; }
}
