/* ========== RESET E VARIÁVEIS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #d4af37;
  --accent-color: #FF0036;
  --text-color: #333333;
  --light-text: #666666;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
.header {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #FF0036);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn.large {
  padding: 18px 45px;
  font-size: 16px;
}

/* ========== SECTION 1: HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0 50px;
  background: radial-gradient(
      1200px 400px at 10% 20%,
      rgba(255, 155, 28, 0.06),
      transparent 10%
    ),
    radial-gradient(
      800px 300px at 95% 80%,
      rgba(45, 90, 61, 0.04),
      transparent 10%
    ),
    url("../img/bg.jpg");
  background-size: 1200px 400px, 800px 300px, cover;
  background-position: 10% 20%, 95% 80%, center;
  background-repeat: no-repeat;
  background-color: #070707;
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* overlay to control opacity of the background image without affecting content */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hero-logo img {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 40; /* remove default extra spacing */
}

.hero-badge span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 18px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-headline {
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
  margin: 10px 0 12px;
  color: #ffffff;
  letter-spacing: -1px;
}

.accent-text {
  color: #FF0036;
}

.hero-subheadline {
  max-width: 900px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 22px auto 32px;
}

.feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 14px;
}

.feature .check {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  color: #1bd76a;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(90deg, #ea0000, #c80000);
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(234, 0, 0, 0.18);
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-4px);
}

.btn-hero-secondary {
  background: linear-gradient(90deg, #d4af37, #b8941c);
  color: #1a1a1a;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  border: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.14);
}

.hero-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #FF0036;
}
.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 10px;
}

/* ========== SECTION 2: VÍDEO ========== */
.video-section {
  padding: 60px 0 40px;
  background: #070707;
  color: var(--white);
}

.video-badge span {
  display: inline-block;
  background: #d4af37;
  color: #1a1a1a;
  padding: 8px 18px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  margin-bottom: 14px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--white);
}

/* Specific tweaks for the large video showcase section */
.video-section .section-title {
  font-size: 38px;
  line-height: 1.02;
  margin-bottom: 10px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.video-section .section-subtitle {
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
}

.image-card {
  max-width: 380px;
  margin: 36px auto 10px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: transparent;
  border: none;
}

.image-card-inner {
  height: auto;
  background: transparent;
  border-radius: 18px;
  display: block;
  position: relative;
  box-shadow: none;
  padding: 0;
}

.vertical-image {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.vertical-image.full-image {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin: 18px auto 0;
}

/* ========== SECTION 3: PASSO A PASSO ========== */
.steps-section {
  padding: 100px 0 80px;
  background: radial-gradient(
      800px 300px at 5% 10%,
      rgba(255, 155, 28, 0.02),
      transparent
    ),
    #070707;
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
  padding: 0 20px;
}

.step-card {
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.85),
    rgba(20, 20, 20, 0.78)
  );
  padding: 44px 36px 36px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
  transition: all 0.28s ease;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75);
}

.step-badge {
  position: absolute;
  left: -18px;
  top: -18px;
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #ea0000, #c80000);
  color: #ffffff;
  font-weight: 800;
  display: grid;
  place-items: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(234, 0, 0, 0.25);
  z-index: 6;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
}

.step-card p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.btn-gradient-gold {
  background: linear-gradient(90deg, #ea0000, #c80000);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
}

.btn-gradient-green {
  background: linear-gradient(90deg, #d4af37, #b8941c);
  color: #1a1a1a;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
}

.btn-gradient-gold:hover,
.btn-gradient-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

/* ========== SECTION 6: CTA FINAL ========== */
.final-cta {
  padding: 100px 0 90px;
  background: radial-gradient(
      800px 300px at 10% 10%,
      rgba(255, 155, 28, 0.03),
      transparent
    ),
    linear-gradient(180deg, #050505, #0f0f0f);
  color: var(--white);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.final-cta h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.urgency-text {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
  opacity: 0.95;
}

.final-buttons {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.final-cta .btn {
  padding: 16px 40px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.final-cta .btn-primary.large {
  background: linear-gradient(90deg, #ea0000, #c80000);
  color: #ffffff;
  border: none;
}

.final-cta .btn-secondary.large {
  background: linear-gradient(90deg, #d4af37, #b8941c);
  color: #1a1a1a;
  border: none;
}

.final-cta .btn-primary.large:hover,
.final-cta .btn-secondary.large:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

/* ========== SECTION 7: AVISO LEGAL ========== */
.legal-notice {
  padding: 30px 0;
  background: #fafafa;
  border-top: 2px solid var(--accent-color);
}

.legal-notice p {
  text-align: center;
  font-size: 13px;
  color: var(--light-text);
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 30px 0;
  border-top: 2px solid var(--accent-color);
}

.footer-content {
  text-align: center;
}

.footer-content p {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
  .hero {
    min-height: 100%;
    padding: 40px 0 30px;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  .hero-headline {
    font-size: 32px;
    margin: 12px 0 8px;
  }

  .hero-subheadline {
    font-size: 16px;
    margin: 0 auto 16px;
  }

  .hero-ctas {
    gap: 12px;
    margin-bottom: 16px;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 6px;
  }

  .hero-placeholder {
    height: 300px;
    font-size: 48px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .mobile-section .container {
    grid-template-columns: 1fr;
  }

  .phone-placeholder {
    height: 350px;
    font-size: 60px;
  }

  .mobile-text h2 {
    font-size: 28px;
  }

  .nav {
    gap: 15px;
    font-size: 13px;
  }

  .logo h1 {
    font-size: 18px;
  }

  .final-buttons {
    flex-direction: column;
  }

  .final-buttons .btn {
    width: 100%;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .urgency-text {
    font-size: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .btn.large {
    padding: 15px 35px;
  }

  .hero-benefits li {
    font-size: 14px;
  }

  .nav {
    display: none;
  }

  .hero-placeholder {
    height: 250px;
    font-size: 36px;
  }

  .mobile-text h2 {
    font-size: 22px;
  }

  .mobile-text > p {
    font-size: 14px;
  }

  .mobile-list li {
    font-size: 14px;
  }

  .final-cta h2 {
    font-size: 24px;
  }

  .urgency-text {
    font-size: 14px;
  }

  .step-card {
    padding: 25px;
  }

  .benefit-card {
    padding: 25px;
  }
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.step-card,
.benefit-card {
  animation: fadeIn 0.6s ease-out;
}
