:root {
  --bg-main: #0b0b0f;
  --bg-soft: #13131a;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-card-strong: rgba(255, 255, 255, 0.1);
  --text-main: #f5f5f7;
  --text-soft: #c9cad3;
  --text-muted: #9b9cac;
  --primary: #e30613;
  --primary-dark: #a90010;
  --secondary: #ff4f5e;
  --gold: #ffce57;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.24);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --transition: all 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(227, 6, 19, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 206, 87, 0.08), transparent 25%),
    linear-gradient(180deg, #09090d 0%, #0b0b0f 35%, #111118 100%);
  color: var(--text-main);
  overflow-x: hidden;
}

/* NAVBAR */
.custom-navbar {
  background: rgba(5, 5, 8, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.navbar-brand {
  letter-spacing: 0.2px;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #ff3d4b);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(227, 6, 19, 0.4);
}

.nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 500;
  position: relative;
  margin: 0 0.3rem;
}

.nav-link:hover {
  color: #fff !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: var(--transition);
}

.nav-link:hover::after {
  width: calc(100% - 1rem);
}

.nav-cta {
  box-shadow: 0 12px 30px rgba(227, 6, 19, 0.25);
}

/* HERO */
.hero-section {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(120deg, rgba(7, 7, 10, 0.88), rgba(7, 7, 10, 0.5)),
    url("https://framerusercontent.com/images/vlpJyEAzgkGfjdbCpiLxy74Q.jpg?height=720&width=935")
      center/cover no-repeat;
  padding: 7rem 0 5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(227, 6, 19, 0.35), transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(255, 206, 87, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65));
}

.eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  line-height: 1.02;
  max-width: 900px;
}

.gradient-text {
  background: linear-gradient(90deg, #ffffff, #ffb8bf, #ffd86e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--text-soft);
  max-width: 760px;
}

.hero-mini-stats .mini-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  height: 100%;
}

.mini-stat h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.mini-stat p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.floating-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.floating-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(255, 206, 87, 0.3), transparent 70%);
  pointer-events: none;
}

.floating-card-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 rgba(255, 206, 87, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 206, 87, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 206, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 206, 87, 0); }
}

.floating-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: var(--text-soft);
}

.floating-list i {
  color: var(--gold);
  margin-top: 0.1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.7rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  opacity: 0.85;
  animation: bounce 1.8s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -4px); }
}

/* SECTIONS */
.section-padding {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.35), rgba(13, 13, 19, 0.92));
}

.section-gradient {
  background:
    radial-gradient(circle at top left, rgba(227, 6, 19, 0.13), transparent 30%),
    linear-gradient(180deg, #0f1017 0%, #14151f 100%);
}

.section-premium {
  background:
    radial-gradient(circle at center right, rgba(255, 206, 87, 0.08), transparent 25%),
    linear-gradient(180deg, #111118 0%, #0f0f15 100%);
}

.section-footer-cta {
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.85), rgba(120, 0, 10, 0.95)),
    url("https://www.portaleventos.com.br/img3.php?id_imagem=108931") center/cover no-repeat;
  background-blend-mode: overlay;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border: 1px solid rgba(255, 206, 87, 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.08;
}

.section-title.centered,
.section-text.centered {
  text-align: center;
}

.section-text {
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.8;
}

.narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 206, 87, 0.24);
  background: rgba(255, 255, 255, 0.085);
}

.info-card i {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
}

.info-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* IMAGE STACK */
.image-stack {
  position: relative;
  min-height: 540px;
}

.image-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image {
  width: 78%;
  height: 430px;
}

.secondary-image {
  position: absolute;
  right: 0;
  bottom: 35px;
  width: 52%;
  height: 250px;
}

.tilt-card {
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
  transition: var(--transition);
}

.tilt-card:hover {
  transform: perspective(1100px) rotateY(0deg) rotateX(0deg) translateY(-8px);
}

.image-badge {
  position: absolute;
  left: 26px;
  bottom: -18px;
  padding: 1rem 1.2rem;
  max-width: 270px;
}

.badge-label {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

/* FEATURE CARDS */
.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0.9;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
}

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.18), rgba(255, 206, 87, 0.12));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.feature-card p {
  color: var(--text-soft);
  margin-bottom: 0;
  line-height: 1.75;
}

/* TIMELINE */
.timeline-wrapper {
  margin-top: 2rem;
}

.timeline-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.timeline-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-step span {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff4b59);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(227, 6, 19, 0.28);
}

.timeline-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline-step p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* ACCORDION */
.custom-accordion .accordion-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 20px !important;
  overflow: hidden;
  margin-bottom: 1rem;
}

.custom-accordion .accordion-button {
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-weight: 700;
  box-shadow: none;
  padding: 1.25rem 1.4rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(227,6,19,0.18), rgba(255,206,87,0.08));
  color: #fff;
}

.custom-accordion .accordion-button::after {
  filter: invert(1);
}

.custom-accordion .accordion-body {
  color: var(--text-soft);
  line-height: 1.8;
  padding: 1.2rem 1.4rem 1.5rem;
}

/* STICKY */
.sticky-analysis {
  position: sticky;
  top: 120px;
}

/* INSIGHTS */
.insight-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.insight-box:hover {
  transform: translateY(-7px);
}

.insight-number {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.insight-box h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.insight-box p {
  color: var(--text-soft);
  margin-bottom: 0;
  line-height: 1.75;
}

.chart-like-card,
.quote-card,
.final-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.trend-item {
  margin-bottom: 1.35rem;
}

.trend-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 600;
}

.custom-progress {
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.custom-progress .progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.w-95 { width: 95%; }
.w-92 { width: 92%; }
.w-90 { width: 90%; }
.w-88 { width: 88%; }

.quote-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.quote-card blockquote {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-author {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* GALERIA */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  height: 320px;
}

.gallery-tall {
  height: 420px;
}

.gallery-wide {
  height: 440px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.72));
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

/* CTA FINAL */
.final-card {
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}

/* FOOTER */
.site-footer {
  padding: 1.4rem 0;
  background: #07070a;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* RESPONSIVO */
@media (max-width: 1199px) {
  .timeline-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 8rem;
    min-height: auto;
  }

  .image-stack {
    min-height: auto;
  }

  .main-image,
  .secondary-image {
    position: relative;
    width: 100%;
    height: auto;
  }

  .secondary-image {
    right: auto;
    bottom: auto;
    margin-top: 1rem;
  }

  .image-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 1rem;
    max-width: 100%;
  }

  .sticky-analysis {
    position: relative;
    top: auto;
  }

  .timeline-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-tall,
  .gallery-wide {
    height: 280px;
  }

  .floating-card,
  .chart-like-card,
  .quote-card,
  .final-card {
    padding: 1.4rem;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-text,
  .section-text {
    font-size: 0.98rem;
  }

  .scroll-indicator {
    display: none;
  }
}