:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --text: #f0f0f0;
  --muted: #a0a0a0;
  --brand: #eebb4d;
  --brand-strong: #cfa035;
  --line: #222222;
  --card-bg: linear-gradient(145deg, #111111, #0a0a0a);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --border-radius: 12px;
}

[data-theme="light"] {
  --bg: #f8f9fa;
  --bg-soft: #ffffff;
  --text: #1a1a1a;
  --muted: #555555;
  --brand: #d4a017;
  --brand-strong: #b8860b;
  --line: #e0e0e0;
  --card-bg: linear-gradient(145deg, #ffffff, #f0f0f0);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999; /* Aumentado para garantir visibilidade */
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.theme-toggle:hover {
  transform: rotate(15deg);
  border-color: var(--brand);
  color: var(--brand);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.icon-sun {
  display: none;
}

[data-theme="light"] .icon-sun {
  display: block;
}

[data-theme="light"] .icon-moon {
  display: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, #1a1a1a 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#eebb4d 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.03;
  pointer-events: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.8) 50%,
    rgba(5, 5, 5, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  padding: 6rem 0;
  align-items: center;
}

.kicker {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  color: #fff;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title-line {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 20%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.year-chip {
  display: inline-block;
  border: 1px solid var(--brand);
  color: var(--brand);
  border-radius: 50px;
  padding: 0.2rem 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  width: fit-content;
  background: rgba(238, 187, 77, 0.1);
  box-shadow: 0 0 20px rgba(238, 187, 77, 0.1);
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--brand);
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: 5px;
  height: 12px;
  background: rgba(238, 187, 77, 0.2);
  z-index: -1;
  transform: skewX(-10deg);
}

.hero-warning {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
}

.hero-warning strong {
  color: #fff;
}

.hero-badges {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ccc;
  backdrop-filter: blur(4px);
}

.hero-phone {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand);
  font-weight: 700;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hero Container */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Hero Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: contrast(1.1) brightness(0.8);
  z-index: 0;
}

/* Imagem Leão 3 - Seção Info */
.info {
  position: relative;
  overflow: hidden;
  background: #060606;
}

.lion-bg-container-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}

.section-lion-img-left {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  mask-image: linear-gradient(to right, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 100%);
}

.info .container {
  position: relative;
  z-index: 1;
}

/* Ajuste Mobile */
@media (max-width: 920px) {
  .lion-bg-container-left {
    width: 100%;
    opacity: 0.08;
  }
  
  .section-lion-img-left {
    mask-image: linear-gradient(to top, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
    object-position: center top;
  }
}

/* Imagem Leão 2 - Seção Warning */
.warning {
  position: relative;
  overflow: hidden;
  background: #080808;
}

.lion-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.section-lion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  mask-image: linear-gradient(to left, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
}

.warning .container {
  position: relative;
  z-index: 1;
}

/* Ajuste Mobile */
@media (max-width: 920px) {
  .lion-bg-container {
    width: 100%;
    opacity: 0.1;
  }
  
  .section-lion-img {
    mask-image: linear-gradient(to top, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
    object-position: center bottom;
  }
}

/* Animações de Entrada (Fade In Up) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  animation: fadeInUp 1s ease-out forwards;
}

.hero-text .kicker {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-text h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-text .hero-subtitle {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-text .hero-warning {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-text .hero-badges,
.hero-text .hero-phone {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s forwards;
}

.lead-card {
  animation: fadeInUp 1s ease-out 0.5s forwards;
  /* Mantém estilos originais */
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  z-index: 10; /* Garante que fique acima do leão */
}

/* Ajuste para mobile: leão menor e menos intrusivo */
@media (max-width: 920px) {
  .lion-stalking {
    right: 50%;
    margin-right: -150px; /* Centraliza */
    width: 300px;
    height: 300px;
    bottom: -20px;
    z-index: 0;
  }
  
  .lead-card {
    margin-top: 2rem;
  }
}


.lead-card::before {
  content: none;
}

.lead-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.lead-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: -0.5rem;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(238, 187, 77, 0.1);
}

button,
.btn-whatsapp {
  background: var(--brand);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(238, 187, 77, 0.2);
}

button:hover,
.btn-whatsapp:hover {
  background: #ffcc5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 187, 77, 0.3);
}

#formFeedback {
  min-height: 1.2rem;
  color: var(--brand);
  font-size: 0.9rem;
  text-align: center;
}

.section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--muted);
  max-width: 700px;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(238, 187, 77, 0.3);
}

.card h3 {
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.guide {
  background: #080808;
}

.obligation-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.obligation-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.obligation-card h3 {
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.obligation-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.obligation-card strong {
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rules {
  background: #0a0a0a;
}

.timeline {
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 2rem;
}

.timeline h3 {
  color: var(--brand);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.timeline li {
  position: relative;
  padding-top: 1.5rem;
  border-top: 2px solid #333;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand);
}

.timeline span {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline li {
  color: var(--muted);
  font-size: 0.9rem;
}

.analytics {
  background: #050505;
}

.chart-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.chart-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
}

.chart-card h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-align: center;
}

.chart-card canvas {
  width: 100% !important;
  height: 300px !important;
}

.note {
  margin-top: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

.warning {
  background: #080808;
}

.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius);
  padding: 2rem;
}

.panel h3 {
  color: var(--brand);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.panel ul {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.cta-box {
  background: linear-gradient(120deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(238, 187, 77, 0.3);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  background: radial-gradient(circle, rgba(238, 187, 77, 0.1), transparent 70%);
  pointer-events: none;
}

.cta h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer {
  padding: 2rem 0;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid #111;
}

@media (max-width: 920px) {
  .theme-toggle {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
    text-align: center;
  }

  .hero h1 {
    align-items: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-phone {
    justify-content: center;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .timeline ul {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline li {
    padding-left: 1.5rem;
    padding-bottom: 2rem;
    border-top: none;
    border-left: 2px solid #333;
  }

  .timeline li::before {
    top: 0;
    left: -6px;
  }

  .timeline li:last-child {
    padding-bottom: 0;
  }
}
