:root {
  --primary: #0077FF;
  --primary-dark: #0C71C3;
  --primary-soft: #1089DF;
  --accent-soft: #7EBEC5;
  --accent-deep: #125D7C;
  --black: #000000;
  --white: #ffffff;
  --bg-body: #ffffff;
  --bg-section-soft: #f5f7fb;
  --border-soft: rgba(0, 0, 0, 0.06);
  --text-main: #111827;
  --text-muted: #6b7280;
}

/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html { overflow-x: clip; }
body { overflow-x: clip; }

section, header, main, .container {
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
}

/* ================= NAVBAR ================= */

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 78px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  max-width: 180px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.18s ease, transform 0.16s ease;
}

.nav-menu a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-contacto {
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0077FF, #1089DF);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  filter: drop-shadow(0 0 30px rgba(0, 119, 255, .35));
  transition: .25s ease;
}

.btn-contacto:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 45px rgba(0, 119, 255, .45));
}


/* Estilos para el Submenú Dropdown */
.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px); /* Consistencia con tu navbar */
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.submenu li {
  width: 100%;
}

.submenu a {
  padding: 12px 20px;
  display: block;
  font-size: 13px !important; /* Un poco más pequeño para jerarquía */
  color: var(--text-main) !important;
  transition: all 0.2s ease;
}

.submenu a:hover {
  background: var(--bg-section-soft);
  color: var(--primary) !important;
  padding-left: 25px; /* Efecto de desplazamiento elegante */
}

/* Mostrar submenú al pasar el mouse */
.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Ajuste para móviles en tu media query de 768px */
@media (max-width: 768px) {
  .submenu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 20px;
    display: none; /* Se puede alternar con JS en móvil */
  }
  
  .dropdown:hover .submenu {
    display: block;
  }
}


/* Estilos Base para todos los slides */
.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* Ajusta a la altura que necesites */
}

/* --- SLIDE 1 --- */
.slide-1 {
    /* Imagen para MÓVIL (Vertical o cuadrada) */
    background-image: url('./images/instalacion-antivirus-mobile.webp');
}

@media (min-width: 1024px) {
    .slide-1 {
        /* Imagen para LAPTOP (Horizontal/Panorámica) */
        background-image: url('./images/instalacion-antivirus-laptops-queretaro.webp');
    }
}

/* --- SLIDE 2 --- */
.slide-2 {
    /* Imagen para MÓVIL */
    background-image: url('./images/tecnico-laptop-mobile.webp');
}

@media (min-width: 1024px) {
    .slide-2 {
        /* Imagen para LAPTOP */
        background-image: url('./images/tecico-de-laptops-cerca-de-mi.webp');
    }
}

/* --- SLIDE 3 --- */
.slide-3 {
    /* Imagen para MÓVIL */
    background-image: url('./images/centro-reparacion-mobile.webp');
}

@media (min-width: 1024px) {
    .slide-3 {
        /* Imagen para LAPTOP */
        background-image: url('./images/centro-de-reparacion-de-laptops-queretaro.webp');
    }
}


/* Hamburguesa */
.toggle-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.toggle-btn span {
  width: 22px;
  height: 2px;
  background: var(--black);
  display: block;
}

/* ================= HERO SLIDER ================= */

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 420px;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 6, 6, 0.9), rgba(15, 23, 42, 0.65));
}

/* HERO RESPONSIVE FIX */
.hero-content {
  padding: 0 15px;
  text-align: center;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(20px, 6vw, 34px);
  line-height: 1.15;
}

.hero-content p {
  font-size: clamp(14px, 3.7vw, 18px);
}


.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E0F2FE;
  margin-bottom: 10px;
}


.hero-text {
  font-size: 0.98rem;
  color: #E5E7EB;
  margin-bottom: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #0077FF, #1089DF);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 119, 255, 0.6);
}

.btn-secondary {
  background: #ffffff;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.btn-secondary i {
  color: #25D366;
}

/* Swiper controles hero */
.hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

.hero-nav {
  color: #E5E7EB;
}

.hero-nav::after {
  font-size: 18px;
}

/* ================= SECCIONES GENERALES ================= */

.h-title {
    display: block;
  font-size: clamp(26px, 6vw, 48px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  margin: 10px 0 14px !important;
  text-align: center;
}


.section {
  padding: 52px 20px;
  background: #ffffff;
}

.section-center {
  max-width: 1160px;
  margin: 0 auto;
}

.section-header {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.1vh;
  margin: 0 0 8px;
}

.section-header h2 i {
  color: var(--primary);
  margin-right: 8px;
}

.section-header p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--text-muted);
}

/* ================= RESUMEN ================= */

.section-resumen {
  background: #ffffff;
  padding: 70px 20px;
}

.resumen-header p {
  margin-top: 8px;
}

.resumen-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-top: 26px;
}

.resumen-card {
  position: relative;
  background: #ededed;
  border-radius: 18px;
  padding: 28px 16px 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 22px 60px rgb(5 89 193 / 11%);
  text-align: left;
}

.resumen-card h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.resumen-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.resumen-icon-wrapper {
  position: absolute;
  top: -18px;
  left: 16px;
}

.resumen-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(145deg, #0077FF, #0C71C3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 119, 255, 0.45);
}

/* Pastillas reutilizables */
.pill-grid {
  max-width: 900px;
  margin: 0 auto 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 12px;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pill:hover {
  background: #e9f3ff;
  transition: 0.25s ease;
  transform: translateY(-2px);
}


.pill i {
  color: var(--primary);
}

/* ================= SECCIÓN REPARACIÓN ================= */

#reparacion {
  background: #ffffff;
}

@media (min-width: 1024px) {
  #reparacion {
    margin: 40px auto;
    max-width: 1400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  }
}

.reparacion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.reparacion-content h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 10px;
  text-align: left;
}

.reparacion-content h2 i {
  color: var(--primary);
  margin-right: 8px;
}

.reparacion-content p {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: #4b5563;
  margin-bottom: 18px;
  text-align: left;
}

#reparacion .pill-grid {
  max-width: 650px;
  margin: 0;
  justify-content: flex-start;
}

#reparacion .pill {
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  padding: 10px 18px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

#reparacion .pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 119, 255, 0.28);
}

#reparacion .pill:hover i {
  color: #ffffff;
}

.reparacion-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

/* ================= HIGHLIGHT / PASOS ================= */

.highlight {
  background: #f5f7ff;
  text-align: center;
}

.highlight .big-title {
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 14px;
}

.badge-row {
  max-width: 880px;
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 12px;
}

.badge-row span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-row i {
  color: var(--primary-soft);
}

.cta-center {
  text-align: center;
  
  margin-top: 3.5vh;
}

.blue-strong {
  color: #0077FF;
  font-weight: 800;
}

/* ================= FORMATEO / SECCIÓN SPLIT ================= */

.section-soft {
  background: #ffffff;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.section-copy h2 {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  margin: 0 0 8px;
  color: var(--black);
}

.section-copy p {
  margin: 0 0 10px;
  font-size: 0.96rem;
  color: var(--text-muted);
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 10px;
}

.check-list li {
  font-size: 0.93rem;
  color: #4b5563;
  padding: 4px 0;
}

.check-list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 6px;
}

#formateo .section-copy h3 {
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  display: flex;
  align-items: center;
  gap: 10px;
}

#formateo .section-copy h3 i {
  color: var(--primary);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
}

.media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.soft-card {
  border-radius: 18px;
  margin-top: 16px;
}

#formateo .soft-card h3 {
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.4;
  text-align: left;
  background: linear-gradient(145deg, #0C71C3, #0077FF);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(0, 119, 255, 0.25);
}

/* ================= SLIDER EN RECUADRO ================= */

.slider-section {
  background: #ffffff;
  padding: 40px 20px;
}

.slider-wrapper {
  max-width: 950px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.slider-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.slide-caption {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  padding: 14px;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.slide-caption h3 {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

/* Controles Swiper del slider pequeño */
.slider-section .swiper-button-prev,
.slider-section .swiper-button-next {
  color: #ffffff;
  background: rgba(0, 119, 255, 0.55);
  backdrop-filter: blur(5px);
  width: 34px;
  height: 34px;
  border-radius: 999px;
}

.slider-section .swiper-button-prev:hover,
.slider-section .swiper-button-next:hover {
  background: rgba(0, 119, 255, 0.9);
}

.slider-section .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
}

.slider-section .swiper-pagination-bullet-active {
  background: #0077FF;
}

/* ================= CARDS EMPRESARIALES ================= */

#reparacion1 h2 {
  font-weight: 800;
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  line-height: 1.2;
  text-align: center;
}

#reparacion1 h2 i {
  color: var(--primary);
  margin-right: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  vertical-align: middle;
}

.cards-business {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
  margin-top: 28px;
}

.business-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 14px 18px;
  text-align: center;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.business-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0077FF, #1089DF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 12px 25px rgba(0, 119, 255, 0.35);
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 28px 55px rgba(0, 119, 255, .18);
}

.business-card p {
  font-size: 0.95rem;
  color: var(--text-main);
  margin: 0;
  line-height: 1.4;
}

/* ================= SÍNTOMAS (2 COLUMNAS) ================= */

.sintomas {
  background: #0f172a;
  color: #ffffff;
}

.sintomas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: flex-start;
}

.sintomas-col h2 {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.sintomas-col h2 i {
  color: var(--primary);
  margin-right: 10px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  vertical-align: middle;
}

.sintomas-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sintomas-list li {
  font-size: 1rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: var(--white);
}

.sintomas-list li i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 18px;
}

.sintomas-f {
  text-align: center;
  margin-top: 35px;
}

.sintomas-f p {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.4px;
}

.sintomas-f p::after {
  content: "";
  display: block;
  width: 130px;
  height: 3px;
  border-radius: 20px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #ffffff, #4EC3FF);
  box-shadow: 0px 4px 12px rgba(0, 119, 255, 0.45);
}

/* ================= FAQ / ACORDEÓN ================= */

.faq {
  background: #ffffff;
  padding: 45px 20px;
}

.faq-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.faq-title i {
  color: var(--primary);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
}

.accordion {
  max-width: 850px;
  margin: auto;
}

.accordion-item {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 14px;
  overflow: hidden;
  transition: .3s ease;
}

.accordion-btn {
  width: 100%;
  padding: 18px;
  background: #f9fbff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

.accordion-btn:hover {
  background: #eef6ff;
  color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height .35s ease;
  padding: 0 18px;
}

.accordion-content p {
  margin: 16px 0;
  font-size: .96rem;
  color: #4b5563;
}

.accordion-item.open .accordion-content {
  padding-bottom: 14px;
}

/* ================= CONTACTO ================= */

.contact {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: flex-start;
}

.contact-info h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.contact-info p {
  font-size: 0.94rem;
  color: #4b5563;
}

.contact-info i {
  color: var(--primary);
  margin-right: 6px;
}

.contact-info a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}

.contact-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 9px;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(0, 119, 255, 0.25);
  background: #f9fafb;
}

.btn-contacto-form {
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0077FF, #1089DF);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .3s ease;
}

.btn-contacto-form:hover {
  transform: translateY(-3px) scale(1.02);
  opacity: 0.95;
}

/* ================= FOOTER ================= */

.footer {
  padding: 16px 20px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  color: #6b7280;
  text-align: center;
}

.footer-inner p {
  margin: 2px 0;
}

.footer-small {
  font-size: 0.85rem;
}

/* ================= WHATSAPP FLOTANTE ================= */

/* =========================
📞 WhatsApp Floating Button
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 18px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 99999;
  box-shadow: 0px 5px 15px rgba(0,0,0,.18);
  transition: .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

/* 📱 Ajuste para móviles medianos */

@media (max-width: 480px) {
  .whatsapp-float {
    right: 12px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

/* 📱 Ajuste para pantallas pequeñas (Galaxy Mini, iPhone SE) */

@media (max-width: 360px) {
  .whatsapp-float {
    right: 10px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero {
    height: 72vh;
  }
  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    min-height: 62px;
    padding: 0 18px;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    background: #1089DF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 12px 0 14px;
    display: none;
  }

  .nav-menu li {
    justify-content: center;
  }

  .nav-menu a {
    color: #ffffff;
  }

  .nav-menu.active {
    display: flex;
  }

  .toggle-btn {
    display: flex;
  }

  .hero {
    height: 70vh;
  }

  .hero-content {
    max-width: 90%;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reparacion-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reparacion-content h2,
  .reparacion-content p {
    text-align: center;
  }

  #reparacion .pill-grid {
    justify-content: center;
  }

  .reparacion-image img {
    margin: 20px auto 0;
  }

  .sintomas-grid {
    grid-template-columns: 1fr;
  }

  .cards-business {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cards-business {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 14px;
    right: 14px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  /* Evita desbordes sin romper sticky ni fixed */
* {
  max-width: 100%;
  box-sizing: border-box;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* Swiper hack (muy común causa del overflow) */
/* Fix para evitar overflow sin romper el slider */
.swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  will-change: transform;
}

/* HERO FULLSCREEN */
.hero {
  width: 100%;
  height: 100vh; /* altura completa real */
  position: relative;
  overflow: hidden;
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  height: 100vh !important;
}
@supports (-webkit-touch-callout: none) {
  .hero {
    height: calc(100vh - env(safe-area-inset-top)) !important;
  }
}


/* Evitar scroll horizontal en contenedores flexibles */
section, header, footer, main {
  overflow-x: clip; /* MEJOR que hidden en 2024 */
}

  
}

/* 
===========================================
🔧 SECCIÓN GLOSARIO CLÁSICO (LISTA)
===========================================
*/
.glosario-section {
  padding: 60px 20px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 50px;
}

/* CARD DESCRIPTIVA CON NÚMERO */
.glosario-card {
  display: flex;
  gap: 20px;
  background: #f8faff;
  border: 1px solid #e2e8f0;
  padding: 25px;
  border-radius: 14px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.glosario-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Número circular */
.glosario-card .number {
  min-width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Título */
.glosario-card h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--black);
}

/* Lista interna */
.glosario-card ul {
  margin: 10px 0;
  padding-left: 20px;
  font-size: 14px;
}

@media(max-width:768px) {
  .glosario-card {
    flex-direction: column;
  }
  
  .glosario-card .number {
    margin-bottom: 10px;
  }
}

/* 
===========================================
💻 SECCIÓN MODERNA (CARDS GRID)
===========================================
*/
.parts {
  background: #f5f7fb;
  padding: 70px 20px;
}

/* GRID RESPONSIVO (3 escritorio / 2 tablet / 1 móvil) */
.parts-grid {
  display: grid;
  gap: 28px;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
}

@media(max-width: 992px) {
  .parts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .parts-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.part-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: .25s ease;
}

.part-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.12);
}

/* Ícono */
.part-card .icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 14px;
}

/* Título */
.part-card h3 {
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 600;
}

/* Descripción */
.part-card .desc {
  margin: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Marcas compatibles */
.part-card .brands {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600;
  opacity: .85;
}


/* =====================================
   BANNER FULL REAL SIZE + EFECTO
===================================== */

.banner-real {
  width: 100%;
  overflow: hidden;
  margin: 50px auto;
  position: relative;

  /* fade cuando aparece */
  opacity: 0;
  animation: bannerFade .8s ease forwards;
}

/* Imagen sin distorsión */
.banner-real img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s ease-in-out, filter .6s ease;
}

/* Hover efecto sutil (solo desktop) */
@media (hover:hover) {
  .banner-real:hover img {
    transform: scale(1.07);
    filter: brightness(1.08);
  }
}

/* Efecto shimmer moderno */
.banner-real::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
  transform: skewX(-20deg);
  transition: 1.2s;
  opacity: 0;
}

@media (hover:hover) {
  .banner-real:hover::after {
    left: 130%;
    opacity: 1;
  }
}

/* Animación entrada suave */
@keyframes bannerFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===============================
   RESPONSIVE — mantiene proporción
=============================== */

@media(max-width: 1024px) {
  .banner-real { border-radius: 0px; }
}

@media(max-width: 768px) {
  .banner-real { border-radius: 0px; margin: 30px auto; }
}

@media(max-width: 480px) {
  .banner-real { border-radius: 0px; margin: 20px auto; }
}
.hero-title {
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  line-height: 1.15;
  margin-bottom: clamp(14px, 2vw, 30px);
  max-width: 1000px;
  margin-inline: auto;
  display: block;
}

.hero-title i {
  color: #0077FF;
  margin-right: 12px;
  font-size: clamp(24px, 3.5vw, 48px);
}

.section-header .subtitle-title {
  font-size: clamp(28px, 2.5vw, 42px) !important;
  font-weight: 900;
  color: var(--primary-dark);
  text-align: center;
  line-height: 1.15;
  margin-bottom: clamp(10px, 2vw, 30px);
  display: block;
}
.section-header .subtitle {
  font-size: clamp(15px, 2vw, 20px) !important;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: clamp(18px, 2vw, 32px);
}


.marcas-wrapper{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:45px;
  align-items:center;
  margin-top:15px;
}

.marcas-item {
  padding:10px 0;
  font-size:2.4vh;
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#1e293b;
  transition:.25s ease;
}

.marcas-item i {
  color:#0077ff;
  font-size:22px;
  margin-top:4px;
}

.marcas-item:hover {
  transform:translateX(6px);
  color:#0077ff;
}

.marcas-image img {
  width:100%;
  max-width:480px;
  border-radius:18px;
  object-fit:cover;
  display:block;
  box-shadow:0 20px 45px rgba(0,0,0,0.12);
  transition:.35s ease;
}

.marcas-image img:hover {
  transform:scale(1.05);
  filter:brightness(1.07);
}

/* RESPONSIVE */
@media(max-width:900px){
  .marcas-wrapper{
    grid-template-columns:1fr;
    text-align:center;
  }

  .marcas-image img{
    margin:auto;
  }
}

/* ---- Sección Precios ---- */

.precio-wrapper{
  max-width:850px;
  margin:auto;
  text-align:center;
  color:#4b5563;
  font-size:2.3vh;
  line-height:1.6;
}

.precio-box{
  background:linear-gradient(135deg,#0077ff,#1089df);
  padding:25px;
  border-radius:18px;
  margin:25px auto;
  max-width:380px;
  color:white;
  box-shadow:0 18px 45px rgba(0,119,255,0.25);
  transition:.35s ease;
}

.precio-box:hover{
  transform:scale(1.05);
  box-shadow:0 25px 60px rgba(0,119,255,0.35);
}

.precio-box h3{
  font-size:clamp(22px,3vw,32px);
  margin:0;
  font-weight:800;
}

.precio-box span{
  font-size:clamp(14px,2vw,18px);
  opacity:.9;
}

.precio-cta{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}

/* Responsive */
@media(max-width:600px){
  .precio-box{
    width:100%;
  }
}

/* =====================================
🔥 Banner Full Background Modern Style
===================================== */

.banner-full {
  width:100%;
  padding:85px 20px;
  position:relative;
  background-image:url('./images/se-puede-cambiar-teclado-de-laptop.webp');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  margin:50px auto;
  overflow:hidden;
  box-shadow:0 22px 50px rgba(0,0,0,0.15);
  transition:.45s ease;
}
/* Fondo específico para el banner de SSD / RAM */
.banner-ssd {
  background-image:url('./images/cambio-de-disco-duro-laptop.webp');
  background-size:cover;
  background-position:center;
}


/* Overlay para contraste */
.banner-overlay {
  position:absolute;
  inset:0;
  background:rgba(0, 17, 43, 0.55);
}

/* Contenido centrado */
.banner-content {
  position:relative;
  text-align:center;
  max-width:780px;
  margin:auto;
  color:#ffffff;
  z-index:2;
}

/* Título */
.banner-content h3 {
  font-size:clamp(22px,3vw,35px);
  font-weight:800;
  margin:0 0 14px;
}

.banner-content h3 i {
  color:#4EC3FF;
  margin-right:8px;
}

/* Texto */
.banner-content p {
  font-size:2.4vh;
  opacity:.9;
  margin-bottom:22px;
}

/* Botón */
.banner-btn {
  padding:14px 38px;
  font-size:2.3vh;
  border-radius:999px;
}

/* Hover del banner completo */
.banner-full:hover {
  transform:scale(1.02);
  box-shadow:0 28px 65px rgba(0,0,0,0.25);
}

/* Responsive */
@media(max-width:768px){
  .banner-full {
    padding:60px 20px;
  }
}


/* Animación suave */
.accordion-item {
  transition: all .35s ease;
}

.accordion-btn i {
  transition: .3s ease;
}

/* Rotación del ícono cuando abre */
.accordion-item.open .accordion-btn i {
  transform: rotate(180deg);
}

/* Hover moderno */
.accordion-btn:hover {
  background:#eaf4ff;
  color:#0077ff;
}

/* Glow sutil cuando está expandido */
.accordion-item.open {
  box-shadow:0 12px 32px rgba(0,119,255,0.10);
  border-color:#0077ff;
}

/* Transición de apertura */
.accordion-content {
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

/* Fondo full oscuro sin bordes */
.servicios-dark {
  background:#0B1726;
  padding:90px 20px;
  margin:60px auto 0;
  width:100%;
  color:white;
}

/* TÍTULO MÁS GRANDE */
.title-dark {
  text-align:center;
  font-size:clamp(32px,4.5vw,48px);
  font-weight:900;
  color:white;
  margin-bottom:10px;
}

.title-dark i {
  color:#4EC3FF;
  margin-right:10px;
  font-size:clamp(28px,3vw,40px);
}

.subtitle-dark {
  text-align:center;
  max-width:850px;
  margin:12px auto 50px;
  font-size:2.4vh;
  color:#c0c9d6;
}

/* GRID FIXED (3 ARRIBA + 3 ABAJO) */
.grid-dark {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* Cards */
.card-dark {
  background:#101f33;
  padding:26px;
  border:1px solid rgba(255,255,255,0.05);
  border-radius:16px;
  text-align:center;
  box-shadow:0 12px 35px rgba(0,0,0,0.35);
  transition:.35s ease-in-out;
}

.card-dark i{
  font-size:38px;
  color:#4EC3FF;
  margin-bottom:12px;
}

/* Hover efecto */
.card-dark:hover {
  transform:translateY(-10px) scale(1.05);
  border-color:#4EC3FF;
  box-shadow:0 25px 60px rgba(78,195,255,0.30);
}

/* CTA botón */
.cta-dark {
  text-align:center;
  margin-top:55px;
}

.dark-hover:hover {
  background:#4EC3FF !important;
  color:#0B1726 !important;
  box-shadow:0 0 30px rgba(78,195,255,0.7);
}

/* Responsive */
@media(max-width:950px){
  .grid-dark{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .grid-dark{
    grid-template-columns:1fr;
  }
}


/* CONTENEDOR */
.modern-agenda {
  background: #f9fbff;
  padding: 70px 20px;
}

/* TITULO */
.modern-header h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  text-align: center;
  color: #0e172a;
  margin-bottom: 10px;
}

.modern-header h2 i {
  color: #0077ff;
  margin-right: 8px;
}

.modern-header .sub {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  font-size: 2.3vh;
  color: #6b7280;
}

/* GRID */
.agenda-container {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 50px;
  align-items: center;
}

/* ITEMS */
.agenda-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  transition: .3s ease;
}

.agenda-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,119,255,0.12);
}

.agenda-item i {
  font-size: 22px;
  color: #0077ff;
}

/* TEXTO */
.agenda-item p {
  font-size: 2.3vh;
  color: #111827;
  line-height: 1.45;
}

/* BOTÓN MODERNO */
.btn-agenda {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: #0077ff;
  color: #fff;
  border-radius: 999px;
  font-size: 2.3vh;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  transition: .3s ease;
}

/* EFECTO HOVER */
.glow:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 20px rgba(0,119,255,0.55);
}

/* IMAGEN */
.agenda-media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 22px 65px rgba(0,0,0,.08);
  transition: .45s;
}

.agenda-media img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:900px){
  .agenda-container { grid-template-columns:1fr; }
  .agenda-media img { margin-top:25px; }
}

/* ===== UBICACIÓN MODERNA ===== */

.ubicacion-modern { 
  background: #f5f9ff; 
}

.ubicacion-title {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  color: #0e172a;
  margin-bottom: 6px;
}

.ubicacion-title i {
  color: #0077ff;
  margin-right: 8px;
  font-size: clamp(28px, 4vw, 40px);
}

.sub {
  color: #4b5563;
  font-size: 2.2vh;
  margin-bottom: 40px;
}

.ubicacion-grid {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 45px;
  align-items: center;
}

.text {
  font-size: 2.4vh;
  color: #111827;
  line-height: 1.55;
  margin-bottom: 14px;
}

.lista-ciudades {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.lista-ciudades li {
  font-size: 2.4vh;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lista-ciudades li i {
  color: #0077ff;
  font-size: 20px;
}

.frase {
  margin-top: 25px;
  padding: 18px;
  font-size: 2.4vh;
  background: #eef5ff;
  border-left: 5px solid #0077ff;
  border-radius: 10px;
  color: #0e172a;
  font-style: italic;
}

/* Imagen / mapa */
.ubicacion-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0px 18px 50px rgba(0,0,0,.08);
  transition: .4s ease;
}

.ubicacion-media img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:900px){
  .ubicacion-grid { grid-template-columns: 1fr; }
  .ubicacion-media img { margin-top: 20px; }
}

/* ==== DARK UI ==== */
.ubicacion-dark {
  background: #0b1320;
  padding: 85px 22px;
  color: #f1f5f9;
}

/* TITULO */
.ubicacion-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  text-align: center;
  color: #ffffff;
}
.ubicacion-title i {
  color: #00a2ff;
  margin-right: 10px;
  font-size: clamp(28px, 4vw, 40px);
  animation: glowIcon 3s infinite ease-in-out;
}
@keyframes glowIcon {
  0%,100% { text-shadow: 0 0 6px rgba(0,162,255,.5); }
  50% { text-shadow: 0 0 18px rgba(0,162,255,1); }
}

.ubicacion-sub {
  font-size: 2.2vh;
  text-align: center;
  margin-bottom: 40px;
  color: #9ca3af;
}

/* TEXTO */
.ubicacion-content p {
  font-size: 2.4vh;
  line-height: 1.65;
  color: #e5e7eb;
  margin-bottom: 18px;
}

/* === ICON ROW (1 FILA) === */
.ubicacion-row {
  margin: 40px 0;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.ubicacion-item {
  flex: 1;
  min-width: 270px;
  background: #111b2f;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: .35s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.ubicacion-item:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(0,162,255,0.6);
  box-shadow: 0 18px 40px rgba(0,162,255,.25);
}

.ubicacion-item i {
  font-size: 26px;
  color: #00a2ff;
}

.ubicacion-item p {
  font-size: 2.3vh;
  line-height: 1.45;
  color: #e8edf7;
}

/* FRASE */
.ubicacion-quote {
  margin-top: 30px;
  background: #13233a;
  border-left: 6px solid #00a2ff;
  padding: 22px;
  border-radius: 10px;
  font-style: italic;
  font-size: 2.4vh;
  color: #d8ecff;
}

/* RESPONSIVE */
@media(max-width:980px){
  .ubicacion-row { justify-content: center; }
  .ubicacion-item { max-width: 420px; }
}

/* ==== HERO SECCIÓN PREMIUM 2025 ==== */

.section-hero-pro {
  background: #f8fbff;
  padding: 80px 20px;
}

/* Título estilo tech */
.title-pro {
  font-size: clamp(28px, 2.6vw, 58px);
  font-weight: 900;
  text-align: center;
  color: #0d1b2a;
  max-width: 1100px;
  margin: 0 auto 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeSlide .9s ease-out forwards;
}

.icon-pro {
  color: #008cff;
  font-size: clamp(32px,4vw,48px);
  margin-right: 10px;
}

/* Línea animada */
.underline-animate {
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #008cff, #00d4ff);
  margin: 12px auto 35px;
  border-radius: 20px;
  animation: lineGrow 1.2s ease forwards .4s;
}

@keyframes lineGrow {
  to { width: 170px; }
}

@keyframes fadeSlide {
  to { opacity: 1; transform: translateY(0); }
}

/* Texto */
.content-pro {
  text-align: center;
  max-width: 900px;
  margin: auto;
  font-size: 2.5vh;
  color: #4b5563;
  line-height: 1.7;
}

/* Botón tech */
.btn-pro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  padding: 10px 35px;
  border-radius: 50px;
  font-size: 2.3vh;
  font-weight: 700;
  background: rgba(0,122,255,1);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(0,119,255,0.35);
  transition: .35s ease;
  backdrop-filter: blur(8px);
}

/* Hover efecto glass + glow */
.btn-pro:hover {
  transform: scale(1.06);
  box-shadow: 0 0 55px rgba(0,119,255,.6);
  background: linear-gradient(135deg, #007bff, #00b7ff);
}

/* ======= PRICE SECTION ======= */

.price-section {
  background: #ffffff;
  padding: 80px 20px;
}

.price-title {
  font-size: clamp(28px,4.5vw,48px);
  font-weight: 900;
  text-align: center;
  color: #0d1b2a;
  margin-bottom: 12px;
}

.price-title i {
  color: #008cff;
  margin-right: 10px;
  font-size: clamp(28px,4vw,42px);
}

.price-underline {
  width: 0;
  height: 4px;
  background: linear-gradient(90deg,#007bff,#00d4ff);
  margin: 10px auto 35px;
  border-radius: 20px;
  animation: expandLine 1.1s ease forwards;
}

@keyframes expandLine {
  to { width: 260px; }
}

.price-description {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
  font-size: 2.4vh;
  color: #4b5563;
  line-height: 1.6;
}

/* GRID */
.price-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  margin-bottom: 50px;
}

/* CARD */
.price-card {
  background: #f8fbff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 26px;
  text-align: center;
  transition: .3s ease;
  box-shadow: 0 18px 40px rgba(0,119,255,0.08);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,119,255,.16);
}

.price-card h3 {
  font-size: 2.5vh;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.6vh;
  color: #007bff;
  font-weight: 900;
}

.badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.9vh;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f5ff;
  color: #005bb5;
  font-weight: 600;
}

/* FOOTER */
.price-footer {
  text-align: center;
  font-size: 2.3vh;
  color: #39424e;
}

.btn-price {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 42px;
  background: linear-gradient(135deg,#007bff,#00afff);
  border-radius: 50px;
  color: #ffffff;
  font-size: 2.3vh;
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease;
  box-shadow: 0 0 30px rgba(0,119,255,0.38);
}

.btn-price:hover {
  transform: scale(1.07);
  box-shadow: 0 0 60px rgba(0,119,255,0.55);
}
/* ======= DARK MODE PRICE VERSION ======= */
.price-section.dark {
  background: #0b121a;
  color: #ffffff;
}

.price-section.dark .price-title {
  color: #ffffff;
}

.price-section.dark .price-description {
  color: #cbd5e1;
}

.price-section.dark .price-card {
  background: #111a24;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,119,255,0.08);
  color: #e8f0ff;
}

.price-section.dark .price-card:hover {
  background: #0d1620;
}

.price-section.dark .badge {
  background: rgba(0,155,255,0.15);
  color: #4cc2ff;
}

.price-section.dark .price-amount {
  color: #4cc2ff;
}

.price-section.dark .price-footer {
  color: #d3e4ff;
}


.proceso-neon {
  background: #0b1119;
  padding: 80px 25px;
  text-align: center;
  color: #fff;
}

.neon-title {
  font-size: clamp(26px,4.5vw,48px);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg,#4cc2ff,#0077ff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 50px;
}

.neon-grid {
  display:grid;
  gap:30px;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
}

.neon-card {
  border: 1px solid rgba(76,194,255,0.25);
  padding: 28px;
  border-radius: 12px;
  transition: .4s;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 0 20px rgba(0,162,255,0.05);
}

.neon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(0,162,255,0.4);
}

.badge {
  width: 40px;
  height:40px;
  background:#4cc2ff;
  color:#0b1119;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:900;
  margin:0 auto 10px;
}


/* ===== SECCIÓN PROCESO DARK ===== */
.proceso-section.dark {
  background: #081018;
  padding: 70px 20px;
  color: #ffffff;
}

.title-proceso {
  font-size: clamp(22px, 3.3vw, 40px);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
}

.proceso-section .divider {
  width: 90px;
  height: 4px;
  background: #4cc2ff;
  margin: 12px auto 40px;
  border-radius: 10px;
}

/* GRID */
.proceso-grid {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* TARJETAS */
.proceso-card {
  background: #0d1620;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0px 0px 20px rgba(0,119,255,0.06);
}

.proceso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 15px 30px rgba(0,119,255,0.18);
}

/* STEP BADGE */
.step-number {
  width: 50px;
  height: 50px;
  background: #4cc2ff;
  color: #081018;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

/* TEXTOS */
.proceso-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
}

.proceso-card p {
  color: #c8d5e0;
  font-size: 2.1vh;
  line-height: 1.6;
}



/* ===== SECCIÓN PROCESO DARK ===== */
.proceso-section.dark {
  background: #3690cf;
  padding: 70px 20px;
  color: #ffffff;
}

.title-proceso {
  font-size: clamp(22px, 3.3vw, 40px);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
}

.proceso-section .divider {
  width: 90px;
  height: 4px;
  background: #4cc2ff;
  margin: 12px auto 40px;
  border-radius: 10px;
}

/* GRID */
.proceso-grid {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* TARJETAS */
.proceso-card {
  background: #0d1620;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0px 0px 20px rgba(0,119,255,0.06);
}

.proceso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 15px 30px rgba(0,119,255,0.18);
}

/* STEP BADGE */
.step-number {
  width: 50px;
  height: 50px;
  background: #4cc2ff;
  color: #081018;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

/* TEXTOS */
.proceso-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
}

.proceso-card p {
  color: #c8d5e0;
  font-size: 2.1vh;
  line-height: 1.6;
}


/* ===== SECCIÓN PROCESO DARK ===== */
.proceso-section.dark {
  background: #081018;
  padding: 70px 20px;
  color: #ffffff;
}

.title-proceso {
  font-size: clamp(22px, 3.3vw, 40px);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
}

.proceso-section .divider {
  width: 90px;
  height: 4px;
  background: #4cc2ff;
  margin: 12px auto 40px;
  border-radius: 10px;
}

/* GRID */
.proceso-grid {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* TARJETAS */
.proceso-card {
  background: #0d1620;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0px 0px 20px rgba(0,119,255,0.06);
}

.proceso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 15px 30px rgba(0,119,255,0.18);
}

/* STEP BADGE */
.step-number {
  width: 50px;
  height: 50px;
  background: #4cc2ff;
  color: #081018;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

/* TEXTOS */
.proceso-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
}

.proceso-card p {
  color: #c8d5e0;
  font-size: 2.1vh;
  line-height: 1.6;
}

/* CONTENEDOR */
.ai-experience {
  background: #0d1117; 
  padding: 70px 20px;
  backdrop-filter: blur(20px);
  position: relative;
}

/* Glow AI de fondo */
.ai-experience::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,119,255,0.55), transparent 70%);
  filter: blur(90px);
  z-index: 0;
}

/* TITULO */
.ai-title {
  font-size: clamp(28px,4vw,52px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.ai-title i {
  color: #4ec3ff;
  margin-right: 12px;
  font-size: clamp(35px,4.5vw,55px);
}

/* SUBTÍTULO */
.ai-sub {
  text-align: center;
  color: #adb9c9;
  font-size: 2.4vh;
  max-width: 800px;
  margin: 0 auto 45px;
  padding: 10px 20px;
}

/* GRID BENEFICIOS */
.ai-benefits {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

/* ITEM */
.ai-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  color: #E5E7EB;
  transition: 0.35s ease;
  position: relative;
}

/* Hover efecto IA */
.ai-item:hover {
  transform: translateY(-6px);
  border-color: #4ec3ff;
  box-shadow: 0px 15px 45px rgba(0,119,255,0.28);
}

/* ICONOS */
.ai-item i {
  color: #4ec3ff;
  font-size: 28px;
}

/* Texto */
.ai-item span {
  font-size: 2.3vh;
  line-height: 1.45;
}

/* RESPONSIVE */
@media(max-width:600px){
  .ai-item { flex-direction: column; text-align: center; }
}


.archivos-modern {
  padding: 70px 20px;
  background:#ffffff;
}

/* Titulo */
.archivos-title {
  font-size: clamp(30px,4vw,52px);
  text-align:center;
  font-weight:900;
  letter-spacing:-0.5px;
  margin-bottom: 8px;
  color:#0d1b2a;
}

.archivos-title i {
  color:#0077ff;
  margin-right:12px;
  font-size: clamp(34px,4vw,55px);
}

/* Sub */
.archivos-sub {
  text-align:center;
  color:#4b5563;
  font-size:2.4vh;
  max-width:750px;
  margin:0 auto 40px;
}

/* GRID */
.archivos-grid {
  max-width:1000px;
  margin:0 auto;
  display:grid;
  gap:32px;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
}

/* CARD */
.archivo-card {
  background:#f8faff;
  border:1px solid rgba(0,0,0,0.05);
  border-radius:18px;
  padding:28px;
  text-align:center;
  transition:.35s ease-out;
  box-shadow:0px 10px 22px rgba(0,0,0,0.05);
}

/* Icono */
.archivo-card i {
  font-size:44px;
  color:#0077ff;
  margin-bottom:14px;
  transition:.3s;
}

/* Hover */
.archivo-card:hover {
  transform:translateY(-6px) scale(1.02);
  border-color:#0077ff;
  box-shadow:0px 22px 50px rgba(0,119,255,0.15);
}

.archivo-card:hover i {
  transform: scale(1.18);
}

/* Texto */
.archivo-card h3 {
  font-weight:700;
  color:#0d1b2a;
  margin-bottom:6px;
  font-size:clamp(18px,2vw,22px);
}

.archivo-card p {
  font-size:2.2vh;
  color:#4b5563;
  line-height:1.45;
}

/* Frase final */
.archivos-footer {
  text-align:center;
  margin-top:48px;
  font-size:2.5vh;
  font-weight:600;
  color:#111827;
}


/* CONTENEDOR */
.faq-modern {
  background:#ffffff;
  padding:70px 20px;
}

/* TITULO */
.faq-title {
  font-size: clamp(28px,4vw,50px);
  font-weight:900;
  text-align:center;
  color:#0d1b2a;
  margin-bottom:30px;
}

.faq-title i {
  color:#0077ff;
  margin-right:10px;
  font-size:clamp(32px,4vw,50px);
}

/* FAQ LIST */
.faq-list {
  max-width:850px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* ITEM */
.faq-item {
  background:#f9fafb;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  overflow:hidden;
  transition:.3s;
}

/* PREGUNTA */
.faq-question {
  width:100%;
  background:transparent;
  border:none;
  padding:18px 22px;
  font-size:2.4vh;
  font-weight:600;
  color:#111827;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  text-align:left;
  transition:.25s;
}

.faq-question:hover {
  color:#0077ff;
}

/* ICONO */
.faq-question i {
  color:#0077ff;
  transition:.28s;
}

/* RESPUESTA */
.faq-answer {
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  padding:0 22px;
}

.faq-answer p {
  margin:16px 0;
  font-size:2.2vh;
  color:#4b5563;
  line-height:1.5;
}

/* ABIERTO */
.faq-item.open .faq-answer {
  max-height:200px;
}

.faq-item.open .faq-question i {
  transform:rotate(180deg);
}


.cobertura-dark {
  background: #0d1b2a;
  padding: 70px 22px;
  color: #ffffff;
  text-align: center;
}

.cobertura-title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.cobertura-title i {
  color: #4cc2ff;
  margin-right: 10px;
  font-size: clamp(34px, 4.5vw, 55px);
  transition: .4s;
}

.cobertura-title:hover i {
  transform: scale(1.15) rotate(6deg);
  text-shadow: 0 0 18px rgba(76,194,255,.55);
}

.cobertura-sub {
  max-width: 900px;
  margin: auto;
  font-size: 2.2vh;
  opacity: .85;
  line-height: 1.6;
  padding-bottom: 45px;
}

/* GRID */
.cobertura-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.cob-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 18px 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2.4vh;
  transition: .3s ease-in-out;
  cursor: default;
}

.cob-item i {
  color: #4cc2ff;
  font-size: 22px;
}

/* Hover animación */
.cob-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(76,194,255,0.6);
  box-shadow: 0 0 16px rgba(76,194,255,.2);
}



/* === ESTILO GLOBAL PARA ICONOS LAPTOPFIX === */
.section i,
.modern-card i,
.file-card i,
.agenda-item i,
.cob-item i,
.banner-full i,
.modern-grid i {
  color: #4cc2ff !important;
  font-size: clamp(22px, 2.4vw, 42px);
  transition: all .35s ease-in-out;
}

/* Hover con animación */
.section i:hover,
.modern-card i:hover,
.file-card i:hover,
.agenda-item i:hover,
.cob-item i:hover,
.banner-full i:hover {
  transform: scale(1.18) rotate(6deg);
  text-shadow: 0 0 14px rgba(76, 194, 255, 0.55);
}

/* TITULOS QUE INCLUYEN ICONO */
.section h2 i,
.modern-title i,
.cobertura-title i {
  margin-right: 10px;
}
@keyframes popIcon {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); }
}

.section i,
.file-card i,
.cob-item i {
  animation: popIcon .6s ease-out;
}



.contact-premium {
  background:#fff;
  padding:110px 5vw;
  display:flex;
  justify-content:center;
}

.contact-wrapper {
  max-width:1300px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:60px;
}

.contact-text {
  flex:1;
  min-width:300px;
}

.contact-title-lux {
  font-size:clamp(34px,4vw,54px);
  font-weight:800;
  color:#0d1b2a;
  letter-spacing:-1px;
  margin-bottom:12px;
}

.contact-desc {
  font-size:clamp(15px,2.4vh,19px);
  color:#4b5563;
  max-width:500px;
  line-height:1.6;
  margin-bottom:35px;
}

.contact-list {
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:40px;
}

.contact-row {
  display:flex;
  gap:14px;
  align-items:center;
  font-size:19px;
  color:#1f2937;
  transition:0.3s;
}

.contact-row i {
  font-size:22px;
  color:#0077ff;
  transition:0.3s;
}

.contact-row:hover {
  transform:translateX(6px);
}

.contact-row:hover i {
  transform:scale(1.2);
  color:#4cc2ff;
}

.btn-contact-premium {
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#0077ff;
  color:#fff;
  padding:15px 28px;
  border-radius:50px;
  font-size:19px;
  font-weight:600;
  transition:.3s;
  border:2px solid transparent;
}

.btn-contact-premium:hover {
  background:#fff;
  border-color:#0077ff;
  color:#0077ff;
  transform:translateY(-5px);
  box-shadow:0 12px 35px rgba(0,118,255,0.18);
}

.contact-image img {
  width:100%;
  max-width:420px;
  border-radius:24px;
  box-shadow:0 20px 55px rgba(0,0,0,0.12);
  animation:float 6s ease-in-out infinite;
  transition:0.4s;
}

.contact-image img:hover {
  transform:scale(1.04);
}

@keyframes float {
  0% {transform:translateY(0);}
  50% {transform:translateY(-12px);}
  100% {transform:translateY(0);}
}

/* Fondo Sección */
.contact-premium {
  background:#ffffff;
  padding:110px 5vw;
  display:flex;
  justify-content:center;
}

/* Form con fondo azul */
.contact-form-dark {
  background:linear-gradient(145deg,#005cff,#003ea8);
  padding:40px;
  border-radius:22px;
  box-shadow:0 20px 60px rgba(0,0,0,0.18);
  backdrop-filter:blur(10px);
  transition:0.4s;
  color:#ffffff;
  animation:fadeUp .7s ease forwards;
  opacity:0;
}

.contact-form-dark:hover {
  transform:translateY(-6px);
  box-shadow:0 28px 70px rgba(0,0,0,0.22);
}

.contact-form-dark h3 {
  font-size:22px;
  margin-bottom:22px;
  font-weight:700;
  text-align:center;
}

.contact-form-dark h3 i {
  margin-right:6px;
  color:#ffffff;
}

.contact-form-dark input,
.contact-form-dark textarea {
  width:100%;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,0.3);
  border-radius:14px;
  font-size:15px;
  background:rgba(255,255,255,0.15);
  color:#ffffff;
  transition:.3s;
}

.contact-form-dark input::placeholder,
.contact-form-dark textarea::placeholder {
  color:#e2e8f0;
}

.contact-form-dark input:focus,
.contact-form-dark textarea:focus {
  border-color:#4cc2ff;
  box-shadow:0 0 12px rgba(76,194,255,0.2);
}

.contact-form-dark textarea {
  height:130px;
  resize:none;
}

/* Botón moderno */
.btn-form-modern {
  width:100%;
  background:#4cc2ff;
  padding:15px 0;
  color:#00357b;
  font-weight:700;
  border:none;
  border-radius:14px;
  cursor:pointer;
  font-size:18px;
  transition:0.3s;
}

.btn-form-modern:hover {
  background:#ffffff;
  color:#005cff;
  transform:translateY(-4px);
  box-shadow:0 15px 45px rgba(76,194,255,0.35);
}

/* Animación suave */
@keyframes fadeUp {
  from {opacity:0; transform:translateY(25px);}
  to {opacity:1; transform:translateY(0);}
}


/* Section */
.contact-elegant {
  background:#ffffff;
  padding:110px 6vw;
}

.contact-elegant-wrapper {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:65px;
  align-items:flex-start;
}

/* Left */
.ce-title {
  font-size:clamp(30px,5vw,52px);
  font-weight:800;
  margin-bottom:15px;
  color:#0b192e;
  display:flex;
  align-items:center;
  gap:14px;
}

.ce-title i {
  font-size:clamp(28px,5vw,50px);
  color:#0077ff;
}

.ce-sub {
  font-size:2.5vh;
  max-width:580px;
  color:#475569;
  margin-bottom:25px;
}

.ce-line {
  width:90px;
  height:4px;
  background:#0077ff;
  border-radius:40px;
  margin-bottom:25px;
}

.ce-list {
  list-style:none;
  padding:0;
  margin:0 0 40px;
}

.ce-list li {
  font-size:2.3vh;
  margin-bottom:14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  line-height:1.45;
}

.ce-list li i {
  color:#0077ff;
  margin-top:4px;
}

/* CTA WHATSAPP */
.ce-whatsapp {
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  padding:14px 28px;
  border-radius:12px;
  font-size:2.3vh;
  font-weight:600;
  text-decoration:none;
  transition:.25s ease;
}

.ce-whatsapp:hover {
  transform:translateY(-4px);
  box-shadow:0 14px 45px rgba(37,211,102,0.45);
}

/* FORM */
.ce-form-box {
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(12px);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:45px;
  box-shadow:0 28px 55px rgba(0,0,0,0.08);
}

.ce-form h3 {
  display:flex;
  gap:10px;
  align-items:center;
  font-size:20px;
  font-weight:700;
  margin-bottom:25px;
  color:#0b192e;
}

.ce-form h3 i { color:#0077ff; }

.ce-form input,
.ce-form textarea {
  width:100%;
  border:1px solid rgba(0,0,0,0.12);
  border-radius:12px;
  padding:14px;
  font-size:15px;
  margin-bottom:16px;
  transition:.25s ease;
  background:#ffffff;
}

.ce-form input:focus,
.ce-form textarea:focus {
  border-color:#0077ff;
  box-shadow:0 0 12px rgba(0,119,255,.15);
}

.ce-form textarea {
  height:120px;
  resize:none;
}

.ce-form button {
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  background:#0077ff;
  color:#fff;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}

.ce-form button:hover {
  background:#0057c9;
  transform:translateY(-4px);
}

/* Responsive */
@media(max-width:900px){
  .contact-elegant-wrapper { grid-template-columns:1fr; }
}


.ce-form input:required:invalid,
.ce-form textarea:required:invalid {
  border-color:#3790cf;
}

.ce-form input:required:valid,
.ce-form textarea:required:valid {
  border-color:#3ae374;
}

/* Animación hover mejorada */
.ce-form button:hover {
  background:#0057c9;
  transform:translateY(-4px) scale(1.02);
  box-shadow:0px 12px 35px rgba(0,119,255,.25);
}

/* ===============================
   GLOSARIO ANTIVIRUS – GRID 3x3
================================ */

.glosario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 🔒 3 en 3 */
  gap: 26px;
  margin-top: 45px;
}

/* Tablet */
@media (max-width: 1024px) {
  .glosario-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .glosario-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   ZONAS DE COBERTURA – DARK
================================ */

.coverage-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(76,194,255,0.18);
  border-radius: 18px;
  padding: 28px;
  transition: all .35s ease;
  height: 100%;
}

.coverage-card i {
  font-size: 32px;
  color: #4cc2ff;
  margin-bottom: 14px;
  display: inline-block;
  text-shadow: 0 0 25px rgba(76,194,255,.55);
}

.coverage-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1.35;
}

.coverage-card p {
  font-size: .95rem;
  color: #cbd5f5;
  line-height: 1.55;
}

/* Hover premium */
.coverage-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(76,194,255,.6),
    0 22px 55px rgba(76,194,255,.28);
}

/* Responsive */
@media (max-width: 1024px) {
  .coverage-grid {
    grid-template-columns: repeat(2,1fr) !important;
  }
}

@media (max-width: 600px) {
  .coverage-grid {
    grid-template-columns: 1fr !important;
  }
}



/* ===============================
   COBERTURA CON IMAGEN
================================ */

.coverage-layout {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.coverage-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(15,23,42,.25);
}

/* LISTADO */
.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.coverage-row {
  display: flex;
  gap: 22px;
  background: #ffffff;
  border: 1px solid rgba(0,119,255,0.12);
  padding: 26px;
  border-radius: 14px;
  transition: all .35s ease;
}

.coverage-icon {
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg,#0077ff,#4cc2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 0 22px rgba(0,119,255,.45);
}

.coverage-text h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.coverage-text p {
  margin: 0;
  font-size: .95rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Hover */
.coverage-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,119,255,.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .coverage-image {
    order: -1;
  }
}

/* ===============================
   CONTACTO FINAL
================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
}

.contact-item i {
  color: #0077ff;
  font-size: 18px;
  margin-top: 4px;
}

.btn-contact-final {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(145deg,#0077ff,#4cc2ff);
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 0 25px rgba(0,119,255,.45);
  transition: all .35s ease;
}

.btn-contact-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0,119,255,.65);
}

.contact-map {
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 30px 60px rgba(15,23,42,.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 360px;
  }
}

.btn-contact-final:hover {
  color:#ffffff !important;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .about-text h1 {
    text-align: center !important;
  }
  .about-text .about-values {
    justify-content: center;
  }
  .about-image-container {
    order: 2; /* Mueve la imagen abajo en móviles para priorizar el texto */
  }
}

/* ================= SECCIÓN VALORES ESPECÍFICA ================= */

/* Forzamos el fondo usando el nombre de la sección */
section.section-valores {
    background-color: var(--bg-section-soft) !important;
    padding: 100px 0;
    display: block;
    width: 100%;
}

.valores-header {
    text-align: center;
    margin-bottom: 60px;
}

.valores-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Usamos tu variable --primary del style.css */
.text-highlight {
    color: var(--primary) !important;
}

.valores-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Forzamos que la tarjeta sea blanca y visible */
.valor-card {
    background: var(--white) !important;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.valor-icon-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.valor-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.valor-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Efecto hover */
.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary) !important;
}

/* ================= SECCIÓN QUÉ HACEMOS (SERVICIOS) ================= */

.section-servicios {
    background-color: var(--white);
    padding: 100px 0;
}

.servicios-header {
    text-align: center;
    margin-bottom: 60px;
}

.servicios-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.servicios-title .text-highlight {
    color: var(--primary) !important;
}

.servicios-line {
    width: 70px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px auto 0;
    border-radius: 10px;
}

.servicios-container {
    max-width: 900px;
    margin: 0 auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.servicio-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-section-soft);
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    transition: transform 0.3s ease;
}

.servicio-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.servicio-item i {
    font-size: 1.8rem;
    color: var(--primary);
    min-width: 40px;
    text-align: center;
}

.servicio-item p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* CAJA SEO GOOGLE MAPS */
.servicios-seo-box {
    background: var(--text-main);
    color: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.servicios-seo-box i {
    font-size: 2rem;
    color: var(--primary);
}

.servicios-seo-box p {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.6;
}

.servicios-seo-box span {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 768px) {
    .section-servicios { padding: 60px 0; }
    .servicio-item { flex-direction: column; text-align: center; }
}

/* ================= SECCIÓN RECUPERACIÓN DE DATOS ================= */

.section-data-recovery {
    background-color: var(--bg-section-soft);
    padding: 100px 0;
    overflow: hidden;
}

.recovery-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.recovery-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 20px;
}

.recovery-title .text-primary {
    color: var(--primary) !important;
}

.recovery-divider {
    width: 70px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 30px;
    border-radius: 2px;
}

.recovery-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 40px;
}

.recovery-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.recovery-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--primary);
}

.recovery-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.recovery-item p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* IMAGEN ESTILIZADA */
.recovery-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.recovery-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.recovery-image-wrapper:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .recovery-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .recovery-text {
        text-align: center;
    }
    .recovery-divider {
        margin: 0 auto 30px;
    }
    .recovery-item {
        text-align: left;
    }
}


/* ================= SECCIÓN GLOSARIO ================= */

.section-glosario {
    background-color: var(--white);
    padding: 100px 0;
}

.glosario-header {
    text-align: center;
    margin-bottom: 60px;
}

.glosario-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
}

.glosario-title .text-primary {
    color: var(--primary) !important;
}

.glosario-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.glosario-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.glosario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glosario-card {
    background: var(--bg-section-soft);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.glosario-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 119, 255, 0.1);
    transform: translateY(-5px);
}

.glosario-icon {
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.glosario-icon i {
    color: var(--primary);
    font-size: 1.5rem;
}

.glosario-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.glosario-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .glosario-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}


/* ================= SECCIÓN MANTENIMIENTO ================= */

.section-mantenimiento {
    background-color: var(--white);
    padding: 100px 0;
}

.mantenimiento-header {
    text-align: center;
    margin-bottom: 60px;
}

.mantenimiento-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-main);
}

.mantenimiento-title .text-primary {
    color: var(--primary) !important;
}

.mantenimiento-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.mantenimiento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Tarjetas de la izquierda */
.mantenimiento-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-section-soft);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.mantenimiento-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.mantenimiento-card i {
    font-size: 1.8rem;
    color: var(--primary);
}

.mantenimiento-card p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.5;
}

/* Caja técnica derecha */
.tech-box {
    background: var(--text-main);
    color: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tech-box h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tech-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Alerta Overheating */
.warning-box {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px dashed var(--primary);
    display: flex;
    gap: 15px;
    align-items: center;
}

.warning-box i {
    color: #ffcc00;
    font-size: 1.5rem;
}

.warning-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 992px) {
    .mantenimiento-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= SECCIÓN HARDWARE ================= */

.section-hardware {
    background-color: var(--bg-section-soft);
    padding: 100px 0;
}

.hardware-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hardware-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hardware-title .text-primary {
    color: var(--primary) !important;
}

.hardware-line {
    width: 70px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 40px;
    border-radius: 2px;
}

/* Tarjetas de servicios de hardware */
.hardware-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.h-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
Success!
    gap: 20px;
    border: 1px solid var(--border-soft);
    transition: transform 0.3s ease;
}

.h-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.h-card i {
    font-size: 1.8rem;
    color: var(--primary);
}

.h-card p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Caja de promoción derecha */
.promo-box {
    background: var(--primary);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 119, 255, 0.2);
}

.promo-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.promo-icon i {
    font-size: 2.5rem;
}

.promo-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.promo-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.promo-badge {
    background: var(--white);
    color: var(--primary);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ajustes Responsive */
@media (max-width: 992px) {
    .hardware-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ================= SECCIÓN COBERTURA PREMIUM ================= */

.section-cobertura-premium {
    background-color: #0f172a; /* Azul noche muy profundo */
    padding: 120px 0;
    color: var(--white);
}

.cobertura-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.cobertura-tag {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.cobertura-h2 {
    font-size: clamp(35px, 5vw, 60px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
}

.cobertura-list {
    list-style: none;
    padding: 0;
}

.cobertura-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #94a3b8; /* Gris azulado suave */
    transition: color 0.3s ease;
}

.cobertura-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.cobertura-list li strong {
    color: var(--white);
}

.cobertura-list li:hover {
    color: var(--white);
}

/* TARJETA MAPS MINIMALISTA */
.maps-card-minimal {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 40px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.4s ease;
    min-width: 320px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 119, 255, 0.4);
}

.maps-card-minimal h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.maps-card-minimal p {
    color: #94a3b8;
    margin-bottom: 25px;
}

.btn-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
    transition: width 0.3s ease;
}

.maps-card-minimal:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.maps-card-minimal:hover .btn-line {
    width: 80px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .cobertura-flex {
        flex-direction: column;
        text-align: center;
    }
    .cobertura-list li {
        justify-content: center;
    }
}


/* ================= SECCIÓN CONTACTO WHITE ================= */

.section-contacto-white {
    background-color: var(--white);
    padding: 100px 0;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.contacto-h2 {
    font-size: clamp(32px, 4vw, 45px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.contacto-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 40px;
    border-radius: 5px;
}

.contacto-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.c-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-section-soft);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.c-text h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.c-text p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* App Card White */
.app-card-white {
    background: var(--bg-section-soft);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--border-soft);
}

.app-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.app-info i {
    font-size: 2rem;
    color: var(--text-main);
}

.app-info h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 800;
}

.app-badges {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Items White */
.social-links-white {
    display: grid;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-item i {
    color: var(--primary);
    font-size: 1.3rem;
}

.social-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.social-item:hover i {
    color: var(--white);
}

@media (max-width: 992px) {
    .contacto-grid { grid-template-columns: 1fr; }
}

/* ================= SECCIÓN PRECIOS DARK ================= */

.section-precios-dark {
    background-color: #0f172a; /* Fondo azul noche profundo */
    padding: 120px 0;
    color: var(--white);
}

.precios-header {
    text-align: center;
    margin-bottom: 70px;
}

.precios-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
}

.precios-line {
    width: 80px;
    height: 5px;
    background: var(--primary);
    margin: 25px auto;
    border-radius: 10px;
}

.precios-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.precio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.precio-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.precio-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.precio-desde {
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.monto {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 30px;
}

.monto .moneda {
    font-size: 1rem;
    color: var(--primary);
}

.precio-features {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.precio-features li {
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.precio-features li i {
    color: var(--primary);
}

/* Hover Effects */
.precio-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-featured {
    background: rgba(0, 119, 255, 0.05);
    border-color: rgba(0, 119, 255, 0.2);
}

/* Footer & Buttons */
.precios-footer {
    text-align: center;
    margin-top: 60px;
}

.precios-footer p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.btn-price-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-price-wa:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .precio-card { padding: 40px 20px; }
}

/* Estilos para la sección de Trayectoria */
.section-trayectoria {
    background-color: #ffffff;
    padding: 100px 0;
    border-bottom: 1px solid #f0f0f0;
}

.trayectoria-card {
    border-left: 4px solid #0056b3; /* Usando tu azul principal */
    padding-left: 30px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 0 15px 15px 0;
}

/* Ajuste para móviles */
@media (max-width: 992px) {
    .section-trayectoria h1 {
        font-size: 2.2rem !important;
        text-align: center;
        margin-bottom: 40px !important;
    }
    .trayectoria-card {
        text-align: center;
        border-left: none;
        border-top: 4px solid #0056b3;
        border-radius: 0 0 15px 15px;
        padding: 30px 20px;
    }
}

