/* ====================== ROOT - CORES (DESKTOP) ====================== */
:root {
  /* Paleta principal – laranja, amarelo, preto */
  --bg: #050505;
  --bg-alt: #101010;
  --surface: #151515;

  --primary: #ffa71a; /* laranja principal */
  --primary-2: #ffa71a; /* variação laranja */

  --accent: #ffd93b; /* amarelo destaque */
  --accent-2: #ffec73;

  --text: #f5f5f7;
  --muted: #b3b3b8;

  --danger: #ff4a4a;
  --success: #41e27a;

  --radius: 18px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.6);
  --shadow-strong: 0 28px 90px rgba(0, 0, 0, 0.85);

  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);

  --gradient-primary: radial-gradient(
      circle at top left,
      rgba(255, 122, 26, 0.9),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 217, 59, 0.7),
      transparent 55%
    );

  --gradient-card: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );

  --transition-fast: 0.2s ease-out;
  --transition-mid: 0.3s ease-out;
  --transition-slow: 0.45s ease-out;
}

/* ====================== RESET / BASE ====================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    sans-serif;
  background: radial-gradient(
      900px 600px at 90% -10%,
      rgba(255, 122, 26, 0.14),
      transparent 55%
    ),
    radial-gradient(
      800px 500px at -10% 50%,
      rgba(255, 217, 59, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #050505 0%, #050505 35%, #000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

/* ====================== LAYOUT ====================== */

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

.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: 0.03em;
}

.section-header h2 span {
  color: var(--accent);
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

/* ====================== HEADER ====================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.6),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo img {
  height: 38px;
  border-radius: 30%;
  filter: drop-shadow(0 5px 18px rgba(0, 0, 0, 0.7));
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav-desktop a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-fast);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width var(--transition-mid);
  border-radius: 999px;
}

.nav-desktop a:hover {
  color: var(--text);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.btn-header {
  font-size: 13px;
  padding-inline: 18px;
}

/* Hamburguer só aparece no mobile (escondido aqui) */
.hamburger,
.nav-mobile {
  display: none;
}

/* ====================== BOTÕES ====================== */

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast),
    color var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 122, 26, 0.5);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 122, 26, 0.6);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-soft);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* Modificadores */
.btn-lg {
  font-size: 13px;
  padding: 14px 26px;
}

.full-width {
  width: 100%;
}

/* ====================== HERO ====================== */

.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

/* Imagem de fundo estilo Netflix: configure aqui */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* degrade escurecendo imagem */ linear-gradient(
      to top,
      rgba(0, 0, 0, 0.53),
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.9)
    ),
    url("../assets/img/banner.webp") center/cover no-repeat fixed;
  z-index: -2;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 10% 0,
      rgba(255, 122, 26, 0.28),
      transparent 55%
    ),
    radial-gradient(
      circle at 90% 100%,
      rgba(255, 217, 59, 0.2),
      transparent 55%
    );
  mix-blend-mode: screen;
  opacity: 0.7;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 42px;
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-copy h1 strong {
  font-size: 32px;
}

.hero-copy p {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.hero-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 6px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-selo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--muted);
}

.selo-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
  font-weight: 600;
}

.hero-card {
  justify-self: end;
}

.status-card {
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.03),
      transparent 70%
    ),
    var(--surface);
  border-radius: 20px;
  padding: 20px 20px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  width: 340px;
}

.status-card h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.status-sub {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.status-preco,
.status-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
}

.status-price .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.status-price .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.status-price .price-sub {
  display: block;
  text-align: right;
  font-size: 11px;
  color: var(--muted);
}

.status-garantia {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}

/* Revenda hero image */
.hero-card-revenda .revenda-img {
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* ====================== BENEFÍCIOS ====================== */

.section-beneficios {
  background: radial-gradient(
      circle at top center,
      rgba(255, 122, 26, 0.06),
      transparent 60%
    ),
    var(--bg);
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card-beneficio {
  background: var(--gradient-card);
  border-radius: var(--radius);
  padding: 20px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.card-beneficio h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card-beneficio p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ====================== CARROSSEIS ====================== */

.section-carrosseis {
  background: linear-gradient(180deg, #050505 0%, #000 100%);
}

.carousel-block {
  margin-bottom: 40px;
}

.carousel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.carousel-header h3 {
  margin: 0;
  font-size: 18px;
}

.carousel-header span {
  font-size: 12px;
  color: var(--muted);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 255, 255, 0.04),
      transparent 50%
    ),
    rgba(0, 0, 0, 0.9);
  padding-block: 10px;
}

.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.carousel::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.carousel-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-inline: 16px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.carousel img {
  height: 92px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ====================== PLANOS ====================== */

.section-planos {
  background: radial-gradient(
      circle at top center,
      rgba(255, 122, 26, 0.08),
      transparent 60%
    ),
    var(--bg-alt);
}

.grid-planos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.card-plano {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.9)
  );
  border-radius: 22px;
  padding: 20px 18px 18px;
  border: 1px solid var(--border-soft);
  position: relative;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.75);
}

.card-plano h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.card-plano p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
}

.plano-preco {
  margin-bottom: 12px;
}

.plano-preco .preco {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.plano-preco .preco-legenda {
  font-size: 12px;
  color: var(--muted);
}

.plano-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plano-lista li::before {
  content: "✓ ";
  color: var(--accent);
}

.card-plano.destaque {
  border-color: var(--accent);
  box-shadow: 0 26px 80px rgba(255, 217, 59, 0.16);
}

.tag-best {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #000;
  font-weight: 700;
}

.cta-revenda {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
}

.cta-revenda p {
  margin-bottom: 10px;
}

/* ====================== DEPOIMENTOS ====================== */

.section-depoimentos {
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 122, 26, 0.05),
      transparent 55%
    ),
    #050505;
}

.grid-depoimentos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card-depoimento {
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.05),
      transparent 55%
    ),
    rgba(0, 0, 0, 0.9);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  padding: 18px 16px;
  font-size: 13px;
  box-shadow: var(--shadow-soft);
}

.card-depoimento p {
  margin: 0 0 10px;
  color: var(--muted);
}

.card-depoimento .nome {
  font-size: 12px;
  color: var(--accent);
}

.depo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.depo-foto {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 12px rgba(255, 217, 59, 0.4);
}

.cidade {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.stars {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1px;
}

/* ====================== DEPOIMENTOS – NOVA VERSÃO ====================== */

.section-depoimentos {
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 122, 26, 0.05),
      transparent 55%
    ),
    #050505;
}

.depo-subtitulo {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--accent);
}

/* ---------- Card pequeno com foto ---------- */
.card-depoimento-foto {
  background: rgba(0, 0, 0, 0.92);
  border-radius: var(--radius);
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 220px;
  text-align: center;
}

.card-depoimento-foto .depo-foto {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  margin: 0 auto 10px;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.card-depoimento-foto p {
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted);
}

.card-depoimento-foto .nome {
  font-size: 12px;
  color: var(--accent);
}

/* ---------- Card completo com avaliação ---------- */
.card-depoimento-avaliacao {
  background: rgba(0, 0, 0, 0.92);
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 280px;
}

.depo-topo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-depoimento-avaliacao .depo-foto {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1px;
}

.card-depoimento-avaliacao p {
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Prints reais ---------- */
.print-depo {
  height: 260px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
}

/* =============== MOCKUP DE CELULAR – PRINTS REAIS =============== */

.section-depoimentos-prints {
  margin-top: 10px;
  text-align: center;
}

.phone-slider {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.phone-frame {
  width: 285px;
  height: 580px;
  background: #000;
  border-radius: 42px;
  padding: 14px;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

@media (max-width: 860px) {
  .phone-frame {
    width: 240px;
    height: 460px;
    border-radius: 32px;
    padding: 10px;
  }
}

/* Tela do celular */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

/* Carrossel interno */
.phone-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.phone-print {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====================== FAQ ====================== */

.section-faq {
  background: #050505;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.9);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* ====================== REVENDAS ====================== */

.page-revenda .hero {
  padding-top: 80px;
}

/* ====================== FOOTER ====================== */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 18px;
  background: #000;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.footer-mini {
  max-width: 320px;
  text-align: right;
}

/* ====================== ANIMAÇÕES DE ENTRADA (SCROLL) ====================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-24px);
}

.fade-right {
  transform: translateX(24px);
}

.fade-up {
  transform: translateY(18px);
}

.fade-left.is-visible,
.fade-right.is-visible,
.fade-up.is-visible {
  transform: translateX(0) translateY(0);
}

/* =============================================== */
/* =========== REVENDER IPTV PRO - DESKTOP ======= */
/* =============================================== */

.page-revenda .section {
  padding: 72px 0;
}

/* ESTATÍSTICAS */
.section-revenda-stats .section-header p {
  max-width: 620px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.04),
      transparent 55%
    ),
    var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--accent);
}

.stat-card span {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 14px;
  color: var(--muted);
}

/* TABELA DE CRÉDITOS */
.section-tabela-creditos .section-header p {
  max-width: 720px;
}

.tabela-creditos-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  margin-top: 36px;
  align-items: stretch;
}

.card-creditos {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  position: relative;
}

.card-creditos.destaque {
  background: radial-gradient(
      circle at top,
      rgba(255, 214, 107, 0.16),
      transparent 60%
    ),
    var(--surface);
  border-color: rgba(255, 214, 107, 0.45);
}

.card-creditos h3 {
  margin: 0 0 6px;
}

.card-creditos p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.tabela-wrapper {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tabela-creditos {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.tabela-creditos thead {
  background: rgba(255, 255, 255, 0.04);
}

.tabela-creditos th,
.tabela-creditos td {
  padding: 10px 12px;
  text-align: left;
}

.tabela-creditos tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.tabela-creditos tbody tr:nth-child(even) {
  background: transparent;
}

.tabela-creditos th {
  font-weight: 500;
  color: var(--muted);
}

.tabela-creditos td {
  color: var(--text);
}

.tabela-obs {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 16px;
}

.lista-mensal {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  font-size: 14px;
  color: var(--muted);
}

.lista-mensal li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.lista-mensal li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 7px;
}

/* SIMULADOR */
.section-simulador-revenda .section-header p {
  max-width: 640px;
  margin: 0 auto;
}

.simulador-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.card-simulador {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  position: relative;
}

.card-simulador.destaque {
  background: radial-gradient(
      circle at top,
      rgba(255, 45, 45, 0.22),
      transparent 62%
    ),
    var(--surface);
  border-color: rgba(255, 45, 45, 0.65);
}

.card-simulador h3 {
  margin: 0 0 10px;
}

.simulador-lista {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
}

.simulador-lista li {
  margin-bottom: 6px;
}

.simulador-legenda {
  font-size: 13px;
  color: var(--muted);
}

.simulador-cta {
  margin-top: 32px;
}

.simulador-cta p {
  margin-bottom: 14px;
  color: var(--muted);
}

/* COMO FUNCIONA */
.section-how-revenda-funciona .section-header p {
  max-width: 620px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.12), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.step-card h3,
.step-card p {
  position: relative;
}

.step-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* DIFERENCIAIS */
.section-diferenciais-revenda .section-header p {
  max-width: 640px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card h3 {
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.features-cta {
  margin-top: 30px;
}

/* FAQ */
.section-faq-revenda .section-header p {
  max-width: 620px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item h3 {
  margin: 0 0 6px;
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.faq-cta {
  margin-top: 28px;
}

.faq-cta p {
  margin-bottom: 12px;
  color: var(--muted);
}

/* TAG DESTQUE GENÉRICA (REUSO) */
.tag-best {
  position: absolute;
  top: 16px;
  right: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 214, 107, 0.16);
  border: 1px solid rgba(255, 214, 107, 0.85);
  color: var(--accent);
}
