/* =========================
   PALETA (basada en tu imagen)
   Principal: #003080
========================= */
:root{
  --brand: #003080;
  --brand-2: #0b3ea8;     /* azul un poco más vivo */
  --brand-dark: #00245f;  /* azul más oscuro */
  --bg: #0b1020;          /* fondo muy oscuro azulado */
  --panel: #0f1730;       /* tarjetas */
  --panel-2: #0c1328;
  --text: #edf2ff;
  --muted: rgba(237,242,255,.72);
  --line: rgba(255,255,255,.10);
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 0%, rgba(0,48,128,.35), transparent 60%),
              radial-gradient(1000px 650px at 80% 10%, rgba(11,62,168,.25), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,16,32,.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark{
  background: transparent;
  border: none;
  width: auto;
  height: auto;
}


.brand-logo{
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;   /* ← aquí redondeas */
}




.brand-text strong{
  display: block;
  letter-spacing: .2px;
  font-size: 14px;
}
.brand-text small{
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

/* Nav desktop */
.main-nav{
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-nav a{
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(237,242,255,.9);
  transition: transform .12s ease, background .12s ease;
}
.main-nav a:hover{
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

/* Toggle móvil */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(237,242,255,.92);
  margin: 4px auto;
  border-radius: 2px;
}

/* =========================
   BOTONES
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(237,242,255,.95);
  font-weight: 600;
  font-size: 13px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}

.btn-primary{
  border: 1px solid rgba(0,48,128,.55);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 36px rgba(0,48,128,.28);
}
.btn-primary:hover{
  border-color: rgba(0,48,128,.75);
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}

.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,.14);
}

/* =========================
   HERO
========================= */
.hero{
  padding: 56px 0 26px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 18px;
  align-items: stretch;
}
.pill{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  color: rgba(237,242,255,.9);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,48,128,.18);
  border: 1px solid rgba(0,48,128,.30);
  margin: 0 0 12px;
}
.hero-copy h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  max-width: 56ch;
}
.hero-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.stat{
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}
.stat strong{
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
.stat span{
  color: var(--muted);
  font-size: 12px;
}

.hero-card .card{
  height: 100%;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card h3{ margin: 0 0 10px; font-size: 14px; }
.checklist{
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.link{
  color: rgba(237,242,255,.92);
  font-weight: 700;
  font-size: 13px;
  opacity: .95;
}
.link:hover{ text-decoration: underline; }


/* =========================
   HERO SLIDER
========================= */

.hero-slider{
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slide{
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active{
  opacity: 1;
}

.hero-overlay{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.45) 40%,
    rgba(0,0,0,.2) 70%,
    transparent 100%
  );
}

.hero-content{
  color: white;
  max-width: 650px;
}

.hero-content h1{
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
  background: #ffffff;
  padding: 100px 0;
}

.about-container{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-tag{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #003080;
  margin-bottom: 20px;
}

.about-left h2{
  font-size: 36px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 25px;
}

.about-left p{
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-image{
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px){
  .about-right{
    display: none;
  }

  .about-container{
    grid-template-columns: 1fr;
  }
}


/* =========================
   WHY SECTION
========================= */

.why-section{
  background: #f5f7fb;
  padding: 110px 0;
}

.why-header{
  max-width: 850px;
  margin-bottom: 70px;
}

.why-tag{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #003080;
  margin-bottom: 20px;
}

.why-header h2{
  font-size: 38px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.why-header p{
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.why-card{
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.why-card h3{
  font-size: 20px;
  margin-bottom: 15px;
  color: #003080;
}

.why-card p{
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 900px){
  .why-grid{
    grid-template-columns: 1fr;
  }

  .why-header h2{
    font-size: 30px;
  }
}
/* =========================
   SECCIONES
========================= */
.section{
  padding: 54px 0;
}
.section-alt{
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.02), transparent);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  max-width: 75ch;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.panel{
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}
.panel h3{ margin: 0 0 8px; font-size: 15px; }
.panel p{ margin: 0; color: var(--muted); font-size: 13px; }

.service, .post{
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  transition: transform .12s ease, background .12s ease;
}
.service:hover, .post:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
}
.icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  background: rgba(0,48,128,.22);
  border: 1px solid rgba(0,48,128,.35);
  margin-bottom: 10px;
}
.service h3, .post h3{
  margin: 0 0 8px;
  font-size: 15px;
}
.service p, .post p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.meta{
  margin: 0 0 8px !important;
  color: rgba(237,242,255,.65) !important;
  font-size: 12px !important;
}

/* =========================
   CONTACTO
========================= */
.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  align-items: start;
}

.form{
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form label{
  display: grid;
  gap: 7px;
  font-size: 12px;
  color: rgba(237,242,255,.85);
}
.form input, .form textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(0,48,128,.55);
  box-shadow: 0 0 0 4px rgba(0,48,128,.18);
}
.form .full{ grid-column: 1 / -1; }
.actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.info .divider{
  height: 1px;
  background: var(--line);
  margin: 12px 0;
}
.muted{ color: var(--muted); }

/* =========================
   FOOTER
========================= */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(0,0,0,.12);
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-inner p{
  margin: 0;
  color: rgba(237,242,255,.72);
  font-size: 12px;
}
.footer-links{
  display: flex;
  gap: 10px;
}
.footer-links a{
  font-size: 12px;
  color: rgba(237,242,255,.72);
}
.footer-links a:hover{ text-decoration: underline; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav-toggle{ display: inline-block; }
  .main-nav{
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 70px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(11,16,32,.92);
    border: 1px solid rgba(255,255,255,.10);
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow);
  }
  .main-nav.open{ display: flex; }
  .main-nav a{ width: 100%; }
  .form{ grid-template-columns: 1fr; }
}




/* =========================
   SERVICES SECTION
========================= */

.service-link{ padding: 0; }
.service-card-link{
  display: block;
  padding: 18px 18px 16px;
  height: 100%;
}
.service-more{
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(237,242,255,.9);
  opacity: .9;
}

/* =========================
   SERVICE DETAIL PAGE
========================= */

/* =========================
   Coordinación de Transporte Internacional INICIO
========================= */
.service-detail{
  padding: 110px 0;
  background: #ffffff;
}

.service-detail-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}

.service-detail-text h1{
  margin: 12px 0 14px;
  font-size: 40px;
  line-height: 1.1;
  color: #111;
}

.service-detail-text p{
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 16px;
}

.service-detail-highlight{
  padding: 14px 16px;
  border-left: 4px solid #003080;
  background: #f5f7fb;
  border-radius: 12px;
}

.service-detail-media{
  position: sticky;
  top: 100px;
}

.service-detail-img{
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

/* Responsive */
@media (max-width: 900px){
  .service-detail-grid{
    grid-template-columns: 1fr;
  }
  .service-detail-media{
    position: static;
  }
  .service-detail-text h1{
    font-size: 32px;
  }
}

/* =========================
   Coordinación de Transporte Internacional FIN
========================= */

.services-section{
  padding: 110px 0;
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(0,48,128,.35), transparent 60%),
    radial-gradient(800px 450px at 85% 25%, rgba(11,62,168,.22), transparent 55%),
    linear-gradient(180deg, #07122a 0%, #050c1a 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.services-header{
  max-width: 860px;
  margin-bottom: 55px;
}

.services-tag{
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(237,242,255,.9);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,48,128,.20);
  border: 1px solid rgba(0,48,128,.35);
  margin-bottom: 18px;
}

.services-header h2{
  color: #edf2ff;
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.services-header p{
  margin: 0;
  color: rgba(237,242,255,.72);
  font-size: 16px;
  line-height: 1.7;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card{
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}

/* brillo suave */
.service-card::before{
  content: "";
  position: absolute;
  inset: -120px;
  background: radial-gradient(circle at 30% 20%, rgba(0,48,128,.35), transparent 55%);
  opacity: 0;
  transition: opacity .2s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(0,48,128,.55);
  background: rgba(255,255,255,.06);
  box-shadow: 0 22px 55px rgba(0,0,0,.45);
}

.service-card:hover::before{
  opacity: 1;
}

.service-card h3{
  position: relative;
  margin: 0 0 8px;
  font-size: 15px;
  color: rgba(237,242,255,.95);
  line-height: 1.25;
}

.service-card p{
  position: relative;
  margin: 0;
  font-size: 13px;
  color: rgba(237,242,255,.70);
  line-height: 1.6;
}

.service-card.highlight{
  border-color: rgba(0,48,128,.65);
  background: rgba(0,48,128,.18);
}

.services-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Responsive */
@media (max-width: 980px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .services-grid{ grid-template-columns: 1fr; }
  .services-header h2{ font-size: 30px; }
}

/* =========================
   BOTÓN WHATSAPP VERDE
========================= */

/* =========================
   WHATSAPP TRANSPARENTE EN HOME
========================= */

.home-page .btn-whatsapp{
  background: transparent;
  border: 2px solid #ffffff;
  box-shadow: none;
}

.home-page .btn-whatsapp:hover{
  background: #25D366;
  border-color: #25D366;
}
/* BOTÓN WHATSAPP BASE (PÁGINAS INTERNAS) */
.btn-whatsapp{
  width: 56px;
  height: 56px;
  background: #25D366;
  border: none;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all .25s ease;
  box-shadow: 0 8px 20px rgba(37,211,102,.25);
}

.btn-whatsapp:hover{
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ICONO */
.whatsapp-icon{
  width: 30px;      /* ← más grande */
  height: 30px;
  object-fit: contain;
}

.typing-cursor::after{
  content: "|";
  margin-left: 4px;
  animation: blink 1s infinite;
}
@keyframes blink{
  0%,50%{opacity:1;}
  51%,100%{opacity:0;}
}






/* =========================
   SECCIÓN ADUANAS
========================= */

.aduanas-section{
  background: #ffffff;
  padding: 100px 0;
}

.aduanas-header{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.aduanas-tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #003080;
  margin-bottom: 14px;
}

.aduanas-header h2{
  font-size: 36px;
  margin-bottom: 18px;
  color: #111;
}

.aduanas-header p{
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.aduanas-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.aduana-item{
  background: #f4f7fb;
  padding: 18px 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  color: #003080;
  text-align: center;
  transition: all .25s ease;
  border: 1px solid #e6ecf5;
}

.aduana-item:hover{
  background: #003080;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,48,128,.15);
}










/* =========================
   SECCIÓN RUTAS
========================= */

.rutas-section{
  background: linear-gradient(135deg, #07122a 0%, #001f4d 100%);
  padding: 110px 0;
}

.rutas-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.rutas-tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #8fb3ff; /* azul claro para contraste */
  margin-bottom: 14px;
}

.rutas-header h2{
  font-size: 38px;
  color: #ffffff;
  margin: 0 0 16px;
}

.rutas-header p{
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  line-height: 1.7;
}

/* GRID */
.rutas-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* TARJETAS */
.ruta-card{
  display: block;
  padding: 32px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: #ffffff;
  text-decoration: none;
  transition: all .3s ease;
}

.ruta-card h3{
  margin: 0 0 12px;
  font-size: 22px;
  color: #ffffff;
}

.ruta-card p{
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}

.ruta-more{
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  color: #8fb3ff;
}

/* HOVER PREMIUM */
.ruta-card:hover{
  transform: translateY(-8px);
  background: #ffffff;
  color: #003080;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.ruta-card:hover h3{
  color: #003080;
}

.ruta-card:hover p{
  color: #444;
}

.ruta-card:hover .ruta-more{
  color: #003080;
}

@media (max-width: 900px){
  .rutas-cards{ grid-template-columns: 1fr; }
  .rutas-header h2{ font-size: 30px; }
}











/* Cursor tipo máquina de escribir */
.typing-cursor::after{
  content: "▍";
  margin-left: 4px;
  opacity: 1;
  animation: blink .9s infinite;
}

@keyframes blink{
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Un poquito más suave la entrada del contenido */
.hero-content{
  transform: translateY(2px);
}

/* Botones ocultos hasta que termine el typing */
.hero-actions{
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

.hero-actions.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}





/* =========================
   THANKS PAGE - CENTRADO REAL (FORZADO)
========================= */
body.thanks-page{
  min-height: 100svh;      /* mejor que 100vh en algunos navegadores */
  display: flex;
  flex-direction: column;
}

body.thanks-page .site-header,
body.thanks-page .site-footer{
  flex: 0 0 auto;
}

body.thanks-page main.thanks-wrap{
  flex: 1 1 auto;
  display: grid;
  place-items: center;     /* centra vertical y horizontal */
  padding: 40px 0;
}

body.thanks-page main.thanks-wrap > .container{
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

body.thanks-page .thanks-card{
  width: 100%;
  max-width: 720px;
  margin: 0;
}






/* =========================
   FLECHAS + DOTS SLIDER
========================= */

.hero-slider .slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;

  display: grid;
  place-items: center;

  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(6px);
}

.hero-slider .slider-arrow:hover{
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.30);
}

.hero-slider .slider-arrow.prev{ left: 14px; }
.hero-slider .slider-arrow.next{ right: 14px; }

/* Dots abajo */
.hero-slider .slider-dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 20;

  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;

  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}

.hero-slider .slider-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;

  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 0;
}

.hero-slider .slider-dot.active{
  background: #fff;
  transform: scale(1.2);
}

/* Opcional: ocultar flechas en móvil si estorban */
@media (max-width: 640px){
  .hero-slider .slider-arrow{
    width: 40px;
    height: 40px;
  }
}


/* =========================
   ARREGLAR VISIBILIDAD FLECHAS
========================= */

.hero-slider{
  position: relative;
}

.hero-slider .slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999; /* 🔥 importante */
  display: flex; /* fuerza visibilidad */
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 28px;
  border: none;
  cursor: pointer;
}

.hero-slider .slider-arrow.prev{
  left: 20px;
}

.hero-slider .slider-arrow.next{
  right: 20px;
}

.hero-slider .slider-arrow:hover{
  background: rgba(0,0,0,.75);
}