*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Inter", sans-serif;
}

body {
  margin: 0;
  background: #f3f6fb;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  pointer-events: none;
}

html, body {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}

.hero h1,
.org-title,
.claves-header h2,
.titulo-principal {
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ================= HEADER ================= */
.small-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart i {
  display: block;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e5eaf4;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  height: 74px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-content: center;
  align-items: center;
}

.nav-links li {
  color: #475569;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
}

.nav-links li:hover {
  color: #2563eb;
}

.nav-links .active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
}

.nav-right i {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.lang {
  font-weight: 500;
  cursor: pointer;
  color: #475569;
  transition: 0.2s;
}

.lang:hover {
  color: #2563eb;
}

.cart {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  color: #334155;
  transition: 0.2s;
}

.cart:hover {
  color: #2563eb;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #2563eb;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 999px;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  object-fit: contain;
}

/* ================= HERO ================= */

.hero {
  padding: 20px 20px 220px;
  text-align: center;
  background: #f3f6fb;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3.5rem, 4.5vw, 5.5rem);
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero p {
  font-size: 1.15rem;
  color: #4B5563;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.hero h1 span {
  color: #3B6BBF;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background: linear-gradient(135deg,#2563eb,#1e40af);
  color: white;
  padding: 18px 40px;
  border-radius: 16px;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 20px rgba(37,99,235,0.18); /* ↓ menos brillo */
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37,99,235,0.25);
}
.btn-secondary {
  border: 2px solid #2E5BFF;
  background: transparent;
  color: #2E5BFF;
  padding: 18px 40px;
  border-radius: 16px;
  font-weight: 600;
  margin-left: 20px;
  cursor: pointer;
}

.hero-divider {
  height: 1px;
  background: #E5EAF4;
  margin: 20px 0;
}

/* ================= HERO LOGOS ================= */

.hero-logos {
  margin-top: 50px;
  text-align: center;
}

.hero-logos-text {
  font-size: 1rem;
  color: #3B6BBF;
  margin-bottom: 50px;
  opacity: 0.9;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  align-items: center;
  justify-items: center;
  margin-bottom: 40px;
}

.logos-grid img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}


.hero-logos-link {
  display: inline-block;
  margin-top: 10px;
  color: #3B6BBF;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-logos-link:hover {
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 900px) {
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ================= GUANTE SECTION ================= */

.guante-section {
  min-height: auto;
  padding-top: 20px;
  padding-bottom: 30px;
    background: #F3F6FB;
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity 0.35s ease-out,
    transform 0.35s ease-out;
}

.guante-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= SELECTOR ================= */

.selector {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.selector-pill {
  position: relative;
  display: inline-flex;
  align-items: center;

  padding: 8px;
  border-radius: 999px;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(37,99,235,0.15);
  box-shadow: 
    0 8px 30px rgba(37,99,235,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.4);
}

.selector-indicator {
  position: absolute;
  top: 8px;
  left: 0;
  height: calc(100% - 16px);

  background: linear-gradient(135deg,#2563eb,#1d4ed8);

  border-radius: 999px;

  box-shadow:
    0 12px 30px rgba(37,99,235,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.15);

  z-index: 0;
}

.selector-pill .item {
  position: relative;
  z-index: 1;

  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;

  border: none;
  background: none;
  cursor: pointer;

  color: #64748b;
  transition: color 0.25s ease;
}

.selector-pill .item.active {
  color: white;
}

.selector-pill .arrow {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
}

/* ================= GUANTE WRAPPER ================= */

.guante-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.guante-svg {
  position: relative;
  width: 100%;
  max-width: 900px;
  overflow: hidden;

  -webkit-mask-image: 
    linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-composite: intersect;

  mask-image: 
    linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-composite: intersect;
}

.guante-svg svg {
  width: 100%;
  height: auto;
  will-change: transform;
  filter: none !important;
  display: block;
}

.guante-svg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: radial-gradient(
    circle at center,
    transparent 70%,
    rgba(243,246,251,0.6) 85%,
    rgba(243,246,251,1) 100%
  );
}

/* ================= INFO TARJETA ================= */

.info-zona {
  width: 100%;
  max-width: 400px;
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 28px 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  color: #111827;

  transition: 
    transform 0.45s cubic-bezier(.4,0,.2,1),
    opacity 0.35s ease;
}

.info-zona.animating {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.info-zona h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

.info-zona p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ================= ZONAS INTERACTIVAS ================= */
.zona {
  pointer-events: all;
}

.zona path {
  fill: transparent;
  pointer-events: visiblePainted;
  cursor: pointer;
}

.zona:hover path {
  fill: transparent !important;
  filter: none !important;
}

/* ================= HOTSPOTS ================= */

.hotspot {
  fill: #3B82F6;
  stroke: white;
  stroke-width: 3;
  filter: drop-shadow(0 0 12px rgba(59,130,246,0.9));
  animation: pulse-strong 1.8s infinite ease-out;
  pointer-events: none;
}

@keyframes pulse-strong {
  0% { r: 14; opacity: 1; }
  60% { r: 36; opacity: 0; }
  100% { r: 14; opacity: 0; }
}

.hotspot.oculto {
  animation: none;
  opacity: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .guante-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-zona {
    max-width: 100%;
    text-align: center;
  }
}

.explora-top {
  max-width: 1200px;
  margin: 0 auto 40px auto; /* centra */
  text-align: center;       /* centra el texto */
  padding: 0 20px;
  opacity: 0.9;
}

.explora-top h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.explora-top p {
  opacity: 0.75;
  font-size: 1rem;
}

/* ===== CASOS SECTION ===== */

.casos-section {
  padding: 60px 20px;
  padding-bottom: 140px;
  text-align: center;
  background: transparent;
}

.casos-header .mini {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #3B6BBF;
}

.casos-header h2 {
  font-size: 2.8rem;
  margin: 10px 0;
}

.casos-header p {
  color: #64748b;
  margin-bottom: 60px;
}

.carousel {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card {
  position: absolute;
  width: 640px;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.4s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 25px;
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 0 5px 20px rgba(0,0,0,0.6);
  z-index: 3;  
}

.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 2;
}

/* ================= ORGANIZACIONES EXACTA ================= */

.org-section {
  padding: 100px 20px;
  background:
    radial-gradient(circle at left center, rgba(46,91,255,0.08), transparent 60%),
    radial-gradient(circle at right center, rgba(46,91,255,0.08), transparent 60%),
    linear-gradient(180deg, #f5f8ff 0%, #eaf1ff 100%);
}

.org-container {
  max-width: 1250px;
  margin: 0 auto;
  text-align: center;
}

.org-title {
  font-size: clamp(2.8rem, 3vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 100px;
  color: #111827;
}

.org-title span {
  color: #2E5BFF;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.org-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 80px 60px;

  display: flex;
  flex-direction: column;   
  align-items: center;
  justify-content: center;
  gap: 40px;                

  box-shadow: 0 60px 140px rgba(46,91,255,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.org-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 80px 180px rgba(46,91,255,0.12);
}

.org-card img {
  max-height: 140px;
  width: auto;
  margin: 0; 
}

.org-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2fa4db, #1e88e5);
  color: white;
  padding: 18px 50px;
  border-radius: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 25px 60px rgba(46,91,255,0.35);
  transition: all 0.3s ease;
}

.org-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px rgba(46,91,255,0.45);
}

/* Responsive */

@media (max-width: 1000px) {
  .org-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .org-card {
    padding: 60px 40px;
  }
}
/* ================= CLAVES SECTION ================= */

.claves-section {
  padding: 120px 20px;
  border-top: 1px solid #e0edff;
  border-bottom: 1px solid #e0edff;
  background: linear-gradient(to bottom, #ffffff, #f5f9ff);
}

.claves-container {
  max-width: 1250px;
  margin: 0 auto;
}

.claves-header {
  text-align: center;
  margin-bottom: 80px;
}

.claves-header h2 {
  font-size: clamp(2.8rem, 3vw, 3.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: #111827;
}

.claves-header .azul {
  color: #2563eb;
  font-weight: 500;
}

.claves-header p {
  margin-top: 15px;
  font-size: 18px;
  color: #64748b;
}

/* FAN WRAPPER */

.claves-section {
  padding: 120px 20px;
  background: linear-gradient(to bottom, #ffffff, #f6f9ff);
}

.claves-header {
  text-align: center;
  margin-bottom: 80px;
}

.claves-header h2 {
  font-size: 3rem;
  font-weight: 500;
}

.azul {
  color: #2563eb;
}

.claves-header p {
  margin-top: 15px;
  font-size: 18px;
  color: #64748b;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;

  align-items: start;
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 40px 30px;
}

.icon-card i {
  width: 70px;
  height: 70px;
  stroke-width: 1.8;
  color: #2f4f7f;
  margin-bottom: 32px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}

.icon-card h3 {
  margin: 20 0 12px 0;  
  font-size: 20px;
  font-weight: 500;
  color: #1e3a5f;
}

.icon-card p {
  margin: 0;            
  font-size: 14px;
  color: #3b5b86;
  line-height: 1.6;
}

.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.12);
}

/* responsive */

@media (max-width: 900px) {
  .icon-grid {
    grid-template-columns: 1fr;
  }
}

.bloque-grande {
  padding: 160px 20px;
  background: #ffffff;
}

.fondo-suave {
  background: linear-gradient(to bottom,#f4f8ff,#eef4ff);
}

.titulo-principal {
  text-align: center;
  font-size: clamp(2.8rem,3vw,3.6rem);
  margin-bottom: 120px;
  color: #1e3a5f;
}

.feature {
  display: flex;
  align-items: center;
  gap: 100px;
  max-width: 1300px;
  margin: 0 auto 160px;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.img {
  flex: 1;
}

.img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.texto {
  flex: 1;
}

.texto h3 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #2563eb;
}

.texto p {
  line-height: 1.8;
  color: #475569;
  margin-bottom: 35px;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 16px 44px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg,#2563eb,#1e40af);
  box-shadow: 0 15px 50px rgba(37,99,235,0.35);
  overflow: hidden;
  transition: all .35s ease;
}

.btn::before {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg,#3b82f6,#2563eb);
  opacity:0;
  transition: opacity .4s ease;
}

.btn:hover::before {
  opacity:1;
}

.btn span {
  position:relative;
  z-index:2;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(37,99,235,0.45);
}

@media(max-width:1100px){
  .feature,
  .feature.reverse{
    flex-direction: column;
  }
}

.footer {
  background: #1e3a8a; /* mismo color que topbar */
  color: #dbeafe;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* TOP */

.footer-top {
  padding: 100px 20px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 70px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: #bcd0ee;
  max-width: 320px;
}

/* CONTACTO CON ICONOS */

.footer-contact {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-decoration: none;
  color: #cfe2ff;
  transition: 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact i {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
  color: #93c5fd;
}

/* COLUMNAS */

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #bcd0ee;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 20px 50px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-certificaciones {
  display: flex;
  gap: 50px;
}

.cert {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert i {
  width: 20px;
  height: 20px;
  color: #93c5fd;
}

.cert strong {
  display: block;
  font-size: 12px;
  color: #ffffff;
}

.cert span {
  font-size: 11px;
  color: #a5c4f5;
}

.footer-copy {
  text-align: right;
}

.footer-copy p {
  font-size: 12px;
  margin-bottom: 6px;
}

.footer-copy small {
  font-size: 11px;
  color: #8fb3ea;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-certificaciones {
    justify-content: center;
  }
}

/* ================= NAV RESPONSIVE ================= */

@media (max-width: 900px) {

  .nav-container {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    gap: 18px;
  }

  .logo-img {
    height: 34px;
  }
}

/* ================= HERO RESPONSIVE ================= */

@media (max-width: 768px) {

  .hero {
    padding: 40px 20px 120px;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    margin: 0;
    padding: 16px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .logos-grid img {
    max-height: 40px;
  }
}

/* ================= GUANTE MOBILE ================= */

@media (max-width: 900px) {

  .guante-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .guante-svg {
    max-width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .guante-svg::after {
    display: none;
  }

  .info-zona {
    max-width: 100%;
    text-align: center;
    padding: 24px;
  }

  .selector-pill .item {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* ================= CAROUSEL MOBILE ================= */

@media (max-width: 768px) {

  .carousel {
    height: 260px;
  }

  .card {
    width: 90%;
    height: 220px;
  }

  .overlay {
    font-size: 1.2rem;
    bottom: 15px;
    left: 18px;
  }
}

@media (max-width: 768px) {

  .org-section {
    padding: 70px 20px;
  }

  .org-title {
    font-size: 2rem;
    margin-bottom: 60px;
  }

  .org-card {
    padding: 40px 30px;
    border-radius: 25px;
  }

  .org-card img {
    max-height: 100px;
    margin-bottom: 30px;
  }

  .org-btn {
    padding: 14px 30px;
  }
}

@media (max-width: 900px) {

  .bloque-grande {
    padding: 90px 20px;
  }

  .titulo-principal {
    margin-bottom: 70px;
    font-size: 2rem;
  }

  .feature {
    gap: 40px;
    margin-bottom: 100px;
  }

  .img img {
    border-radius: 20px;
  }

  .texto h3 {
    font-size: 22px;
  }

  .texto p {
    font-size: 14px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {

  .footer-top {
    padding: 70px 20px 50px;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-certificaciones {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    padding: 30px 20px;
  }
}

/* ================= FIX PANEL ALTURA ================= */

.info-zona {
  min-height: 180px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ================= MOBILE MENU ================= */

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle i {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

/* Sidebar */

.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 20px 0 60px rgba(0,0,0,0.1);
  padding: 100px 30px;
  transition: 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 500;
  color: #1e3a5f;
  cursor: pointer;
}

.mobile-menu.active {
  left: 0;
}

/* Overlay */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 998;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Mostrar solo en móvil */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-container {
    grid-template-columns: auto 1fr auto;
  }

}

/* ================= NAV MOBILE CLEAN ================= */

@media (max-width: 900px) {

  .nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .nav-left {
    grid-column: 2;
    justify-content: center;
  }

  .menu-toggle {
    grid-column: 1;
  }

  .nav-right {
    grid-column: 3;
  }

}

/* ================= STACKED CLAVES MOBILE ================= */

@media (max-width: 768px) {

  .stacked-mobile {
    position: relative;
  }

  .stacked-mobile .icon-card {
    position: sticky;
    top: 100px; /* distancia desde arriba */
    margin-bottom: 40px;
  }

}

@media (max-width: 768px) {

  .stacked-mobile .icon-card {
    background: white;
  }

}