/* ============================= */
/* VARIABLES ZUNO */
/* ============================= */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --text-dark: #0f172a;
  --text-medium: #64748b;
  --bg-light: #f8fafc;
  --bg-soft: #f1f5f9;
  --border-soft: #e2e8f0;
}

/* ============================= */
/* AJUSTES VISUALES MODERNOS */
/* ============================= */

/* Botones principales */
.hero-btn,
.btn-contacto,
.cta-btn,
.card-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  transition: 0.3s ease;
}

/* Hover botones */
.hero-btn:hover,
.btn-contacto:hover,
.cta-btn:hover,
.card-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
}

/* Iconos (círculos suaves modernos) */
.icon-circle {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

/* Números del proceso */
.numero {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
}

/* Iconos del proceso */
.icon-container {
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

/* Hover cards más moderno */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

/* Links hover */
.nav-links li a:hover {
  color: var(--primary);
}

/* Logo */
.logo {
  color: var(--primary);
}

/* Texto destacado */
.text {
  color: var(--primary);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: white;
  color: var(--text-dark);
}

.text {
  color: var(--primary-dark);
}

/* ============================= */
/* NAVBAR */
/* ============================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background-color: white;
  border-bottom: 1px solid var(--border-soft);
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Links centrales */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: var(--primary);
}

/* Botón contacto */
.btn-contacto {
  background-color: var(--primary);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-contacto:hover {
  background-color: var(--primary-dark);
}

/* Menu hamburguesa */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    border-top: 1px solid var(--border-soft);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .btn-contacto {
    display: none;
  }
}

/* ============================= */
/* HERO */
/* ============================= */
.hero {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 40px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-image img {
    max-width: 350px;
  }
}

/* ============================= */
/* INVENTARIO */
/* ============================= */
.inventario {
  padding: 100px 40px;
  background-color: white;
}

.inventario-header {
  text-align: center;
  margin-bottom: 60px;
}

.inventario-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.inventario-header p {
  font-size: 18px;
  color: var(--text-medium);
}

/* CONTENEDOR CARDS */

.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */

.card {
  background: white;
  width: 280px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  /* overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.year {
  font-size: 14px;
  color: var(--text-medium);
}

.card h3 {
  font-size: 20px;
}

.version {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.pricing p {
  font-size: 18px;
  color: var(--text-medium);
}

.pricing h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-btn {
  margin-top: 15px;
  text-align: center;
  background-color: var(--primary);
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.card-btn:hover {
  background-color: var(--primary-dark);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .inventario {
    padding: 60px 20px;
  }

  .inventario-header h2 {
    font-size: 28px;
  }

  .cards-container {
    gap: 20px;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }
}

/* ============================= */
/* POR QUÉ */
/* ============================= */
.porque {
  padding: 100px 40px;
  background-color: var(--bg-soft);
}

.porque-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px auto;
}

.porque-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.porque-header p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* CONTENEDOR FLEX */

.porque-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* ITEM */

.porque-item {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
}

/* CÍRCULO */

.icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--bg-light);
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.icon-circle svg {
  width: 28px;
  height: 28px;
}

.porque-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.porque-item p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .porque-item {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .porque {
    padding: 70px 20px;
  }

  .porque-header h2 {
    font-size: 28px;
  }

  .porque-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================= */
/* PROCESO */
/* ============================= */
.proceso {
  padding: 120px 40px;
  background-color: white;
  text-align: center;
}

.proceso-header {
  margin-bottom: 90px;
}

.proceso-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.proceso-header p {
  font-size: 20px;
  color: var(--text-medium);
}

/* WRAPPER */

.proceso-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* LÍNEA HORIZONTAL */

.linea {
  position: absolute;
  top: 42px;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: var(--border-soft);
  z-index: 0;
}

/* PASO */

.paso {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  z-index: 1;
}

.icon-container {
  width: 90px;
  height: 90px;
  background-color: #e8eef6;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--primary);
}

.icon-container svg {
  width: 34px;
  height: 34px;
}

/* Número flotante */

.numero {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Texto */

.paso h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1f2c;
}

.paso p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .linea {
    display: none;
  }

  .proceso-wrapper {
    justify-content: center;
  }

  .paso {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .proceso {
    padding: 80px 20px;
  }

  .proceso-header h2 {
    font-size: 30px;
  }

  .proceso-header p {
    font-size: 17px;
  }

  .paso {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================= */
/* SEGURIDAD */
/* ============================= */
.seguridad {
  padding: 110px 40px;
  background-color: var(--bg-soft);
}

.seguridad-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

.seguridad-icon {
  flex: 0 0 180px;
  display: flex;
  justify-content: center;
}

.seguridad-circle {
  width: 170px;
  height: 170px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.seguridad-circle svg {
  width: 60px;
  height: 60px;
  color: var(--primary);
}

.seguridad-content {
  flex: 1;
}

.seguridad-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #1a1f2c;
}

.seguridad-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 30px;
  max-width: 750px;
}

.seguridad-extra {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1a1f2c;
}

.seguridad-extra svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
  .seguridad-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .seguridad-extra {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .seguridad {
    padding: 80px 20px;
  }

  .seguridad-content h2 {
    font-size: 30px;
  }

  .seguridad-content p {
    font-size: 16px;
  }

  .seguridad-circle {
    width: 140px;
    height: 140px;
  }

  .seguridad-circle svg {
    width: 50px;
    height: 50px;
  }
}

/* ============================= */
/* CTA FINAL (ESTILO ZUNO) */
/* ============================= */
.cta-final {
  padding: 120px 40px;
  background-color: white;
  text-align: center;
}

.cta-container {
  max-width: 850px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #1a1f2c;
}

.cta-subtitle {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 45px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary);
  color: white;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn svg {
  width: 20px;
  height: 20px;
}

.cta-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.cta-benefits {
  margin-top: 30px;
  font-size: 16px;
  color: #6b7280;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .cta-final {
    padding: 80px 20px;
  }

  .cta-final h2 {
    font-size: 30px;
  }

  .cta-subtitle {
    font-size: 17px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 14px 28px;
  }
}

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

.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 80px 40px 40px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* COLUMNAS */

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col p {
  color: #9ca3af;
  line-height: 1.6;
  max-width: 250px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: #9ca3af;
}

.footer-col ul li a {
  text-decoration: none;
  color: #9ca3af;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

/* CONTACTO */

.footer-contact li {
  cursor: default;
}

/* LÍNEA INFERIOR */

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 60px;
  padding-top: 25px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 30px 20px;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

/* ============================= */
/* BOTÓN FLOTANTE DE WHATSAPP */
/* ============================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}