:root {
  --negro: #080808;
  --negro-2: #101010;
  --negro-3: #171717;
  --gris-borde: #2b2b2b;
  --gris: #a7a7a7;
  --gris-claro: #dddddd;
  --blanco: #ffffff;
  --amarillo: #f4c400;
  --amarillo-2: #ffd400;
  --rojo: #e6352f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--negro);
  color: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gris-borde);
}

.header-contenido {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.marca {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.marca-cic {
  color: var(--amarillo);
  font-size: 1.45rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  color: #e8e8e8;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

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

/* BOTONES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 7px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-header,
.btn-principal {
  background: var(--amarillo);
  color: #050505;
}

.btn-header {
  min-height: 44px;
  font-size: 0.9rem;
}

.btn-secundario {
  border: 1px solid #4b4b4b;
  background: #151515;
}

.btn-claro {
  background: var(--blanco);
  color: var(--negro);
}

.btn-ancho {
  width: 100%;
}

/* TEXTOS GENERALES */

.eyebrow {
  color: var(--amarillo);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
}

.seccion {
  padding: 110px 0;
}

.seccion h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}

.seccion h2 span {
  color: var(--amarillo);
}

.intro {
  color: var(--gris-claro);
  max-width: 700px;
  font-size: 1.08rem;
}

/* HERO */

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 76% 40%,
      rgba(244, 196, 0, 0.11),
      transparent 30%
    ),
    linear-gradient(135deg, #090909, #111111);
  border-bottom: 1px solid var(--gris-borde);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 28px;
}

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

.hero-descripcion {
  max-width: 650px;
  color: #d3d3d3;
  font-size: 1.15rem;
  margin-bottom: 34px;
}

.hero-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  padding-top: 24px;
  border-top: 1px solid #292929;
}

.hero-beneficios div {
  display: flex;
  flex-direction: column;
}

.hero-beneficios strong {
  color: var(--blanco);
  margin-bottom: 3px;
}

.hero-beneficios span {
  color: var(--gris);
  font-size: 0.86rem;
}

/* TELÉFONO DEMO */

.hero-demo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 570px;
}

.telefono-placeholder {
  width: 285px;
  height: 565px;
  border: 8px solid #292929;
  border-radius: 42px;
  background: #0f0f0f;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(244, 196, 0, 0.07);
  overflow: hidden;
  padding: 25px 17px;
  transform: rotate(3deg);
}

.telefono-barra {
  width: 80px;
  height: 6px;
  background: #333333;
  border-radius: 20px;
  margin: 0 auto 40px;
}

.telefono-contenido h3 {
  font-size: 1.55rem;
  margin: 10px 0 28px;
}

.mini-etiqueta {
  display: inline-block;
  color: var(--amarillo);
  font-weight: 900;
  font-size: 1.4rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-grid span {
  min-height: 86px;
  padding: 14px 10px;
  display: flex;
  align-items: flex-end;
  border-radius: 11px;
  background: #1c1c1c;
  border: 1px solid #303030;
  font-size: 0.75rem;
  font-weight: 700;
}

.mini-grid span:first-child {
  background: var(--amarillo);
  color: #000;
}

.demo-etiqueta {
  position: absolute;
  right: 0;
  bottom: 55px;
  background: var(--blanco);
  color: var(--negro);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.demo-etiqueta strong {
  font-size: 0.9rem;
}

/* FRANJA NEGOCIOS */

.franja-negocios {
  padding: 27px 0;
  background: var(--amarillo);
  color: #050505;
  overflow: hidden;
}

.franja-negocios p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.franja-negocios strong {
  font-size: 0.9rem;
}

/* FUNCIONES */

.funciones {
  background: var(--negro-2);
}

.tarjetas {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tarjeta {
  min-height: 350px;
  padding: 35px;
  border: 1px solid var(--gris-borde);
  border-radius: 12px;
  background: #151515;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.tarjeta:hover {
  transform: translateY(-6px);
  border-color: #5d5d5d;
}

.icono {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--amarillo);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 40px;
}

.tarjeta h3 {
  font-size: 1.45rem;
  margin-bottom: 13px;
}

.tarjeta p {
  color: var(--gris);
  margin-bottom: 28px;
}

.tarjeta a {
  color: var(--amarillo);
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: auto;
}

/* CAPTURAS */

.accion {
  background: #0b0b0b;
}

.capturas-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
}

.captura-card {
  min-width: 0;
}

.captura-placeholder {
  aspect-ratio: 9 / 18;
  border-radius: 18px;
  border: 1px solid #343434;
  background:
    linear-gradient(160deg, #242424, #0f0f0f);
  display: grid;
  place-items: center;
  color: #5f5f5f;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 23px;
}

.captura-card > span {
  color: var(--amarillo);
  font-size: 0.78rem;
  font-weight: 900;
}

.captura-card h3 {
  font-size: 1rem;
  margin: 7px 0;
}

.captura-card p {
  color: var(--gris);
  font-size: 0.84rem;
}

/* ADMINISTRACIÓN */

.administracion {
  background: var(--negro-2);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.admin-grid article {
  position: relative;
  min-height: 520px;
  padding: 50px;
  background: #151515;
  border: 1px solid var(--gris-borde);
  border-radius: 14px;
  overflow: hidden;
}

.numero-grande {
  position: absolute;
  right: 30px;
  top: 5px;
  font-size: 7rem;
  line-height: 1;
  color: #222222;
  font-weight: 900;
}

.admin-grid h3 {
  max-width: 450px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.admin-grid article > p:not(.eyebrow) {
  color: var(--gris-claro);
  max-width: 470px;
}

.ticket-demo {
  max-width: 330px;
  margin-top: 55px;
  padding: 25px;
  border-radius: 12px;
  background: var(--blanco);
  color: #000;
  display: flex;
  flex-direction: column;
}

.ticket-demo span {
  font-size: 0.7rem;
  font-weight: 800;
}

.ticket-demo strong {
  font-size: 2.4rem;
  margin: 5px 0 20px;
}

.ticket-demo button {
  border: 0;
  padding: 13px;
  background: var(--amarillo);
  font-weight: 900;
  cursor: pointer;
}

.dato-destacado {
  margin-top: 75px;
  color: var(--amarillo);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.07em;
}

/* PASOS */

.pasos {
  background: var(--amarillo);
  color: #050505;
}

.pasos .eyebrow,
.pasos h2 span {
  color: #050505;
}

.pasos-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.25);
}

.pasos-grid article {
  background: var(--amarillo);
  padding: 35px;
}

.pasos-grid span {
  font-size: 0.75rem;
  font-weight: 900;
}

.pasos-grid h3 {
  margin: 55px 0 13px;
  font-size: 1.4rem;
}

.pasos-grid p {
  color: #292929;
}

/* PRECIO */

.precio {
  background: #0b0b0b;
}

.precio-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 80px;
}

.precio-grid > div:first-child .intro + .intro {
  margin-top: 25px;
}

.precio-card {
  padding: 42px;
  border: 1px solid #3b3b3b;
  border-radius: 15px;
  background: #141414;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.precio-card h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.precio-numero {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 8px;
}

.precio-numero strong {
  color: var(--amarillo);
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.precio-numero span {
  color: var(--gris-claro);
  margin-bottom: 7px;
}

.pago-anual {
  color: var(--gris);
  font-size: 0.75rem;
  margin-bottom: 30px;
}

.precio-card ul {
  list-style: none;
  margin: 25px 0 35px;
}

.precio-card li {
  padding: 10px 0;
  border-bottom: 1px solid #292929;
  color: #e0e0e0;
}

.precio-card li::first-letter {
  color: var(--amarillo);
}

.precio-card small {
  display: block;
  text-align: center;
  color: var(--gris);
  margin-top: 15px;
}

/* FAQ */

.faq {
  background: var(--negro-2);
}

.faq-grid {
  max-width: 900px;
  margin-top: 50px;
}

.faq details {
  border-top: 1px solid #343434;
}

.faq details:last-child {
  border-bottom: 1px solid #343434;
}

.faq summary {
  padding: 25px 5px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq details p {
  color: var(--gris);
  padding: 0 5px 25px;
}

/* CTA FINAL */

.cta-final {
  padding: 110px 0;
  background: var(--rojo);
  text-align: center;
}

.cta-final .eyebrow {
  color: var(--blanco);
}

.cta-final h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 25px;
}

.precio-final {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.cta-nota {
  margin-top: 17px;
  font-size: 0.82rem;
}

/* FOOTER */

.footer {
  background: #050505;
  border-top: 1px solid #242424;
}

.footer-grid {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer h3 {
  color: var(--amarillo);
  margin-bottom: 4px;
}

.footer p {
  color: var(--gris);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-links a {
  color: #c9c9c9;
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--amarillo);
}

.footer-copy {
  padding: 18px;
  border-top: 1px solid #1e1e1e;
  color: #737373;
  text-align: center;
  font-size: 0.78rem;
}

/* TABLET */

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .precio-grid {
    grid-template-columns: 1fr;
  }

  .hero-texto {
    text-align: center;
  }

  .hero-descripcion,
  .intro {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-botones,
  .hero-beneficios {
    justify-content: center;
  }

  .hero-demo {
    min-height: 620px;
  }

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

  .tarjeta {
    min-height: auto;
  }

  .capturas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .franja-negocios p {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* MÓVIL */

@media (max-width: 650px) {
  .contenedor {
    width: min(92%, 1180px);
  }

  .header-contenido {
    min-height: 68px;
  }

  .marca span:last-child {
    display: none;
  }

  .btn-header {
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 20px;
    padding-top: 65px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .hero-descripcion {
    font-size: 1rem;
  }

  .hero-botones {
    flex-direction: column;
  }

  .hero-botones .btn {
    width: 100%;
  }

  .hero-beneficios {
    flex-direction: column;
    gap: 16px;
  }

  .telefono-placeholder {
    width: 245px;
    height: 500px;
  }

  .demo-etiqueta {
    right: 5px;
  }

  .seccion,
  .cta-final {
    padding: 80px 0;
  }

  .seccion h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

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

  .admin-grid article {
    padding: 35px 25px;
    min-height: 480px;
  }

  .numero-grande {
    font-size: 5rem;
  }

  .precio-card {
    padding: 30px 22px;
  }

  .precio-numero {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .capturas-grid {
    grid-template-columns: 1fr;
  }
}
/* PÁGINAS LEGALES */

.pagina-legal {
  background: #0b0b0b;
}

.legal-hero {
  padding: 95px 0 65px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(244, 196, 0, 0.1),
      transparent 30%
    ),
    #0b0b0b;
  border-bottom: 1px solid #292929;
}

.legal-contenido {
  max-width: 900px;
}

.legal-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-fecha {
  color: #999999;
  margin-top: 20px;
}

.legal-cuerpo {
  padding: 75px 0 110px;
}

.legal-cuerpo h2 {
  color: var(--amarillo);
  font-size: 1.8rem;
  margin-top: 65px;
  margin-bottom: 20px;
}

.legal-cuerpo h3 {
  font-size: 1.2rem;
  margin-top: 35px;
  margin-bottom: 12px;
}

.legal-cuerpo p {
  color: #d0d0d0;
  margin-bottom: 20px;
}

.legal-cuerpo strong {
  color: #ffffff;
}

.legal-cuerpo ul {
  margin: 18px 0 28px 22px;
}

.legal-cuerpo li {
  color: #d0d0d0;
  margin-bottom: 9px;
  padding-left: 5px;
}

.legal-contacto {
  margin-top: 30px;
  padding: 30px;
  background: #151515;
  border: 1px solid #303030;
  border-radius: 12px;
}

.legal-contacto p:last-child {
  margin-bottom: 0;
}