/* ============================================
   O Legado Summit - Landing Page
   Bootstrap 5.3 + Custom Dark Theme
   Accent: #ff9800 (substituindo o lilás original)
   ============================================ */

/* ---- Variables ---- */
:root {
  --accent: #ff9800;
  --accent-hover: #e68a00;
  --accent-light: rgba(255, 152, 0, 0.12);
  --accent-glow: rgba(255, 152, 0, 0.25);
  --bg-body: #0a0a0a;
  --bg-card: #111113;
  --bg-card-hover: #18181b;
  --bg-elevated: #141416;
  --text-primary: #ffffff;
  --text-secondary: #d5d5d5;
  --text-muted: #d5d5d5;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Montserrat', -apple-system, sans-serif;
  --font-mono: 'Montserrat', 'SF Mono', monospace;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: #000;
}

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

a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--accent); }

.emdestaque {
  font-style: italic;
  color: #ff9800;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  section { padding: 60px 0; }
}

/* ---- Typography ---- */
/* .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ff9800;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
} */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px dashed rgba(242, 135, 5, 0.297);
  border-radius: 40px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-shrink: 0;
  background: transparent;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 4px 100px 0px;
}



/* .section-label::before { content: '['; }
.section-label::after { content: ']'; } */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 100;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title-v2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2rem) !important;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title .accent,
.section-title em,
.section-title-v2 em,
.section-title i {
  font-style: italic;
  color: var(--accent);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 540px;
}

.text-justify { text-align: justify !important; }

/* ---- Buttons ---- */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-accent .btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--accent);
  color: #ff9800;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: #000;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-outline-custom:hover {
  border-color: var(--accent-hover);
  color: #000;
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-outline-custom .btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 152, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
  transition: all 0.25s ease;
}

.btn-outline-custom:hover .btn-icon {
  background: rgba(0, 0, 0, 0.2);
  color: #000;
}

/* ---- Navbar ---- */
.navbar-custom {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  z-index: 1050;
  transition: all 0.3s ease;
}

.navbar-custom .navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar-custom .navbar-brand:hover { color: var(--text-primary); }

.navbar-brand-date {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.navbar-custom .nav-link {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--text-primary);
}

.navbar-custom .navbar-toggler {
  border: 1px solid var(--border-hover);
  padding: 4px 8px;
}

.navbar-custom .navbar-toggler-icon { filter: invert(1); }

.nav-btn-ticket {
  font-size: 0.85rem !important;
  padding: 8px 18px !important;
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-logo {
  padding-top: 60px;
}

.hero-logo img {
  height: 40px;
  width: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.5) 40%,
    rgba(10,10,10,0.9) 75%,
    var(--bg-body) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 160px);
}

.hero-row {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.hero-body {
  flex: 1;
}

.hero-image {
  flex: 1;
  align-self: flex-end;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: #000;
  font-weight: 400;
  background: #ffffff;
  border-radius: 55px;
  padding: 5px 20px;
}

.hero-meta-item strong {
  font-weight: 700;
  font-size: 1.05rem;
}

.hero-meta-sep {
  color: var(--accent);
  margin: 0 4px;
  font-weight: 700;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.hero-badge-highlight {
  color: var(--accent);
  font-weight: 600;
}

.hero-badge-divider {
  color: rgba(255,255,255,0.3);
  margin: 0 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-title strong {
  font-weight: 800;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-highlight {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #e68a00 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.hero-cta:hover {
  background: linear-gradient(135deg, #e68a00 0%, #cc7a00 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.hero-cta-text {
  white-space: nowrap;
}

.hero-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero-cta:hover .hero-cta-arrow {
  transform: translate(2px, -2px);
}

@media (max-width: 991px) {
  .hero-row {
    flex-direction: column;
    gap: 32px;
  }
  .hero-body {
    max-width: 100%;
  }
  .hero-image {
    max-width: 100%;
    order: -1;
  }
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .hero-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}

/* ---- Marquee / Ticker ---- */
.marquee-section {
  padding: 16px 0;
  overflow: hidden;
  background: var(--bg-body);
}

.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px dashed rgba(222, 222, 222, 0.12);
  border-radius: 40px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-shrink: 0;
  background: transparent;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 4px 100px 0px;
}

.marquee-star-svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  color: var(--accent);
  flex-shrink: 0;
  animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Big Numbers ---- */
.bignumbers-section {
  padding: 60px 0;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border);
}

.bignumbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.bignumbers-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  position: relative;
}

.bignumbers-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--border);
}

.bignumbers-icon {
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}

.bignumbers-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bignumbers-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bignumbers-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .bignumbers-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bignumbers-card:not(:last-child)::after {
    right: 50%;
    transform: translateX(50%);
    top: auto;
    bottom: 0;
    height: 1px;
    width: 60%;
  }
}

/* ---- About ---- */
.about-section {
  background: var(--bg-body);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.about-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 780px;
  text-align: justify !important;
}

.video-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  max-width: 780px;
  margin: 40px auto 0;
  aspect-ratio: 16/9;
  background: var(--bg-card);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: all 0.4s ease;
}

.video-thumb:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn span {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #000;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.video-thumb:hover .video-play-btn span {
  transform: scale(1.1);
}

/* ---- Features ---- */
.features-section {
  background: var(--bg-body);
  padding: 100px 0;
}

.feature-card {
  background: var(--bg-card) url('../img/background-entregaveis.webp') center/cover no-repeat;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 18px;
  line-height: 1;
}

.feature-card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- Speakers ---- */
.speakers-section {
  background: var(--bg-body) url('../img/background-grain-02.webp') center/cover no-repeat;
}

.speaker-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.speaker-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.speaker-img-wrap {
  aspect-ratio: 410/569;
  overflow: hidden;
  background: #1a1a1a;
}

.speaker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.speaker-card:hover .speaker-img-wrap img {
  transform: scale(1.05);
}

.speaker-info {
  padding: 16px 18px;
}

.speaker-info h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.speaker-info .role {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.speaker-socials {
  display: flex;
  gap: 4px;
}

.speaker-socials a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.speaker-socials a:hover { color: var(--text-primary); }

/* ---- Schedule ---- */
.schedule-section {
  background: var(--bg-body);
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.schedule-break {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 8px 0;
}

.schedule-break-accent {
  background: transparent;
  text-align: center;
  position: relative;
}

.schedule-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.schedule-row:last-child { border-bottom: none; }

.schedule-time {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent);
  padding-top: 2px;
}

.schedule-content h6 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.schedule-content p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 0;
  font-family: var(--font-mono);
}

.schedule-avatars {
  display: flex;
  gap: 4px;
}

.schedule-avatars img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid var(--bg-body);
}

@media (max-width: 768px) {
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--bg-body);
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}

.testimonials-wrapper {
  position: relative;
}

.testimonials-wrapper::before,
.testimonials-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-body), transparent);
}

.testimonials-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-body), transparent);
}

.testimonials-scroll {
  display: flex;
  gap: 20px;
  animation: testimonialScroll 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
  padding: 8px 0;
}

.testimonials-scroll:hover {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 340px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  white-space: normal;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  font-size: 0.75rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info strong {
  font-size: 0.82rem;
  display: block;
}

.testimonial-author-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ---- Pricing ---- */
.pricing-section {
  background: var(--bg-body) url('../img/background-grain-04.webp') center/cover no-repeat;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.pricing-card-top {
  padding: 32px 32px 24px;
  position: relative;
  overflow: hidden;
}

.pricing-semicircle {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000000;
}

.pricing-tier {
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  margin-top: 10px;
}

.pricing-tier-desc {
  color: #c2c2c2;
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
  max-width: 100%;
}

.pricing-divider {
  border-top: 1px dashed rgba(222,222,222,0.12);
  margin: 0;
}

.pricing-card-mid {
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.pricing-semicircle-small {
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-body);
}

.pricing-semicircle-small-left { left: -10px; }
.pricing-semicircle-small-right { right: -10px; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  margin-bottom: 8px;
  justify-content: center;
}

.pricing-installment {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
  text-align: right;
  align-self: center;
  margin-right: 4px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.pricing-comma {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
  align-self: flex-end;
  margin-bottom: 4px;
}

.pricing-cents {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
  align-self: flex-end;
  margin-bottom: 4px;
}

.pricing-fullprice {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-align: center;
}

.pricing-fullprice strong {
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-early {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-btn-wrap { margin: 20px 0; text-align: center; }

.pricing-spots {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-spots i { color: var(--accent); }

.pricing-card-bottom {
  padding: 24px 32px 32px;
  position: relative;
  overflow: hidden;
}

.pricing-includes-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  /* display: flex; */
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: #c2c2c2;
  font-size: 0.88rem;
}

.pricing-features li i { color: #ff9800; font-size: 1.5rem; }

/* ---- Sponsors ---- */
.sponsors-section {
  background: var(--bg-body);
}

.sponsor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sponsor-card:hover {
  border-color: var(--border-hover);
}

.sponsor-card img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sponsor-card:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ---- Hosts ---- */
.hosts-section {
  background: var(--bg-body);
  overflow: hidden;
}

.hosts-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hosts-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
}

.hosts-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: filter 0.4s;
}

.hosts-img-wrap:hover img {
  filter: grayscale(0%);
}

.hosts-signatures {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hosts-signature img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hosts-signature img:hover {
  opacity: 1;
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--bg-body);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--text-primary);
  transition: color 0.25s;
  user-select: none;
}

.faq-question:hover { color: var(--accent); }

.faq-toggle {
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ---- Countdown ---- */
.countdown-section {
  background: var(--bg-body);
  padding: 100px 0;
}

.countdown-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.countdown-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.countdown-box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 0;
}

.countdown-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .countdown-grid {
    gap: 10px;
  }
}

.countdown-item {
  text-align: center;
  min-width: 68px;
}

.countdown-number {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

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

/* ---- Gallery ---- */
.gallery-section {
  background: var(--bg-body);
  overflow: hidden;
  padding-bottom: 60px;
}

.gallery-perspective {
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.gallery-ticker-wrap {
  perspective: 1200px;
  overflow: hidden;
  padding: 100px 0;
}

.gallery-ticker {
  display: flex;
  gap: 20px;
  animation: galleryScroll 45s linear infinite;
  will-change: transform;
  transform: perspective(1200px) rotateY(20deg);
  transform-origin: center center;
}

.gallery-ticker:hover {
  animation-play-state: paused;
}

.gallery-ticker-item {
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg-card);
}

.gallery-ticker-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(40%);
  transition: filter 0.4s ease;
}

.gallery-ticker-item:hover img {
  filter: grayscale(0%);
}

.gallery-img-tall {
  width: 280px;
  height: 370px;
}

.gallery-img-wide {
  width: 280px;
  height: 210px;
}

.gallery-img-square {
  width: 280px;
  height: 280px;
}

@keyframes galleryScroll {
  0% { transform: perspective(1200px) rotateY(20deg) translateX(0); }
  100% { transform: perspective(1200px) rotateY(20deg) translateX(-33.333%); }
}

@media (max-width: 768px) {
  .gallery-img-tall,
  .gallery-img-wide,
  .gallery-img-square {
    width: 200px;
  }
  .gallery-img-tall { height: 265px; }
  .gallery-img-wide { height: 150px; }
  .gallery-img-square { height: 200px; }
}

/* ---- Footer ---- */
.footer-section {
  background: var(--bg-body);
  padding: 60px 0 0;
}

.footer-logo-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li { margin-bottom: 8px; }

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color 0.25s;
}

.footer-links-list a:hover { color: var(--text-primary); }

.footer-social-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.footer-socials {
  display: flex;
  gap: 6px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.82rem;
  transition: all 0.25s;
}

.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-brand-big {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.05em;
  text-align: center;
  padding: 20px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  overflow: hidden;
  user-select: none;
  margin-bottom: -20px;
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

b, strong { font-weight: 700; }

/* ---- Scroll offset ---- */
[id] { scroll-margin-top: 80px; }
