/* ============================================================
   1.  RESET Y BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: var(--font-body, system-ui, sans-serif);
  color: var(--ink, #111);
  background: var(--paper, #fff);
  line-height: 1.5;
}
img, svg, video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display, inherit);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
p {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
}

/* ============================================================
   2.  VARIABLES Y TEMA OSCURO (por defecto)
   ============================================================ */
:root {
  --ink: #0a0a0c;
  --paper: #f5f5f2;
  --muted: #8a8a92;
  --line: rgba(245, 245, 242, .08);
  --glass: rgba(245, 245, 242, .04);
  --accent: #8b8ff5;
  --accent-2: #22d3ee;
  --font-display: "Inter Tight", sans-serif;
  --font-body: "Inter Tight", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

/* ============================================================
   3.  REVELADO (scroll animation)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   4.  ESTRUCTURA GLOBAL
   ============================================================ */
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  color: var(--paper);
  font-feature-settings: "ss01", "cv11";
}
::selection {
  background: var(--accent);
  color: var(--ink);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
}

/* ============================================================
   5.  NAVEGACIÓN FIJA
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px 0;
}
.nav .row {
  margin: 0 auto;
  max-width: 1280px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in oklab, var(--ink) 55%, transparent);
  backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* Menú escritorio */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-desktop a {
  margin-left: 22px;
  color: var(--muted);
  font-size: 13px;
  transition: color .3s;
}
.nav-desktop a:hover {
  color: var(--paper);
}

/* Acciones a la derecha */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-desktop {
  display: inline-flex;
}
.btn-mobile {
  display: none;
}

/* ============================================================
   6.  BOTÓN HAMBRUGUESA
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--paper);
  border-radius: 4px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   7.  MENÚ DESPLEGABLE (móvil)
   ============================================================ */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: color-mix(in oklab, var(--ink) 92%, transparent);
  backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 50;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.6);
  transition: opacity .3s ease, transform .3s ease;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.nav-dropdown.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  color: var(--paper);
  font-size: 16px;
  padding: 12px 8px;
  border-radius: 12px;
  transition: background .2s;
  font-weight: 500;
}
.nav-dropdown a:hover {
  background: color-mix(in oklab, var(--paper) 8%, transparent);
}
.nav-dropdown .btn-mobile {
  display: block;
  margin-top: 8px;
  text-align: center;
  background: var(--paper);
  color: var(--ink);
  padding: 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
}
.nav-dropdown .btn-mobile:hover {
  background: var(--accent);
  color: var(--ink);
}

/* ============================================================
   8.  BOTONES GENERALES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
  transition: transform .35s, background .3s, color .3s, box-shadow .3s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -12px rgba(139,143,245,.6);
}
.btn.ghost {
  background: var(--glass);
  color: var(--paper);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn.ghost:hover {
  background: color-mix(in oklab, var(--paper) 8%, transparent);
}

/* ============================================================
   9.  PILL
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--glass);
  backdrop-filter: blur(8px);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pu 2s infinite;
}
@keyframes pu {
  50% { opacity: .35; }
}

/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 48ch;
  margin-top: 16px;
}
.hero .orbit {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(139,143,245,.35), rgba(34,211,238,.2), rgba(139,143,245,.35));
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  animation: orb 20s linear infinite;
}
@keyframes orb {
  to { transform: rotate(360deg); }
}
.hero h1 {
  margin-top: 32px;
  font-size: clamp(56px, 9.5vw, 85px);
  line-height: .92;
  letter-spacing: -0.04em;
  font-weight: 500;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .cta-row {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
  max-width: 920px;
}
.hero-stats .s {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(20px);
}
.hero-stats .k {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.hero-stats .v {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.hero-stats .v em {
  font-style: normal;
  color: var(--accent);
  font-size: 14px;
  margin-left: 6px;
}

/* ============================================================
   11. SECCIÓN SERVICIOS (dentro del hero)
   ============================================================ */
.serv {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.serv .lhs p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 52ch;
}
.serv .lhs .tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.serv .lhs .tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(8px);
}
.serv .rhs {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(245,245,242,.05), rgba(245,245,242,.01));
  backdrop-filter: blur(20px);
}
.serv .rhs ul li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: baseline;
  transition: padding .3s;
}
.serv .rhs ul li:first-child {
  border-top: 0;
}
.serv .rhs ul li:hover {
  padding-left: 8px;
}
.serv .rhs ul li .i {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 13px;
}
.serv .rhs ul li b {
  font-weight: 500;
  font-size: 17px;
  display: block;
}
.serv .rhs ul li span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
  display: block;
  line-height: 1.55;
}
.notice {
  margin-top: 32px;
  border: 1px dashed color-mix(in oklab, var(--accent) 40%, var(--line));
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--paper);
  font-size: 14px;
  background: color-mix(in oklab, var(--accent) 6%, transparent);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.notice b {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-top: 2px;
}

/* ============================================================
   12. SECCIONES GENERALES (AJUSTE DE TAMAÑOS)
   ============================================================ */
section {
  padding: 180px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
}
h2.big {
  font-size: clamp(36px, 5vw, 72px); /* Antes: clamp(44px, 7vw, 110px) */
  line-height: 1.05; /* Antes: .98 */
  letter-spacing: -0.03em; /* Antes: -0.035em */
  font-weight: 500;
  max-width: 18ch;
  margin-top: 20px;
}
h2.big em {
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
}
.section-lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px; /* Antes: 19px */
  line-height: 1.7; /* Antes: 1.65 */
  max-width: 56ch;
}

/* ============================================================
   13. BENEFICIOS
   ============================================================ */
.benefits {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--paper) 5%, transparent), transparent);
  backdrop-filter: blur(18px);
  transition: transform .45s, border-color .3s;
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--accent) 60%, var(--line));
}
.benefit .n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.benefit h3 {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.benefit p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ============================================================
   SLIDESHOW - SOLO IMÁGENES (con controles: flechas, dots, expandir)
   ============================================================ */

.slideshow-wrapper {
  margin-top: 40px;
  width: 100%;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.slide-item {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000; /* Siempre negro, para que no se vea borde claro */
  padding: 0;
  border: none;
}

/* Eliminar overlay oscuro */
.slide-item::after {
  display: none;
}

/* Ocultar texto superpuesto (título, descripción, categoría) */
.slide-content {
  display: none;
}



/* ===== CONTROLES VISIBLES: flechas, dots, expandir ===== */

/* Flechas de navegación */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: color-mix(in oklab, var(--paper) 10%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--paper);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, opacity 0.3s;
  opacity: 0.7;
  user-select: none;
}
.slide-btn:hover {
  background: color-mix(in oklab, var(--paper) 20%, transparent);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}
.slide-btn.prev {
  left: 20px;
}
.slide-btn.next {
  right: 20px;
}

/* Puntos indicadores (dots) */
.slide-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  background: color-mix(in oklab, var(--ink) 60%, transparent);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.slide-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.slide-dots .dot.active {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--accent);
}

/* Botón de autoplay (pausa/play) */
.slide-autoplay {
  position: absolute;
  bottom: 24px;
  right: 20px; /* espacio para el botón de expandir (40px + gap) */
  z-index: 10;
  background: color-mix(in oklab, var(--paper) 10%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--paper);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-size: 18px;
}
.slide-autoplay:hover {
  background: color-mix(in oklab, var(--paper) 20%, transparent);
  transform: scale(1.05);
}
.slide-autoplay .pause,
.slide-autoplay .play {
  line-height: 1;
}

/* Botón de maximizar (expandir) */
.slide-expand {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  background: color-mix(in oklab, var(--paper) 10%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--paper);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.slide-expand:hover {
  background: color-mix(in oklab, var(--paper) 20%, transparent);
  transform: scale(1.05);
}
.slide-expand svg {
  width: 20px;
  height: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .slide-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .slide-btn.prev {
    left: 10px;
  }
  .slide-btn.next {
    right: 10px;
  }
  .slide-dots {
    bottom: 16px;
    padding: 6px 12px;
    gap: 8px;
  }
  .slide-dots .dot {
    width: 8px;
    height: 8px;
  }
  .slide-expand {
    width: 36px;
    height: 36px;
    bottom: 16px;
    right: 16px;
  }
  .slide-expand svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .slide-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .slide-btn.prev {
    left: 8px;
  }
  .slide-btn.next {
    right: 8px;
  }
  .slide-dots {
    bottom: 12px;
    padding: 4px 10px;
    gap: 6px;
  }
  .slide-dots .dot {
    width: 7px;
    height: 7px;
  }
  /* Ocultamos expandir en móviles muy pequeños para no saturar */
  .slide-expand {
    display: none;
  }
}

/* ============================================================
   FILTROS DEL SLIDESHOW
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  justify-content: left;
}

.filters button {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--glass);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.filters button:hover {
  color: var(--paper);
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 10%, var(--glass));
  transform: translateY(-2px);
}

.filters button.active {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
  box-shadow: 0 4px 16px -4px rgba(139, 143, 245, 0.3);
}

.filters button.active:hover {
  transform: none;
  box-shadow: 0 6px 24px -6px rgba(139, 143, 245, 0.5);
}

/* Botón de expandir */
.slide-expand {
  position: absolute;
  bottom: 24px;
  right: 78px; /* al lado del autoplay (40px + 16px gap) */
  z-index: 10;
  background: color-mix(in oklab, var(--paper) 10%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--paper);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.slide-expand:hover {
  background: color-mix(in oklab, var(--paper) 20%, transparent);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .slide-expand {
    right: 68px; /* ajuste para móvil */
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .slide-expand {
    display: none; /* ocultar en móviles muy pequeños para no saturar */
  }
}

/* Modal de imagen completa */
.modal-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-fullscreen.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-fullscreen-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-fullscreen-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.modal-fullscreen.open .modal-fullscreen-content img {
  opacity: 1;
}

.modal-fullscreen-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background: color-mix(in oklab, var(--paper) 10%, transparent);
  border: 1px solid var(--line);
  color: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-fullscreen-close:hover {
  background: color-mix(in oklab, var(--paper) 20%, transparent);
}

.modal-fullscreen-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: color-mix(in oklab, var(--paper) 10%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--paper);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.modal-fullscreen-nav:hover {
  background: color-mix(in oklab, var(--paper) 20%, transparent);
  transform: translateY(-50%) scale(1.05);
}

.modal-fullscreen-nav.prev {
  left: 20px;
}
.modal-fullscreen-nav.next {
  right: 20px;
}

@media (max-width: 768px) {
  .modal-fullscreen {
    padding: 16px;
  }
  .modal-fullscreen-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .modal-fullscreen-nav.prev {
    left: 8px;
  }
  .modal-fullscreen-nav.next {
    right: 8px;
  }
  .modal-fullscreen-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .modal-fullscreen-nav {
    display: none; /* ocultar flechas en móviles muy pequeños, se usa el slideshow para navegar */
  }
}


/* Responsive del slideshow */
@media (max-width: 768px) {
  .slideshow-container {
    aspect-ratio: 4 / 3;
  }
  .slide-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .slide-btn.prev {
    left: 10px;
  }
  .slide-btn.next {
    right: 10px;
  }
  .slide-dots {
    bottom: 16px;
    padding: 6px 12px;
    gap: 8px;
  }
  .slide-dots .dot {
    width: 8px;
    height: 8px;
  }
  .slide-autoplay {
    width: 36px;
    height: 36px;
    font-size: 16px;
    bottom: 16px;
    right: 16px;
  }
  /* Botón expandir: visible, al lado del autoplay */
  .slide-expand {
    width: 36px;
    height: 36px;
    bottom: 16px;
    right: 62px; /* 36px + 10px gap aprox */
  }
  .slide-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .slideshow-container {
    aspect-ratio: 1 / 1;
  }
  .slide-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .slide-btn.prev {
    left: 6px;
  }
  .slide-btn.next {
    right: 6px;
  }
  .slide-dots {
    bottom: 12px;
    padding: 4px 10px;
  }
  .slide-autoplay {
    width: 32px;
    height: 32px;
    font-size: 14px;
    bottom: 12px;
    right: 12px;
  }
  /* Botón expandir visible */
  .slide-expand {
    width: 32px;
    height: 32px;
    bottom: 12px;
    right: 54px; /* 32px + 10px gap */
  }
  .slide-content h3 {
    font-size: 20px;
  }
  .slide-content p {
    font-size: 13px;
  }
  /* Asegurar que no se oculten */
  .slide-expand {
    display: flex !important;
  }
  .slide-btn {
    display: flex !important;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .example-card .content h3 {
    font-size: 20px;
  }
  .example-card .content p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .examples-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .modal-gallery .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .modal-gallery .nav-btn.prev { left: 8px; }
  .modal-gallery .nav-btn.next { right: 8px; }
  .modal-gallery .bar .info .tag {
    display: none;
  }
}

/* ============================================================
   15. PROCESO
   ============================================================ */
.process {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .14em;
}
.step h3 {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ============================================================
   16. SUITE
   ============================================================ */
.suite .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.suite .head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 44ch;
}
.suite-soon {
  margin-top: 60px;
  border: 1px dashed var(--line);
  border-radius: 24px;
  padding: 64px 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(139,143,245,.06), transparent);
}
.suite-soon .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.suite-soon .tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pu 2s infinite;
}
.suite-soon h3 {
  margin-top: 24px;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.suite-soon p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 52ch;
}

/* ============================================================
   17. FAQ
   ============================================================ */
.faq {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 4px;
  transition: padding .3s;
}
.faq details[open] {
  padding: 32px 4px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 24px;
  transition: transform .3s;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}

/* ============================================================
   18. CONTACTO
   ============================================================ */
.contact {
  padding: 200px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(139,143,245,.2), transparent 60%);
  pointer-events: none;
}
.contact .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact p.sub {
  margin: 28px auto 40px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 18px;
}
.contact .form {
  width: 100%;
  max-width: 720px;
  margin: 0;
  text-align: left;
}

/* ============================================================
   19. FORMULARIO
   ============================================================ */
.form {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.form .full {
  grid-column: 1 / -1;
}
.form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.form input,
.form textarea {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--paper);
  font: inherit;
  transition: border-color .3s, background .3s;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 6%, var(--glass));
}
.form textarea {
  min-height: 140px;
  resize: vertical;
}
.form .submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.form .status {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .06em;
  min-height: 18px;
}

/* ============================================================
   20. MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--ink) 90%, transparent);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal .card {
  width: 100%;
  max-width: 1240px;
  height: 88vh;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0a0a0c;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(.98);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
  box-shadow: 0 60px 120px -30px rgba(0,0,0,.7);
}
.modal.open .card {
  transform: none;
}
.modal .bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #0d0d10;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.modal .bar .dots {
  display: flex;
  gap: 6px;
}
.modal .bar .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245,245,242,.15);
}
.modal .bar .dots span:nth-child(1) { background: #ff5f57; }
.modal .bar .dots span:nth-child(2) { background: #febc2e; }
.modal .bar .dots span:nth-child(3) { background: #28c840; }
.modal .bar .url {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  background: #000;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal .bar .url b {
  color: color-mix(in oklab, var(--paper) 80%, transparent);
  font-weight: 500;
}
.modal .bar .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mx, var(--accent));
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid color-mix(in oklab, var(--mx, var(--accent)) 50%, var(--line));
  border-radius: 999px;
}
.modal .close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.modal .close:hover {
  background: color-mix(in oklab, var(--paper) 10%, transparent);
}
.modal iframe {
  flex: 1;
  width: 100%;
  border: 0;
  background: #fff;
  display: block;
}

/* ============================================================
   21. WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px -6px rgba(37,211,102,.55);
  transition: transform .3s, box-shadow .3s;
  animation: wa-glow 2.4s ease-in-out infinite;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,.45), transparent 70%);
  z-index: -1;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 60px -6px rgba(37,211,102,.85);
}
.wa-fab svg {
  width: 30px;
  height: 30px;
}
@keyframes wa-glow {
  0%, 100% { box-shadow: 0 10px 40px -6px rgba(37,211,102,.55); }
  50% { box-shadow: 0 14px 60px -6px rgba(37,211,102,.9), 0 0 0 8px rgba(37,211,102,.08); }
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.25); opacity: 0; }
}

/* ============================================================
   22. FOOTER
   ============================================================ */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
footer a {
  display: block;
  padding: 6px 0;
  color: var(--paper);
  font-size: 14px;
}
footer a:hover {
  color: var(--accent);
}
footer .bot {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   23. THEME TOGGLE
   ============================================================ */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--paper);
  transition: background .3s, transform .3s;
}
.theme-btn:hover {
  background: color-mix(in oklab, var(--paper) 10%, transparent);
  transform: rotate(20deg);
}
.theme-btn svg {
  width: 16px;
  height: 16px;
}
.theme-btn .sun {
  display: none;
}
body.light .theme-btn .sun {
  display: block;
}
body.light .theme-btn .moon {
  display: none;
}

/* ============================================================
   24. MODO CLARO
   ============================================================ */
body.light {
  --ink: #f5f5f2;
  --paper: #0a0a0c;
  --muted: #5a5a62;
  --line: rgba(10,10,12,.10);
  --glass: rgba(10,10,12,.035);
}
body.light .nav .row {
  background: color-mix(in oklab, var(--ink) 70%, transparent);
}
body.light .filters button.active {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
body.light .modal {
  background: color-mix(in oklab, #0a0a0c 60%, transparent);
}
body.light .modal .card {
  background: #f5f5f2;
  border-color: rgba(10,10,12,.10);
}
body.light .modal .bar {
  background: #eaeae6;
  border-color: rgba(10,10,12,.10);
}
body.light .modal .bar .url {
  background: #fff;
  color: #5a5a62;
  border-color: rgba(10,10,12,.10);
}
body.light .modal .bar .url b {
  color: #0a0a0c;
}
body.light .modal .close {
  color: #0a0a0c;
  border-color: rgba(10,10,12,.15);
}

/* ============================================================
   ALIANZAS
   ============================================================ */
.alianzas {
  padding: 180px 0;
  border-top: 1px solid var(--line);
}
.alianzas-content {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.alianzas-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--paper) 4%, transparent), transparent);
  backdrop-filter: blur(12px);
  transition: transform .3s, border-color .3s;
}
.alianzas-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--accent) 50%, var(--line));
}
.alianzas-logo {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
}
.alianzas-card h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.alianzas-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.alianzas-card p strong {
  color: var(--paper);
  font-weight: 500;
}
.alianzas-card .btn {
  margin-top: 12px;
}
.alianzas-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.alianzas-benefits div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 15px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .3s;
}
.alianzas-benefits div:hover {
  background: color-mix(in oklab, var(--accent) 8%, var(--glass));
}
.alianzas-benefits span {
  font-size: 18px;
}

/* Responsive Alianzas */
@media (max-width: 900px) {
  .alianzas-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .alianzas-benefits {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   25. MEDIA QUERIES - RESPONSIVE
   ============================================================ */

/* Pantallas hasta 900px */
@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .btn-desktop {
    display: none;
  }
  .nav-dropdown {
    display: flex;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }
  .nav-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .hero .grid,
  .serv,
  .about .grid,
  .suite .head,
  footer .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .work .grid,
  .suite .grid {
    grid-template-columns: 1fr;
  }
  .about .marks {
    grid-template-columns: 1fr;
  }
  .deck {
    height: auto;
  }
  .deck .card {
    position: relative;
    inset: auto;
    margin-top: 16px;
    transform: none !important;
    opacity: 1 !important;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .examples {
    grid-template-columns: 1fr;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .modal {
    padding: 12px;
  }
  .modal .card {
    height: 92vh;
  }
  .modal .bar .url {
    display: none;
  }
  .wa-fab {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

/* Pantallas hasta 600px */
@media (max-width: 600px) {
  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    max-width: 100% !important;
    gap: 12px !important;
  }
  .hero-stats .s {
    flex: 1 1 auto !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
  }
  .hero-stats .k {
    font-size: 11px !important;
    flex-shrink: 0 !important;
  }
  .hero-stats .v {
    white-space: normal !important;
    font-size: 24px !important;
    margin-top: 0 !important;
    line-height: 1.2 !important;
    flex: 1 !important;
  }
  .hero-stats .v em {
    font-size: 14px !important;
    margin-left: 4px !important;
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 60px);
  }
  h2.big {
    font-size: clamp(32px, 8vw, 44px);
  }
  .contact h2.big {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.1;
    margin-top: 10px;
  }
  .serv .rhs {
    padding: 20px;
  }
  .serv .rhs ul li {
    padding: 14px 0;
  }
  .notice {
    flex-direction: column;
    align-items: flex-start;
  }
  .suite .head {
    gap: 30px;
  }
  footer .grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  footer .grid > div:first-child {
    grid-column: 1 / -1;
  }
  .nav .row {
    padding: 10px 18px;
  }
  .hamburger {
    width: 24px;
    height: 18px;
  }
  .nav-dropdown {
    padding: 16px;
    top: calc(100% + 8px);
  }
  .nav-dropdown a {
    font-size: 15px;
    padding: 10px 6px;
  }
  .nav-dropdown .btn-mobile {
    font-size: 14px;
    padding: 12px;
  }
}

/* ============================================================
   CONTROLES DEL SLIDESHOW (siempre oscuros)
   ============================================================ */

/* Flechas de navegación */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, opacity 0.3s;
  opacity: 0.8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.slide-btn:hover {
  background: rgba(0, 0, 0, 0.85) !important;
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}
.slide-btn.prev { left: 20px; }
.slide-btn.next { right: 20px; }

/* Puntos indicadores (dots) */
.slide-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.slide-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.slide-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* Botón de maximizar (expandir) */
.slide-expand {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.slide-expand:hover {
  background: rgba(0, 0, 0, 0.85) !important;
  transform: scale(1.05);
}
.slide-expand svg {
  width: 20px;
  height: 20px;
}

/* Botón de autoplay (pausa/play) */
.slide-autoplay {
  position: absolute;
  bottom: 24px;
  right: 78px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.slide-autoplay:hover {
  background: rgba(0, 0, 0, 0.85) !important;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .slide-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .slide-btn.prev { left: 10px; }
  .slide-btn.next { right: 10px; }
  .slide-dots {
    bottom: 16px;
    padding: 6px 12px;
    gap: 8px;
  }
  .slide-dots .dot {
    width: 8px;
    height: 8px;
  }
  .slide-expand {
    width: 36px;
    height: 36px;
    bottom: 16px;
    right: 16px;
  }
  .slide-expand svg {
    width: 16px;
    height: 16px;
  }
  .slide-autoplay {
    width: 36px;
    height: 36px;
    bottom: 16px;
    right: 68px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .slide-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .slide-btn.prev { left: 8px; }
  .slide-btn.next { right: 8px; }
  .slide-dots {
    bottom: 12px;
    padding: 4px 10px;
    gap: 6px;
  }
  .slide-dots .dot {
    width: 7px;
    height: 7px;
  }

  /* Botón de maximizar (expandir) – visible y más pequeño */
  .slide-expand {
    width: 32px;
    height: 32px;
    bottom: 12px;
    right: 56px; /* al lado del autoplay */
    display: flex !important; /* forzamos visibilidad */
  }
  .slide-expand svg {
    width: 14px;
    height: 14px;
  }

  /* Botón de autoplay – visible y más pequeño */
  .slide-autoplay {
    width: 32px;
    height: 32px;
    bottom: 12px;
    right: 12px;
    font-size: 14px;
    display: flex !important; /* forzamos visibilidad */
  }
}