/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --color-primario:    #000000;
  --color-secundario:  #FF8200;
  --color-fondo:       #0a0a0a;
  --color-texto:       #ffffff;
  --color-texto-muted: #888888;
  --fuente-base:       'Poppins', sans-serif;
  --max-width:         1200px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fuente-base);
  background-color: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 1.5rem;
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 36px;
  width: auto;
}

/* Navegación */
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-texto-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.header__nav-link:hover {
  color: var(--color-texto);
}

/* Hamburguesa */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-texto);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Estado abierto del hamburger */
.header__hamburger[aria-expanded="true"] .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger[aria-expanded="true"] .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded="true"] .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* padding-top compensa el header fijo (~72px) */
  padding: 8rem 1.5rem 5rem;
}

/* Glow naranja principal — lado izquierdo donde está el texto */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 130, 0, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Glow secundario sutil — esquina inferior derecha */
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: 5%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255, 130, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* Overline */
.hero__overline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-secundario);
  margin-bottom: 1.5rem;
}

.hero__overline::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background-color: var(--color-secundario);
  flex-shrink: 0;
}

/* Título principal */
.hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

/* Descripción */
.hero__description {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-texto-muted);
  line-height: 1.85;
  max-width: 500px;
}

/* Acento degradado en el título */
.hero__title-accent {
  background: linear-gradient(90deg, #FF8200, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA */
.hero__cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.875rem 2rem;
  background-color: var(--color-secundario);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease;
}

.hero__cta:hover {
  opacity: 0.88;
}

/* Imagen */
.hero__media {
  position: relative;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -webkit-mask-image: radial-gradient(ellipse 88% 88% at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 88% 88% at center, black 30%, transparent 80%);
}

/* Badge flotante */
.hero__badge {
  position: absolute;
  bottom: 8%;
  left: -5%;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 130, 0, 0.4);
  border-radius: 14px;
  padding: 1rem 1.5rem;
}

.hero__badge-nombre {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-texto);
  line-height: 1.3;
}

.hero__badge-rol {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-secundario);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ============================================================
   CLIENTES
   ============================================================ */
.clientes {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.clientes__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.clientes__social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}

.clientes__fotos {
  height: 56px;
  width: auto;
}

.clientes__texto {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-texto);
  line-height: 1.6;
  max-width: 520px;
}

.clientes__numero {
  color: var(--color-secundario);
  font-weight: 800;
}

/* Carrusel */
.clientes__carrusel {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Fade en los bordes via pseudoelementos — no interfiere con GPU compositing */
.clientes__carrusel-pista {
  overflow: hidden;
  position: relative;
}

.clientes__carrusel-pista::before,
.clientes__carrusel-pista::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8%;
  z-index: 2;
  pointer-events: none;
}

.clientes__carrusel-pista::before {
  left: 0;
  background: linear-gradient(to right, var(--color-fondo), transparent);
}

.clientes__carrusel-pista::after {
  right: 0;
  background: linear-gradient(to left, var(--color-fondo), transparent);
}

.clientes__carrusel-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  will-change: transform;
}

.clientes__logo {
  height: 80px;
  width: auto;
  flex-shrink: 0;
  background: #1e1e1e;
  border-radius: 10px;
  padding: 12px 22px;
  object-fit: contain;
}

/* ============================================================
   SERVICIO
   ============================================================ */
.servicio {
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.servicio__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Encabezado centrado */
.servicio__encabezado {
  text-align: center;
  margin-bottom: 4rem;
}

.servicio__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-secundario);
  margin-bottom: 1.25rem;
}

.servicio__overline::before,
.servicio__overline::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-secundario);
  flex-shrink: 0;
}

.servicio__titulo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* Grid */
.servicio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card */
.servicio__card {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.servicio__card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 130, 0, 0.3);
}

.servicio__icono {
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 130, 0, 0.1);
  color: var(--color-secundario);
  flex-shrink: 0;
}

.servicio__icono svg {
  width: 24px;
  height: 24px;
}

.servicio__numero {
  grid-column: 2;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-secundario);
  margin-bottom: 0.4rem;
}

.servicio__card-titulo {
  grid-column: 2;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--color-texto);
}

.servicio__card-descripcion {
  grid-column: 2;
  font-size: 0.875rem;
  color: var(--color-texto-muted);
  line-height: 1.8;
}

/* ============================================================
   SERVICIOS Y PRECIOS
   ============================================================ */
.servicios-precios {
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.servicios-precios__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Encabezado */
.servicios-precios__encabezado {
  text-align: center;
  margin-bottom: 4rem;
}

.servicios-precios__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secundario);
  margin-bottom: 1rem;
}

.servicios-precios__overline::before,
.servicios-precios__overline::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-secundario);
  flex-shrink: 0;
}

.servicios-precios__titulo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* Grid */
.servicios-precios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Card base */
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  gap: 1.75rem;
}

/* Card estrella */
.plan--estrella {
  background: rgba(255, 130, 0, 0.06);
  border-color: var(--color-secundario);
  padding-top: 3rem;
}

/* Badge */
.plan__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secundario);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

/* Header del plan */
.plan__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan__nombre {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-texto);
  line-height: 1.3;
}

.plan__tipo {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secundario);
  background: rgba(255, 130, 0, 0.1);
  border: 1px solid rgba(255, 130, 0, 0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
}

.plan__recomendacion {
  font-size: 0.8rem;
  color: var(--color-texto-muted);
  line-height: 1.7;
}

/* Precio */
.plan__precio {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.plan__desde {
  font-size: 0.75rem;
  color: var(--color-texto-muted);
}

.plan__monto {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-texto);
  letter-spacing: -0.03em;
}

.plan--estrella .plan__monto {
  color: var(--color-secundario);
}

.plan__detalle {
  font-size: 0.75rem;
  color: var(--color-texto-muted);
}

/* Lista de incluidos */
.plan__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.plan__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-texto-muted);
  line-height: 1.5;
}

.plan__item::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 1px;
  background-color: var(--color-secundario);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 6 5 9 10 3'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* CTA */
.plan__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  background: #25D366;
  text-decoration: none;
  transition: background 0.2s ease;
}

.plan__cta:hover {
  background: #1ebe5d;
}

.plan__cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.plan__cta--estrella {
  background: #25D366;
}

.plan__cta--estrella:hover {
  background: #1ebe5d;
}

/* ============================================================
   BENEFICIOS
   ============================================================ */
.beneficios {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Bloque individual */
.beneficios__bloque {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  padding: 6rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.beneficios__bloque--invertido {
  direction: rtl;
}

.beneficios__bloque--invertido > * {
  direction: ltr;
}

/* Separador entre bloques */
.beneficios__bloque + .beneficios__bloque {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Imagen */
.beneficios__imagen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -webkit-mask-image: radial-gradient(ellipse 88% 88% at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 88% 88% at center, black 30%, transparent 80%);
}

/* Contenido */
.beneficios__titulo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.75rem;
}

/* Callout ¿Sabías que? */
.beneficios__callout {
  background: rgba(255, 130, 0, 0.06);
  border-left: 3px solid var(--color-secundario);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.beneficios__callout-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secundario);
}

.beneficios__callout p {
  font-size: 0.9rem;
  color: var(--color-texto-muted);
  line-height: 1.7;
}

/* Dolor */
.beneficios__dolor {
  font-size: 0.95rem;
  color: var(--color-texto-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Solución */
.beneficios__solucion {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-texto);
  line-height: 1.75;
}

/* ============================================================
   EXPERIENCIA
   ============================================================ */
.experiencia {
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.experiencia__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Imagen */
.experiencia__media {
  position: relative;
}

.experiencia__imagen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -webkit-mask-image: radial-gradient(ellipse 88% 88% at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 88% 88% at center, black 30%, transparent 80%);
}

/* Contador flotante */
.experiencia__counter {
  position: absolute;
  bottom: 8%;
  right: -5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 130, 0, 0.4);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.experiencia__counter-numero {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-secundario);
  letter-spacing: -0.03em;
  line-height: 1;
}

.experiencia__counter-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-texto-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
}

/* Contenido */
.experiencia__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secundario);
  margin-bottom: 1rem;
}

.experiencia__overline::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background-color: var(--color-secundario);
  flex-shrink: 0;
}

.experiencia__titulo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

/* Texto */
.experiencia__texto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experiencia__parrafo {
  font-size: 0.95rem;
  color: var(--color-texto-muted);
  line-height: 1.8;
}

.experiencia__parrafo--destacado {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-texto);
  font-style: italic;
}

.experiencia__parrafo--enfasis {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-secundario);
}

.experiencia__parrafo strong {
  color: var(--color-texto);
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq__container {
  max-width: 780px;
  margin: 0 auto;
}

.faq__encabezado {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secundario);
  margin-bottom: 1rem;
}

.faq__overline::before,
.faq__overline::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-secundario);
  flex-shrink: 0;
}

.faq__titulo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.faq__lista {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Item */
.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Botón pregunta */
.faq__pregunta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--fuente-base);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-texto);
  transition: color 0.2s ease;
}

.faq__pregunta:hover {
  color: var(--color-secundario);
}

.faq__pregunta[aria-expanded="true"] {
  color: var(--color-secundario);
}

/* Icono + / × */
.faq__icono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: border-color 0.2s ease, transform 0.3s ease;
}

.faq__icono::before,
.faq__icono::after {
  content: '';
  position: absolute;
  background-color: var(--color-texto);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s ease;
}

.faq__icono::before {
  width: 10px;
  height: 1.5px;
}

.faq__icono::after {
  width: 1.5px;
  height: 10px;
}

.faq__pregunta[aria-expanded="true"] .faq__icono {
  border-color: var(--color-secundario);
  transform: rotate(45deg);
}

.faq__pregunta[aria-expanded="true"] .faq__icono::before,
.faq__pregunta[aria-expanded="true"] .faq__icono::after {
  background-color: var(--color-secundario);
}

/* Respuesta */
.faq__respuesta {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq__respuesta:not([hidden]) {
  max-height: 800px;
}

.faq__respuesta[hidden] {
  display: block !important;
}

.faq__respuesta-contenido {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-bottom: 1.75rem;
  font-size: 0.9rem;
  color: var(--color-texto-muted);
  line-height: 1.8;
}

.faq__respuesta-contenido strong {
  color: var(--color-texto);
}

/* Lista numerada */
.faq__lista-numerada {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1.25rem;
}

.faq__lista-numerada li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__lista-numerada li::marker {
  color: var(--color-secundario);
  font-weight: 700;
}

/* Lista bullets */
.faq__lista-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 0.5rem;
}

.faq__lista-bullets li::before {
  content: '— ';
  color: var(--color-secundario);
  font-weight: 600;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto {
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contacto__container {
  max-width: 720px;
  margin: 0 auto;
}

/* Encabezado */
.contacto__encabezado {
  text-align: center;
  margin-bottom: 3rem;
}

.contacto__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secundario);
  margin-bottom: 1rem;
}

.contacto__overline::before,
.contacto__overline::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-secundario);
  flex-shrink: 0;
}

.contacto__titulo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* WhatsApp CTA */
.contacto__whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  background: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}

.contacto__whatsapp-texto {
  font-size: 0.95rem;
  color: var(--color-texto-muted);
  line-height: 1.7;
  max-width: 420px;
}

.contacto__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.contacto__whatsapp-btn:hover {
  background: #1ebe5d;
}

.contacto__whatsapp-icono {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Separador */
.contacto__separador {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contacto__separador::before,
.contacto__separador::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.contacto__separador-texto {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-texto-muted);
  white-space: nowrap;
}

/* Formulario */
.contacto__form-intro {
  font-size: 0.9rem;
  color: var(--color-texto-muted);
  margin-bottom: 1.75rem;
}

.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contacto__campo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contacto__campo--completo {
  grid-column: 1 / -1;
}

.contacto__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-texto);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contacto__label-opcional {
  font-weight: 400;
  color: var(--color-texto-muted);
}

.contacto__input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--fuente-base);
  font-size: 0.875rem;
  color: var(--color-texto);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.contacto__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contacto__input:focus {
  border-color: var(--color-secundario);
  background: rgba(255, 130, 0, 0.04);
}

.contacto__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.contacto__select option {
  background: #1a1a1a;
  color: var(--color-texto);
}

.contacto__textarea {
  resize: vertical;
  min-height: 130px;
}

/* Estados de error */
.contacto__input--error {
  border-color: #ff4d4d !important;
  background: rgba(255, 77, 77, 0.05) !important;
}

.contacto__error {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: #ff4d4d;
  margin-top: 0.1rem;
}

.contacto__error--visible {
  display: block;
}

/* Botón submit */
.contacto__submit {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--color-secundario);
  color: #ffffff;
  font-family: var(--fuente-base);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contacto__submit:hover {
  opacity: 0.88;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

.footer__aviso {
  font-size: 0.8rem;
  color: var(--color-texto-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__aviso:hover {
  color: var(--color-texto);
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {

  /* Header */
  .header__nav-list {
    gap: 1.75rem;
  }

  /* Hero */
  .hero__container {
    gap: 3rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  /* Planes */
  .servicios-precios {
    padding: 4rem 1.5rem;
  }

  .servicios-precios__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .servicios-precios__titulo {
    font-size: 2rem;
  }

  /* Servicio */
  .servicio {
    padding: 4rem 1.5rem;
  }

  .servicio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicio__titulo {
    font-size: 2rem;
  }

  /* Beneficios */
  .beneficios__bloque {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }

  .beneficios__bloque--invertido {
    direction: ltr;
  }

  .beneficios__titulo {
    font-size: 1.75rem;
  }

  /* Experiencia */
  .experiencia {
    padding: 4rem 1.5rem;
  }

  .experiencia__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .experiencia__counter {
    right: 2%;
    bottom: 5%;
  }

  .experiencia__titulo {
    font-size: 2rem;
  }

  /* FAQ */
  .faq {
    padding: 4rem 1.5rem;
  }

  .faq__titulo {
    font-size: 2rem;
  }

  /* Contacto */
  .contacto {
    padding: 4rem 1.5rem;
  }

  .contacto__titulo {
    font-size: 2rem;
  }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {

  /* Header */
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.97);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header__nav--open {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .header__nav-link {
    font-size: 1rem;
  }

  /* Hero */
  .hero {
    padding: 5rem 1.25rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__media {
    order: -1;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__description {
    max-width: 100%;
  }

  .hero__badge {
    left: 1rem;
    bottom: 1rem;
  }

  /* Clientes */
  .clientes__texto {
    max-width: 100%;
  }

  /* Planes */
  .servicios-precios {
    padding: 3.5rem 1.25rem;
  }

  .servicios-precios__titulo {
    font-size: 1.75rem;
  }

  .plan__monto {
    font-size: 1.75rem;
  }

  /* Servicio */
  .servicio {
    padding: 3.5rem 1.25rem;
  }

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

  .servicio__titulo {
    font-size: 1.75rem;
  }

  /* Beneficios */
  .beneficios__bloque {
    padding: 3.5rem 1.25rem;
  }

  .beneficios__titulo {
    font-size: 1.5rem;
  }

  /* Experiencia */
  .experiencia {
    padding: 3.5rem 1.25rem;
  }

  .experiencia__titulo {
    font-size: 1.75rem;
  }

  .experiencia__counter {
    right: 1rem;
    bottom: 1rem;
  }

  .experiencia__counter-numero {
    font-size: 2rem;
  }

  /* FAQ */
  .faq {
    padding: 3.5rem 1.25rem;
  }

  .faq__titulo {
    font-size: 1.75rem;
  }

  .faq__pregunta {
    font-size: 0.9rem;
  }

  /* Contacto */
  .contacto {
    padding: 3.5rem 1.25rem;
  }

  .contacto__titulo {
    font-size: 1.75rem;
  }

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

  .contacto__separador-texto {
    white-space: normal;
    text-align: center;
  }
}
