:root {
  --bg-dark:#0b0f14;
  --bg-dark-2:#121822;
  --primary:#00e676;
  --text-light:#f1f1f1;
}

body {
  background:var(--bg-dark);
  color:var(--text-light);
  padding-top:70px;
  font-family:system-ui,-apple-system,"Segoe UI",sans-serif;
}

.site-header {
  background:#fff;
  height:70px;
  display:flex;
  align-items:center;
  box-shadow:0 4px 20px rgba(0,0,0,.1);
}

.hero {
  min-height:calc(100vh - 70px);
  background:url("../images/hero.jpg") center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}

.hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.hero-content {
  position:relative;
  max-width:600px;
  margin-left:60px;
}

.section { padding:80px 20px; }
.section-alt { background:var(--bg-dark-2); }

.info-box {
  background:linear-gradient(180deg,#151c27,#0f141b);
  padding:40px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.05);
  transition:.35s;
}

.info-box:hover {
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,.6);
}

.plan-price {
  font-size:1.3rem;
  font-weight:700;
  margin:15px 0;
}

.section-intro {
  background:rgba(30,39,53,.9);
  padding:18px 22px;
  border-radius:12px;
  max-width:780px;
  margin:auto;
}

.badge {
  display:inline-block;
  padding:6px 14px;
  border-radius:20px;
  font-size:.75rem;
  font-weight:700;
  margin-bottom:10px;
}

.badge-vendedor {
  background:rgba(255,255,255,.1);
  color:#fff;
}

.badge-super {
  background:rgba(0,230,118,.2);
  color:#00e676;
}

/* ===== FAQ – ESTILO BASE (DESKTOP + MOBILE) ===== */

.accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 16px;
}

.accordion-button {
  background-color: #1e2735;
  color: #ffffff;
  font-weight: 600;
  padding: 20px 24px;
  border-radius: 12px;
}

.accordion-button:not(.collapsed) {
  background-color: #243048;
  color: #ffffff;
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  background-color: #182030;
  color: #f1f3f5;
  padding: 22px 26px;
  line-height: 1.65;
  border-radius: 0 0 12px 12px;
}

@media(max-width:768px){
  .hero-content{margin:0;text-align:center}
  .btn{padding:14px;font-size:1rem}
}

/* ===== FAQ MOBILE FIRST – CIERRE DEFINITIVO ===== */
@media (max-width: 768px) {

  /* Botón de la pregunta */
  .accordion-button {
    background-color: #1e2735 !important;
    color: #ffffff !important;
    font-size: 0.95rem;
    padding: 18px 20px;
    border-radius: 10px;
  }

  /* Botón cuando está abierto */
  .accordion-button:not(.collapsed) {
    background-color: #243048 !important;
    color: #ffffff !important;
    box-shadow: none;
  }

  /* Icono flecha */
  .accordion-button::after {
    filter: invert(1);
    transform: scale(1.1);
  }

  /* Cuerpo de la respuesta */
  .accordion-body {
    background-color: #182030 !important;
    color: #f1f3f5 !important;
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 20px 22px;
    border-radius: 0 0 10px 10px;
  }

  /* Separación entre items */
  .accordion-item {
    margin-bottom: 14px;
  }
}

/* ===== FIX DEFINITIVO CONTRASTE TEXTO FAQ ===== */

/* Texto del cuerpo del FAQ */
.accordion-body,
.accordion-body p {
  color: #f1f3f5 !important;
}

/* Asegurar que no herede color oscuro */
.accordion-collapse {
  color: #f1f3f5;
}
