/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

/* BASE */
body {
  background: #0f0f0f;
  color: #ffffff;
  line-height: 1.5;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  background: #0f0f0f;
  padding: 40px 20px 60px;
  text-align: center;
  overflow: hidden;
}

/* WRAPPER DA IMAGEM (IMPORTANTE) */
.hero-img-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 30px;
}

/* EFEITO DE LUZ (ATRÁS DA IMAGEM) */
.hero-img-wrapper::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle,
    rgba(193, 18, 31, 0.35),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* IMAGEM HERO (SEM CORTE) */
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 420px;
  object-fit: contain;       /* 🔥 NÃO CORTA */
  border-radius: 16px;
  transition: transform 0.4s ease;
}

/* HOVER PREMIUM (DESKTOP) */
@media (hover: hover) {
  .hero-img-wrapper:hover::after {
    opacity: 1;
  }

  .hero-img-wrapper:hover .hero-img {
    transform: scale(1.03) translateY(-6px);
  }
}

/* TEXTO HERO */
.hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 17px;
  color: #e0e0e0;
  margin-bottom: 22px;
}

/* BENEFÍCIOS */
.benefits {
  list-style: none;
  max-width: 420px;
  margin: 0 auto 26px;
  text-align: left;
}

.benefits li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #f1c40f;
}

/* CTA */
.btn-primary {
  display: inline-block;
  background: #c1121f;
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(193, 18, 31, 0.45);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(193, 18, 31, 0.65);
}

/* =========================
   BLOCOS
========================= */
.block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
  align-items: center;
}

.block-img {
  width: 100%;
  border-radius: 16px;
}

.block-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.block-text p {
  font-size: 16px;
  color: #d0d0d0;
}

/* FEATURES */
.features {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  text-align: center;
}

.feature img {
  width: 140px;
  margin: 0 auto 14px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.feature p {
  font-size: 14px;
  color: #cfcfcf;
}

/* FALLBACK */
.fallback {
  background: #141414;
  max-width: 1200px;
  margin: 80px auto 50px;
  padding: 45px 20px;
  border-radius: 22px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.card {
  background: #0f0f0f;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #1f1f1f;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.card p {
  font-size: 14px;
  color: #cfcfcf;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: #f1c40f;
  font-weight: 700;
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin: 40px 10px 25px;
}

/* MOBILE */
@media (max-width: 480px) {
  .hero-img {
    max-height: 260px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .btn-primary {
    width: 100%;
    padding: 18px 0;
  }
}

/* CSS FINAL — 29/01/2026 04:10 */
