/* ===================================
   SHAPE DE MARTE 2.0 — index.css
   =================================== */
:root {
  --color-deep-space: #08070c;
  --color-mars-coral: #E63946;
  --color-mars-peach: #F4A261;

  --gradient-mars: linear-gradient(135deg, #E63946 0%, #F4A261 100%);

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.3);

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  --font-main: "Outfit", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Compat (mantidos) */
  --bg-dark: var(--color-deep-space);
  --bg-card: #141414;
  --text-primary: #ffffff;
  --text-secondary: rgba(224, 224, 224, 0.9);
  --accent-red: var(--color-mars-coral);
  --accent-orange: var(--color-mars-peach);
}

/* =========================
   RESET & BASE
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-deep-space);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
  /* espaço pro banner do countdown (absolute) */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* =========================
   LAYOUT
   ========================= */
.section {
  padding: var(--spacing-2xl) var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   GLASS UI
   ========================= */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  padding: var(--spacing-md);
  transition: all 0.3s ease;
}

.glass-panel:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px 0 var(--glass-shadow);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}

.glass-glow {
  box-shadow:
    0 0 30px rgba(242, 114, 68, 0.3),
    0 0 60px rgba(242, 139, 80, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Box escura da oferta */
.glass-box {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* =========================
   BOTÕES
   ========================= */
.cta-button,
.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gradient-mars);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(242, 114, 68, 0.4);
  text-align: center;
}

.cta-button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 30px rgba(242, 114, 68, 0.6),
    0 0 40px rgba(242, 139, 80, 0.4);
}

.cta-button:active,
.btn:active {
  transform: translateY(0);
}

.center-btn {
  text-align: center;
}

/* =========================
   FUNDO TEXTURA
   ========================= */
.mars-texture {
  position: relative;
}

.mars-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/mars_texture_1764291914055.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}

/* =========================
   HERO
   ========================= */
.hero.section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.hero {
  position: relative;
  background-image: url("img/bg-shape-de-marte-02.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 5%;
}

.hero-text {
  max-width: 50%;
  text-align: left;
}

.launch-tag {
  background: var(--color-mars-coral);
  color: #1f1400;
  padding: 10px 25px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  line-height: 1;
  text-align: center;
  transform: rotate(-5deg);
  position: relative;
  border-radius: 6px;
}

.launch-tag::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #1f1400;
}

.launch-highlight {
  background: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px #fff, 0 0 20px #fff;
  font-size: 0.9rem;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 5px;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 2.2rem !important;
  line-height: 1.2;
  font-weight: 700;
}

.hero h2 {
  font-size: 1.3rem !important;
  line-height: 1.4;
}

.hero-problem {
  margin-bottom: 30px;
  margin-left: -10px;
  padding: 25px;
  font-style: italic;
}

.offer-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.obs-hero {
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: -10px;
  color: rgba(224, 224, 224, 0.8);
}

/* =========================
   COUNTDOWN
   ========================= */
.countdown-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-mars);
  color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

/* Mobile-first */
.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.countdown-intro {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 0 12px;
}

.countdown-timer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.time-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.time-label {
  margin-top: 4px;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.8px;
}

.time-separator {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  opacity: 0.8;
  align-self: flex-end;
}

/* Desktop */
@media (min-width: 768px) {
  .countdown-container {
    flex-direction: row;
    gap: 24px;
  }

  .time-number {
    font-size: 2.2rem;
  }

  .time-separator {
    font-size: 2rem;
  }
}

/* =========================
   CARROSSEL
   ========================= */
.carousel-section {
  padding-top: 10px;
  background: linear-gradient(180deg,
      var(--color-deep-space) 0%,
      rgba(3, 25, 38, 0.95) 100%);
}

.carousel-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: var(--spacing-md);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  align-items: center;
}

.comparison-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gradient-mars);
  width: 32px;
  border-radius: 6px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-mars);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.carousel-arrow.left {
  left: 12px;
}

.carousel-arrow.right {
  right: 12px;
}

.carousel-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.carousel-arrow.right::before {
  transform: rotate(45deg);
}

.carousel-arrow.left::before {
  transform: rotate(-135deg);
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
}

/* =========================
   DR SHAPE / GRIDS
   ========================= */
.dr-shape {
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

/* checklist */
.checklist {
  list-style: none;
  max-width: 700px;
  margin: var(--spacing-lg) auto;
}

.checklist li {
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--color-mars-coral);
  border-radius: var(--radius-sm);
  padding-left: var(--spacing-md);
  transition: all 0.3s ease;
}

.checklist li:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(8px);
}

.checklist li::before {
  content: "✓";
  color: var(--color-mars-coral);
  font-weight: bold;
  margin-right: var(--spacing-sm);
  font-size: 1.25rem;
}

.glass-card p {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-box {
  background: rgba(242, 114, 68, 0.08);
  border: 2px solid var(--color-mars-coral);
  border-radius: 18px;
  padding: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  box-shadow:
    0 0 25px rgba(242, 114, 68, 0.15),
    inset 0 0 20px rgba(242, 114, 68, 0.05);
}

.highlight-box h3 {
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 1.05rem;
}

.why-two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.why-left {
  text-align: left;
  order: 1;
}

.why-right {
  order: 2;
}

.why-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.why-two-column .glass-card,
.why-two-column .glass-card * {
  text-align: left !important;
}

.why-two-column .glass-card p {
  max-width: 100%;
  margin: 0 0 1.5rem 0;
}

.why-two-column .highlight-box {
  text-align: center !important;
}

.why-two-column .glass-card .cta-button {
  display: block;
  margin: 30px auto 0 auto;
  text-align: center;
  width: fit-content;
}

.why-image-wrapper {
  width: 100%;
  max-width: 480px;
  height: 660px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  display: flex;
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

/* =========================
   PILLARS / MODULES
   ========================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.pillar-card {
  text-align: left;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--color-mars-coral);
}

.pillar-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pillar-card h4 {
  margin: 15px 20px 10px 20px;
  color: var(--color-mars-peach);
  font-size: 1.2rem;
}

.pillar-card p {
  margin: 0 20px 25px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.module-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-mars);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.module-card:hover::before {
  transform: scaleX(1);
}

.module-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(242, 114, 68, 0.5);
  transform: translateY(-4px);
}

.module-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-mars-peach);
}

.module-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* =========================
   PRICING
   ========================= */
.pricing-box {
  max-width: 600px;
  margin: var(--spacing-xl) auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--color-mars-coral);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow:
    0 0 40px rgba(242, 114, 68, 0.3),
    0 0 80px rgba(242, 139, 80, 0.2);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 2rem;
  background: var(--gradient-mars);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-old {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.price-current {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-mars);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  line-height: 1;
}

.price-installments {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-lg);
}

/* =========================
   FAQ
   ========================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: var(--spacing-md);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-mars-peach);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 var(--spacing-md) var(--spacing-md);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* =========================
   TWO COLUMN
   ========================= */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* =========================
   BADGE / GRADIENT TEXT
   ========================= */
.badge {
  max-width: fit-content;
  display: inline-block;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  background: rgba(242, 114, 68, 0.2);
  border: 1px solid var(--color-mars-coral);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-mars-peach);
  margin-bottom: var(--spacing-sm);
}

.section.mars-texture .section-content>.badge,
.section.mars-texture .section-content>h1,
.section.mars-texture .section-content>h2 {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: var(--gradient-mars);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================
   RESPONSIVO (mobile)
   ========================= */
@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  /* HERO: texto desce pra revelar mais foto */
  .hero.section {
    padding-top: clamp(280px, 42vw, 520px) !important;
    padding-bottom: 3rem;
  }

  .hero {
    background-image: url("img/bg-shape-de-marte-02-mobile.webp");
    background-position: top center;
    background-size: 100% auto;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-sub {
    letter-spacing: 7px;
  }

  .hero h1 {
    font-size: 2rem !important;
  }

  .hero h2 {
    font-size: 1.25rem !important;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .pricing-box {
    padding: 3rem 1.5rem 2.5rem 1.5rem;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pricing-badge {
    width: max-content;
    max-width: 85%;
    font-size: 0.75rem;
    padding: 0.6rem 1.2rem;
    top: -18px;
    border-radius: 50px;
    line-height: 1.2;
    white-space: normal;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .pricing-box h3 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
  }

  .price-old {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    opacity: 0.6;
  }

  .price-current {
    font-size: 3.5rem;
    margin-bottom: 0.25rem;
    line-height: 1;
  }

  .price-installments {
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }

  .pricing-box .mb-lg {
    margin-bottom: 1.5rem;
  }

  .pricing-box .mt-md {
    margin-top: 1.5rem;
  }

  .pricing-box .mt-md p {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    opacity: 0.9;
  }

  .pricing-box>p {
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }

  .why-two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-right {
    order: 1;
    text-align: center;
  }

  .why-left {
    order: 2;
  }

  .why-image-wrapper {
    max-width: 95%;
    height: 420px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .pillar-img {
    height: 220px;
  }

  h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  p,
  .checklist li,
  .module-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .glass-panel,
  .glass-card,
  .highlight-box {
    padding: var(--spacing-md);
  }

  .glass-card p:not(.pricing-box p) {
    margin-bottom: 1rem;
  }



  .checklist li {
    padding-left: var(--spacing-sm);
  }

  .cta-button,
  .btn {
    padding: 14px 24px;
    font-size: 1.1rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.2;
  }

  .pricing-box .cta-button {
    font-size: 1.25rem;
    /* Slightly smaller than desktop but big enough for impact */
    padding: 1.25rem 2rem;
  }

  .faq-question {
    padding: 1rem;
    min-height: 48px;
  }

  p,
  h1,
  h2,
  h3,
  h4,
  span,
  li,
  div {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .comparison-label {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }
}

/* =========================
   UTILITÁRIOS
   ========================= */
.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

:root {
  /* 1) preto “puro” (quase igual ao atual) */
  --sec-bg-1: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);

  /* 2) preto com um glow coral bem sutil */
  --sec-bg-2:
    radial-gradient(1000px circle at 12% 10%, rgba(230, 57, 71, 0.185) 0%, transparent 55%),
    radial-gradient(900px circle at 88% 18%, rgba(244, 163, 97, 0.212) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8, 7, 12, 0.0) 0%, rgba(8, 7, 12, 0.0) 100%);

  /* 3) degradê discreto (continua “preto”, só muda o clima) */
  --sec-bg-3:
    linear-gradient(180deg, rgba(3, 25, 38, 0.35) 0%, rgba(42, 35, 70, 0.247) 55%),
    radial-gradient(900px circle at 75% 0%, rgba(244, 163, 97, 0.212) 0%, transparent 60%);
}

/* Aplica apenas nas <section> (não pega o <header class="hero section">) */
section.section:not(.carousel-section) {
  background-image: var(--sec-bg-1);
  background-color: transparent;
  /* deixa o deep-space do body como base */
}

/* Alterna: seção 2,4,6... */
section.section:not(.carousel-section):nth-of-type(even) {
  background-image: var(--sec-bg-2);
}

/* Alterna: seção 3,6,9... (vira o “degradê” da sequência) */
section.section:not(.carousel-section):nth-of-type(3n) {
  background-image: var(--sec-bg-3);
}