/* ==========================================
   3D IMPRESIÓN WORLD — styles.css v3
   Paleta: Blanca/gris claro · Acento cian #29A9BE
   Fuentes: Nunito (body) + Exo 2 (títulos)
   ========================================== */

/* ---- VARIABLES ---- */
:root {
  --cyan:      #29A9BE;
  --cyan-d:    #1f8fa3;
  --cyan-l:    #e6f7fa;
  --green:     #25D366;
  --white:     #ffffff;
  --bg:        #ffffff;
  --bg-light:  #f7f9fc;
  --text:      #1a2230;
  --text-2:    #4a5568;
  --text-3:    #8896a7;
  --border:    #e4e9f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius:    14px;
  --radius-lg: 22px;
  --trans:     0.25s ease;
  --font-t:    'Exo 2', sans-serif;
  --font-b:    'Nunito', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-t); line-height: 1.2; color: var(--text); }
a { text-decoration: none; color: inherit; transition: var(--trans); }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- LAYOUT ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.bg-light { background: var(--bg-light); }

/* ---- TAG ---- */
.tag {
  display: inline-block;
  background: var(--cyan-l); color: var(--cyan);
  font-family: var(--font-t); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(41,169,190,0.25);
  margin-bottom: 14px;
}

/* ---- SECTION HEAD ---- */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 900; margin-bottom: 14px; }
.sec-head p { color: var(--text-2); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ---- FADE UP ---- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.d2 { transition-delay: 0.12s; }

/* ---- BOTONES ---- */
.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: #fff;
  font-family: var(--font-t); font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
  transition: var(--trans);
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.38); }
.btn-wa.small { padding: 10px 20px; font-size: 0.9rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: #fff;
  font-family: var(--font-t); font-weight: 700; font-size: 1rem;
  padding: 13px 26px; border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  transition: var(--trans);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.65); }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo: blanco sobre hero oscuro, color original sobre navbar blanco */
.logo-img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.navbar.solid .logo-img { filter: none; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-t); font-weight: 600; font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.navbar.solid .nav-links a { color: var(--text-2); }
.nav-links a:hover { color: #fff; }
.navbar.solid .nav-links a:hover { color: var(--cyan); }

.nav-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cyan); color: #fff !important;
  font-weight: 700 !important; padding: 9px 20px; border-radius: 100px;
  box-shadow: 0 3px 12px rgba(41,169,190,0.3);
}
.nav-btn:hover { background: var(--cyan-d) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); }
.navbar.solid .hamburger span { background: var(--text); }

/* ---- DRAWER MÓVIL ---- */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.overlay.show { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed; top: 0; right: -100%; width: min(300px,80vw); height: 100vh;
  background: var(--white); z-index: 1200;
  padding: 80px 28px 40px;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.drawer.open { right: 0; }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--bg-light); border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--text-2);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.drawer ul { display: flex; flex-direction: column; gap: 4px; }
.drawer-link {
  display: block; padding: 13px 0;
  font-family: var(--font-t); font-size: 1.1rem; font-weight: 700; color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.drawer-link:hover { color: var(--cyan); }
.drawer-wa {
  display: block; margin-top: 20px;
  background: var(--green); color: #fff;
  text-align: center; padding: 14px; border-radius: 100px;
  font-family: var(--font-t); font-weight: 700;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
  /* Fondo elegante mientras carga el video */
  background: linear-gradient(140deg, #0b2232 0%, #0d3245 35%, #0a3d52 65%, #0c2a3a 100%);
}

/* Patrón de puntos sutiles sobre el fondo */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(41,169,190,0.13) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

/* Video de fondo */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 1;
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
/* Overlay semitransparente sobre el video */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    rgba(8,28,44,0.82) 0%,
    rgba(8,28,44,0.55) 55%,
    rgba(41,169,190,0.15) 100%
  );
}

/* Contenido del hero — encima del video */
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
}
.hero-text { max-width: 680px; }

/* Chips: ubicación + envíos */
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 24px;
}
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-t); font-weight: 700; font-size: 0.82rem;
  padding: 6px 16px; border-radius: 100px;
}
.chip-loc {
  background: rgba(41,169,190,0.18); color: rgba(255,255,255,0.92);
  border: 1px solid rgba(41,169,190,0.38);
}
.chip-ship {
  background: rgba(37,211,102,0.18); color: #adf0c4;
  border: 1px solid rgba(37,211,102,0.38);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; margin-bottom: 22px;
  letter-spacing: -0.02em; color: #fff;
}
.hl { color: var(--cyan); }

.hero-desc {
  color: rgba(255,255,255,0.80); font-size: 1.12rem;
  max-width: 540px; margin-bottom: 28px; line-height: 1.78;
}
.hero-desc strong { color: #fff; font-weight: 800; }

/* Badges de confianza */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.78);
  font-family: var(--font-t); font-weight: 600; font-size: 0.8rem;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
}
.badge-cyan {
  background: rgba(41,169,190,0.2); color: #7ddde8;
  border-color: rgba(41,169,190,0.38);
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Estadísticas */
.hero-stats { display: flex; align-items: center; gap: 20px; }
.hstat { display: flex; flex-direction: column; }
.hstat strong { font-family: var(--font-t); font-size: 1.5rem; font-weight: 900; color: var(--cyan); }
.hstat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.hstat-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }

/* ==========================================
   SERVICIOS
   ========================================== */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* 5ta card centrada */
.srv-card:nth-child(4) { grid-column: 1; }
.srv-card:nth-child(5) { grid-column: 2; }

.srv-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.srv-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.srv-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10; background: var(--bg-light);
}
.srv-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.srv-card:hover .srv-img img { transform: scale(1.05); }

/* Fallback cuando la imagen no existe */
.srv-img.no-img {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cyan-l) 0%, var(--bg-light) 100%);
}
.srv-img.no-img::after { content: '🖨️'; font-size: 3rem; opacity: 0.35; }

.srv-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--cyan); color: #fff;
  font-family: var(--font-t); font-weight: 700; font-size: 0.72rem;
  padding: 4px 12px; border-radius: 100px;
}

.srv-body { padding: 22px 24px 26px; }
.srv-ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ico-cyan   { background: var(--cyan-l); color: var(--cyan); }
.ico-green  { background: #eafaf2; color: #1ea854; }
.ico-orange { background: #fff4e8; color: #d97706; }
.ico-purple { background: #f3eeff; color: #7c3aed; }

.srv-body h3 { font-size: 1.08rem; font-weight: 900; margin-bottom: 9px; }
.srv-body p  { font-size: 0.91rem; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.srv-link {
  font-family: var(--font-t); font-weight: 700; font-size: 0.88rem;
  color: var(--cyan); display: inline-block; transition: var(--trans);
}
.srv-link:hover { color: var(--cyan-d); transform: translateX(3px); }

/* ==========================================
   CTA STRIP
   ========================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--text) 0%, #253044 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-strip h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; color: #fff; }
.cta-strip p  { color: rgba(255,255,255,0.65); margin-top: 8px; }
.cta-strip strong { color: rgba(255,255,255,0.9); }

/* ==========================================
   CÓMO FUNCIONA
   ========================================== */
.steps { display: flex; align-items: flex-start; gap: 12px; }
.step {
  flex: 1; text-align: center; padding: 28px 20px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  border-radius: 50%;
  background: var(--cyan); color: #fff;
  font-family: var(--font-t); font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 16px;
  box-sizing: content-box;
  line-height: 1;
}
.step h4 { font-size: 1rem; font-weight: 900; margin-bottom: 8px; }
.step p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }
.step-arr { font-size: 1.5rem; color: var(--text-3); flex-shrink: 0; align-self: center; padding-top: 16px; }

/* ==========================================
   NOSOTROS
   ========================================== */
.about-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: center; }
.about-img { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.about-img img {
  border-radius: var(--radius-lg);
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-pill {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--cyan); color: #fff;
  font-family: var(--font-t); font-weight: 900; font-size: 1rem;
  text-align: center; line-height: 1.3; padding: 14px 18px;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.about-txt h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; margin-bottom: 20px; }
.about-txt .lead { font-size: 1.08rem; font-weight: 700; margin-bottom: 14px; }
.about-txt > p { color: var(--text-2); margin-bottom: 28px; line-height: 1.8; }

.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; }
.ck {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan); color: #fff;
  font-size: 0.75rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-list strong { font-family: var(--font-t); font-size: 0.95rem; }
.check-list div { font-size: 0.92rem; color: var(--text-2); }

/* ==========================================
   CONTACTO
   ========================================== */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start; }

.contact-form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow);
}
.contact-form-box h3 {
  font-size: 1.2rem; font-weight: 800; margin-bottom: 26px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.fg label { font-family: var(--font-t); font-size: 0.88rem; font-weight: 700; }
.fg input, .fg textarea {
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 13px 16px;
  font-family: var(--font-b); font-size: 0.97rem; color: var(--text);
  outline: none; resize: none; transition: var(--trans);
}
.fg input:focus, .fg textarea:focus {
  border-color: var(--cyan); background: #fff;
  box-shadow: 0 0 0 3px rgba(41,169,190,0.1);
}
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--cyan); color: #fff;
  font-family: var(--font-t); font-weight: 800; font-size: 1.02rem;
  padding: 15px; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(41,169,190,0.3); transition: var(--trans);
}
.btn-submit:hover { background: var(--cyan-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(41,169,190,0.4); }

.contact-info-box { display: flex; flex-direction: column; gap: 14px; }
.contact-info-box h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }

.info-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; transition: var(--trans);
}
a.info-card { cursor: pointer; }
a.info-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.ic-green:hover { border-color: var(--green); }
.ic-blue:hover  { border-color: var(--cyan); }
.ic-gray        { cursor: default; }
.ic-gray:hover  { transform: none !important; box-shadow: none !important; border-color: var(--border) !important; }

.ic-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-green { background: #eafaf2; color: var(--green); }
.icon-blue  { background: var(--cyan-l); color: var(--cyan); }
.icon-gray  { background: var(--bg-light); color: var(--text-3); }

.ic-txt { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ic-txt strong { font-family: var(--font-t); font-size: 0.95rem; font-weight: 800; }
.ic-txt span   { font-size: 0.88rem; color: var(--text-2); }
.ic-txt em     { font-style: normal; font-size: 0.78rem; color: var(--text-3); }
.ic-arr { font-size: 1.1rem; color: var(--text-3); transition: var(--trans); }
a.info-card:hover .ic-arr { color: var(--cyan); transform: translateX(4px); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: var(--text); color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Logo del footer: siempre blanco sobre fondo oscuro */
.footer-logo { height: 38px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav strong, .footer-contact strong {
  color: #fff; font-family: var(--font-t); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px;
}
.footer-nav a, .footer-contact a { font-size: 0.92rem; color: rgba(255,255,255,0.55); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--cyan); }

.footer-bottom { padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ==========================================
   WHATSAPP FLOTANTE
   ========================================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 900; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--trans);
}
.wa-float:hover { background: #1db954; transform: scale(1.1); }
.wa-float::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: wa-pulse 2.5s infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 0; }
}
.wa-tip {
  position: absolute; right: 68px;
  background: var(--text); color: #fff;
  font-family: var(--font-t); font-size: 0.82rem; font-weight: 700;
  padding: 7px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transform: translateX(6px); transition: var(--trans);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero { min-height: 90vh; padding: 110px 0 70px; }
  .hero-chips { justify-content: center; }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-desc { margin: 0 auto 28px; }
  .hero-badges { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-pill { right: 16px; }
  .steps { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .step { width: calc(50% - 20px); min-width: 180px; }
  .step-arr { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-card:nth-child(4) { grid-column: auto; }
  .srv-card:nth-child(5) { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-wrap { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .srv-grid { grid-template-columns: 1fr; }
  .srv-card:nth-child(5) { max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-wa, .btn-ghost { justify-content: center; }
  .step { width: 100%; }
  h1 { font-size: 2.1rem; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
}

/* ==========================================
   CARRUSEL NOSOTROS — responsive
   ========================================== */
.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  /* Formato portrait en desktop, landscape en mobile */
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: var(--bg-light);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* Puntos indicadores */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.cdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none; cursor: pointer;
  padding: 0; flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cdot.active {
  background: #fff;
  transform: scale(1.35);
}

/* En tablet y mobile: ratio más horizontal */
@media (max-width: 1024px) {
  .carousel { aspect-ratio: 4/3; }
}
@media (max-width: 520px) {
  .carousel { aspect-ratio: 16/10; border-radius: var(--radius); }
}
