:root {
  --bg-dark: #050608;
  --bg-section: #0c0f16;
  --bg-alt: #111624;
  --accent: #e63946;
  --accent-soft: rgba(230, 57, 70, 0.15);
  --text-main: #f5f5f5;
  --text-muted: #b0b4c2;
  --card-bg: #151a28;
  --border-subtle: #262b3a;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.5);
  --max-width: 1120px;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-main);
  background: radial-gradient(circle at top, #1b2139 0, #050608 55%);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* LOGO NO TOPO */

.logo-bar {
  width: 100%;
  padding: 1rem 0 0.4rem;

  /* EFEITO DE VIDRO (Glass) */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);

  /* Borda de vidro */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);

  /* Efeito LENTE (reflexo suave) */
  box-shadow:
    inset 0 1px 8px rgba(255, 255, 255, 0.12),
    0 6px 28px rgba(0, 0, 0, 0.55);

  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;

  background: radial-gradient(
    circle at top center,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.05) 28%,
    rgba(255, 255, 255, 0) 70%
  );

  pointer-events: none;
}
.diagram-wrapper {
  text-align: center;
  max-width: 820px;
}

.diagram-image-container {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.diagram-img {
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.logo-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-top {
  height: 100px;
  opacity: 0.97;

  /* leve brilho ao redor */
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
}


/* HERO */

.hero {
  padding: 2.5rem 0 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hero-left {
  max-width: 34rem;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.brand {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  margin: 0 0 0.75rem;
}

.subtitle {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.price-box {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.16), #121729);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(230, 57, 70, 0.35);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 245, 245, 0.12);
  font-size: 0.78rem;
  margin-bottom: 0.6rem;
}

.price-main {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

.price-main strong {
  font-size: 1.4rem;
}

.price-reserva {
  margin: 0 0 0.25rem;
  color: var(--text-muted);
}

.price-warning {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #f9d977;
}

/* CONTADOR */

.countdown-wrapper {
  margin-bottom: 1.4rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.countdown-label {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.countdown {
  display: inline-flex;
  gap: 0.75rem;
  padding: 0.4rem 0;
}

.cd-item {
  min-width: 3.4rem;
  text-align: center;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cd-item span {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}

.cd-item small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.countdown-note {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.countdown-ended {
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.35);
  font-size: 0.85rem;
  color: #ffb3b3;
}

/* LISTAS / CTA */

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  outline: none;
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    filter 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.btn-full {
  width: 100%;
  margin-top: 0.5rem;
}

.btn-large {
  padding: 1rem 2.4rem;
  font-size: 1.02rem;
}

.after-cta,
.urgency {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 32rem;
}

.urgency {
  color: #ffd166;
}

/* HERO IMAGE + CARD */

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.amp-img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
}

/* CARD LATERAL */

.hero-card {
  background: radial-gradient(circle at top left, #212842 0, #111624 60%);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.summary-list li {
  padding: 0.25rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
}

.summary-list li:last-child {
  border-bottom: none;
}

.card-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* SEÇÕES GERAIS */

.section {
  padding: 3rem 0;
  background: transparent;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.section h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  color: #95d5b2;
}

.post-lotes {
  margin-top: 2rem;
  max-width: 40rem;
}

.post-lotes .highlight {
  margin-top: 0.5rem;
  font-weight: 500;
  color: #f9d977;
}

/* SEÇÃO VISUAL */

.section-visual {
  background: #05070d;
}

.section-visual-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
  gap: 2rem;
  align-items: center;
}

.visual-text p {
  color: var(--text-muted);
  max-width: 28rem;
}

.visual-image {
  text-align: center;
}

.amp-img-large {
  width: 100%;
  max-width: 640px;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85);
}

/* BENEFÍCIOS */

.benefits {
  margin-top: 1rem;
}

.benefit-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.3rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.benefit-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
  color: #f8f9ff;
}

/* FAQ */

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #151a28;
  padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
}

.faq-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* CTA FINAL */

.section-cta {
  text-align: center;
  background: radial-gradient(circle at top, #1f2237 0, #050608 55%);
  padding-bottom: 3.5rem;
}

.section-cta h2 {
  margin-bottom: 0.75rem;
}

.section-cta p {
  max-width: 40rem;
  margin: 0 auto 0.75rem;
  color: var(--text-muted);
}

.section-cta .highlight {
  color: #f9d977;
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.4rem 0 2rem;
  background: #050608;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-small {
  margin-top: 0.3rem;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    max-width: 480px;
    margin: 0 auto;
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .countdown {
    flex-wrap: wrap;
  }

  .section-visual-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  .section {
    padding: 2.4rem 0;
  }

  .logo-top {
    height: 54px;
  }
}
