:root{
  --bg:#0b0f0e;
  --panel:#0f1715;
  --text:#e7f0ed;
  --muted:#b9c7c2;
  --accent:#2fb67b;
  --accent-2:#7cc55a;
  --pill:#0c1412;
  --border:rgba(47,182,123,.85);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
  --header-h: 74px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, "Noto Sans", sans-serif;
  background: radial-gradient(900px 420px at 30% 10%, rgba(47,182,123,.28), transparent 55%),
              radial-gradient(800px 400px at 80% 25%, rgba(124,197,90,.22), transparent 55%),
              var(--bg);
  color:var(--text);
}
/* evita que el sticky tape el titulo al hacer click en anclas */
section[id]{ scroll-margin-top: calc(var(--header-h) + 18px); }

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), calc(100% - 40px)); margin-inline:auto; position:relative;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,14,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  height: var(--header-h);
  display:flex; align-items:center; gap:16px; justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 220px;
}
.brand img{ height:44px; width:auto; display:block; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.brand .name{ font-weight:800; letter-spacing:.2px; line-height:1.1; font-size:14px; }
.brand .name span{ display:block; font-weight:600; color: var(--muted); font-size:12px; margin-top:2px; }

.nav{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end;
}
.nav a{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12,20,18,.65);
  border: 1px solid rgba(47,182,123,.55);
  color: var(--text);
  font-weight:700;
  font-size: 13px;
  transition: .18s ease;
}
.nav a:hover{ background: rgba(47,182,123,.12); transform: translateY(-1px); }

/* Hero */
.hero{
  padding: 52px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:start;
}
.hero-card{
  background: linear-gradient(180deg, rgba(15,23,21,.86), rgba(15,23,21,.62));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  position:relative;
}
.hero-card::before{
  content:"";
  position:absolute; inset:-140px -120px auto auto;
  width: 360px; height: 360px;
  background: radial-gradient(circle at 30% 30%, rgba(124,197,90,.55), rgba(47,182,123,.22), transparent 65%);
  transform: rotate(22deg);
  pointer-events:none;
}
.hero-body{
  padding: 30px 28px;
  position:relative;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(231,240,237,.92);
  font-size: 12px;
}
.kicker i{
  width:10px; height:10px; border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(47,182,123,.15);
}
.hero-title{
  margin: 14px 0 8px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -0.02em;
  font-weight: 900;
}
.hero-title .accent{ color: var(--accent); }
.hero-sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}
.hero-meta{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-bottom: 18px;
}
.badge{
  display:inline-flex; gap:10px; align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(12,20,18,.55);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
  color: rgba(231,240,237,.92);
}
.badge svg{ width:16px; height:16px; opacity:.9; }

.cta{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top: 10px;
}
.btn{
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(12,20,18,.55);
  color: var(--text);
  font-weight: 800;
  transition: .18s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary{
  background: linear-gradient(90deg, rgba(47,182,123,.92), rgba(124,197,90,.92));
  border-color: rgba(47,182,123,.35);
  color: #082018;
}
.btn.primary:hover{ filter: brightness(1.04); }
.btn.ghost{
  border-color: rgba(47,182,123,.55);
}
.hero-art{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding: 0 14px 14px;
  min-height: 320px;
}
.hero-art .logo{
  width: min(884px, 120%);
  height:auto;
  display:block;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.45));
  transform: translateY(-16px);
}

.float{
  position:absolute;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.45));
  opacity: .96;
}
.float.tomate{ width: 180px; right: -12px; bottom: -12px; transform: rotate(-10deg); }
.float.pimiento{ width: 200px; right: -4px; top: 42px; transform: rotate(8deg); }
.float.hojas{ width: 240px; left: -10px; top: -16px; transform: rotate(-8deg); opacity:.75; }

/* Sections */
.section{
  padding: 34px 0;
}
.section .head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
  margin-bottom: 18px;
}
.section h2{
  margin:0;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.section p.lead{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(15,23,21,.62);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  padding: 16px;
}
.card h3{
  margin:0 0 8px;
  font-size: 16px;
}
.card p{ margin:0; color: var(--muted); font-size: 14px; line-height: 1.45; }

.contact-card p{ margin-top: 6px; margin-bottom: 12px; }
.contact-card .form-actions{ margin-top: 0; }
.contact-card .btn{ display:inline-flex; align-items:center; justify-content:center; }
.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}
.note{
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(47,182,123,.10);
  border: 1px solid rgba(47,182,123,.22);
  color: rgba(231,240,237,.92);
  font-weight: 650;
}

/* Form */
form{
  display:grid;
  gap: 10px;
}
.field{
  display:grid;
  gap:6px;
}
label{ font-size: 13px; color: rgba(231,240,237,.85); font-weight: 700; }
input, select, textarea{
  background: rgba(8,14,13,.75);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--text);
  outline:none;
}
textarea{ min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(47,182,123,.45);
  box-shadow: 0 0 0 4px rgba(47,182,123,.14);
}
.form-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 6px; }
.small{
  font-size: 12px; color: var(--muted); line-height: 1.45;
}

/* Footer */
.footer{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(11,15,14,.55);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items:start;
}
.footer h3{ margin:0 0 8px; }
.footer a:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; align-items:center; }
  .hero-art{ min-height: 260px; align-items:center; padding: 12px; }
.float.tomate{ width: 150px; right: -8px; bottom: -18px; }
  .float.pimiento{ width: 170px; right: -8px; top: 28px; }
  .grid-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .brand{ min-width: auto; }
}
@media (max-width: 620px){
  .header-inner{ height:auto; padding: 12px 0; align-items:flex-start; }
  .nav{ justify-content:flex-start; }
  :root{ --header-h: 110px; }
}
/* ====== Mejora visual por secciones ====== */
.section{
  padding: 62px 0; /* más aire entre secciones */
  position: relative;
  isolation: isolate;
}
/* divisor suave arriba de cada sección (excepto la primera visible) */
.section::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  opacity:.9;
}
/* detalle decorativo */
.section::after{
  content:"";
  position:absolute;
  left: 50%;
  top: -10px;
  width: 140px;
  height: 20px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(47,182,123,.35), transparent 70%);
  filter: blur(0.2px);
  opacity: .9;
  pointer-events:none;
}

/* etiqueta pequeña arriba del título */
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size: 12px;
  color: rgba(231,240,237,.80);
}
.section-tag::before{
  content:"";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(47,182,123,.12);
}

/* variación de fondo por sección */
.section-programa{
  background: radial-gradient(900px 420px at 15% 30%, rgba(47,182,123,.14), transparent 60%),
              radial-gradient(800px 380px at 85% 40%, rgba(124,197,90,.12), transparent 60%);
}
.section-empresas{
  background: radial-gradient(900px 420px at 70% 10%, rgba(47,182,123,.12), transparent 55%),
              radial-gradient(900px 420px at 10% 70%, rgba(124,197,90,.10), transparent 55%);
}
.section-registro{
  background: linear-gradient(180deg, rgba(47,182,123,.06), transparent 30%),
              radial-gradient(900px 420px at 15% 35%, rgba(47,182,123,.16), transparent 60%),
              radial-gradient(900px 420px at 85% 70%, rgba(124,197,90,.14), transparent 60%);
}
.section-contacto{
  background: radial-gradient(900px 420px at 55% 35%, rgba(255,255,255,.04), transparent 60%);
}

/* cards con más presencia */
.card{
  padding: 18px;
  border-radius: 20px;
}
.card:hover{
  border-color: rgba(47,182,123,.20);
  transform: translateY(-2px);
  transition: .18s ease;
}
.grid-3{ gap: 16px; }
.split{ gap: 16px; }
.section .head{ margin-bottom: 22px; }

/* “cinta” suave de fondo en algunos blocks */
.section-programa .card:nth-child(1),
.section-programa .card:nth-child(4){
  background: linear-gradient(180deg, rgba(47,182,123,.10), rgba(15,23,21,.62));
}
.section-empresas .card:nth-child(2),
.section-empresas .card:nth-child(5){
  background: linear-gradient(180deg, rgba(124,197,90,.10), rgba(15,23,21,.62));
}

/* un poquito más de aire en móvil */
@media (max-width: 980px){
  .section{ padding: 52px 0; }
}


/* Mapa responsive */
.map-wrap{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,14,13,.75);
}
.map-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.section-hotel{
  background: radial-gradient(900px 420px at 65% 30%, rgba(47,182,123,.10), transparent 60%),
              radial-gradient(900px 420px at 15% 65%, rgba(124,197,90,.10), transparent 60%);
}


/* ====== Menú móvil ====== */
.menu-toggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(12,20,18,.55);
  backdrop-filter: blur(10px);
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(231,240,237,.92);
  opacity:.92;
}
.nav-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 49; /* debajo del header (50) y debajo del nav (60) */
}
.nav-close{
  display:none;
  position:absolute;
  top: 14px;
  right: 14px;
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(12,20,18,.55);
  color: rgba(231,240,237,.92);
  font-size: 18px;
  cursor:pointer;
}
/* Drawer en móvil */
@media (max-width: 920px){
  .menu-toggle{ display:inline-flex; }
  .brand .name{ font-size: 13px; }
  .brand .name span{ font-size: 12px; }
  .nav{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 360px);
    padding: calc(var(--header-h) + 18px) 16px 16px 16px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    background: rgba(11,15,14,.92);
    border-left: 1px solid rgba(255,255,255,.08);
    transform: translateX(105%);
    transition: transform .22s ease;
    z-index: 60;
  }
  .nav a{
    width:100%;
    justify-content: center;
    text-align:center;
    padding: 14px 14px;
    font-size: 14px;
  }
  .nav-close{ display:inline-flex; align-items:center; justify-content:center; }
  body.menu-open .nav{ transform: translateX(0); }
  body.menu-open .nav-backdrop{ opacity:1; pointer-events:auto; }
}


/* ====== Hero art extras ====== */
.hero-art .semilla{
  width: clamp(220px, 34vw, 340px);
  right: -40px;
  bottom: -40px;
  opacity: .80;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
}
/* Ajustes de floats para que no tapen contenido */
.hero-art .tomate{ left: -10px; bottom: 40px; width: clamp(170px, 24vw, 260px); }
.hero-art .pimiento{ right: 20px; top: 90px; width: clamp(180px, 24vw, 260px); }
@media (max-width: 920px){
  .hero-art{ min-height: 360px; }
  .hero-art .hojas{ opacity:.55; }
  .hero-art .semilla{ opacity:.55; right:-60px; bottom:-60px; }
  .hero-art .pimiento{ right:-10px; top: 80px; }
  .hero-art .tomate{ left:-20px; bottom: 20px; }
}


/* ====== Decoraciones por sección ====== */
.decor{
  position:absolute;
  pointer-events:none;
  user-select:none;
  z-index: 0;
  opacity: .28;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
}
/* Asegura que el contenido esté encima */
.section .container > *:not(.decor){ position:relative; z-index: 1; }

.decor-pepino{
  width: clamp(220px, 26vw, 360px);
  right: -120px;
  top: 40px;
  transform: rotate(-12deg);
  opacity: .18;
}
.decor-berenjena{
  width: clamp(240px, 28vw, 380px);
  right: -140px;
  bottom: -60px;
  transform: rotate(10deg);
  opacity: .16;
}
.decor-hojas{
  width: clamp(260px, 30vw, 420px);
  left: -170px;
  top: 20px;
  opacity: .14;
}
.decor-semilla{
  width: clamp(240px, 30vw, 420px);
  left: -140px;
  bottom: -90px;
  opacity: .16;
}
@media (max-width: 920px){
  .decor-pepino, .decor-berenjena{ display:none; } /* evita saturar en móvil */
  .decor-hojas{ left:-220px; opacity:.10; }
  .decor-semilla{ left:-220px; opacity:.10; }
}


/* ====== Ajustes extra móvil ====== */
@media (max-width: 520px){
  .brand img{ width: 44px; height: 44px; }
  .hero-title{ font-size: 34px; }
  .cta{ flex-direction: column; align-items: stretch; }
  .cta .btn{ width: 100%; justify-content: center; }
}

/* ====== Tema poster (fondo tipo arte) ====== */
body.theme-poster{
  /* Base del póster */
  --poster-a: #0e7f73;       /* teal */
  --poster-b: #0a5f57;       /* teal oscuro */
  --poster-c: rgba(255,255,255,.85); /* brillo centro */

  background:
    radial-gradient(520px 520px at 62% 22%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(920px 620px at 50% 40%, rgba(255,255,255,.12), transparent 65%),
    url('../img/bg-teal-poster.jpg') center/cover no-repeat;
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-color: var(--poster-b);
color: rgba(255,255,255,.92);
}

/* Ajustes globales de lectura sobre fondo verde */
body.theme-poster .muted,
body.theme-poster .lead,
body.theme-poster p.small{
  color: rgba(255,255,255,.78) !important;
}

/* Header sobre verde */
body.theme-poster header{
  background: rgba(6, 30, 28, .38) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  backdrop-filter: blur(10px);
}
body.theme-poster .nav a{
  color: rgba(255,255,255,.92) !important;
  border-color: rgba(255,255,255,.14) !important;
  background: rgba(6,30,28,.28) !important;
}
body.theme-poster .nav a:hover{
  border-color: rgba(255,255,255,.26) !important;
  background: rgba(6,30,28,.38) !important;
}

/* Hero con rayos estilo póster */
body.theme-poster .hero{
  position: relative;
  background: transparent !important;
  overflow: hidden;
}
body.theme-poster .hero::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 60% 28%, rgba(255,255,255,.65), transparent 50%),
    repeating-conic-gradient(from -12deg at 60% 28%,
      rgba(255,255,255,.16) 0deg 2deg,
      rgba(255,255,255,0) 2deg 10deg);
  opacity: .75;
  filter: blur(.2px);
  pointer-events:none;
  z-index:0;
}
body.theme-poster .hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 60% 28%, rgba(255,255,255,.30), transparent 55%);
  pointer-events:none;
  z-index:0;
}
body.theme-poster .hero > .container{
  position: relative;
  z-index: 1;
}

/* Kicker de categorías */
body.theme-poster .hero-kicker{
  margin-top: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
}
body.theme-poster .hero-kicker .dot{
  opacity:.8;
  margin: 0 6px;
}

/* Pills y botones en hero */
body.theme-poster .hero .pill{
  background: rgba(6,30,28,.30) !important;
  border-color: rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.92) !important;
}
body.theme-poster .btn.ghost{
  background: rgba(6,30,28,.26) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.92) !important;
}
body.theme-poster .btn.ghost:hover{
  background: rgba(6,30,28,.36) !important;
  border-color: rgba(255,255,255,.26) !important;
}

/* Cards más “vidrio” */
body.theme-poster .card{
  background: rgba(6,30,28,.34) !important;
  border-color: rgba(255,255,255,.14) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
body.theme-poster .note{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.92) !important;
}

/* Separadores y fondos de secciones más suaves */
body.theme-poster .section::before{
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent) !important;
}
body.theme-poster .section::after{
  background: radial-gradient(closest-side, rgba(255,255,255,.16), transparent 70%) !important;
}
body.theme-poster .section-programa,
body.theme-poster .section-empresas,
body.theme-poster .section-registro,
body.theme-poster .section-contacto,
body.theme-poster .section-hotel{
  background: transparent !important;
}

/* Drawer menú mobile */
body.theme-poster .menu-toggle{
  border-color: rgba(255,255,255,.16) !important;
  background: rgba(6,30,28,.30) !important;
}
body.theme-poster .menu-toggle .bars,
body.theme-poster .menu-toggle .bars:before,
body.theme-poster .menu-toggle .bars:after{
  background: rgba(255,255,255,.92) !important;
}
body.theme-poster .nav-drawer{
  background: rgba(6,30,28,.92) !important;
  border-left: 1px solid rgba(255,255,255,.12) !important;
}
body.theme-poster .nav-backdrop{
  background: rgba(0,0,0,.40) !important;
}


/* Glow detrás del logo en el hero (estilo póster) */
body.theme-poster .hero-art{
  align-self: start;
}
body.theme-poster .hero-art::before{
  content:"";
  position:absolute;
  inset: -10% -10% -20% -10%;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.55), transparent 60%);
  filter: blur(1px);
  opacity: .9;
  pointer-events:none;
  z-index:0;
}
body.theme-poster .hero-art .logo{
  position: relative;
  z-index: 1;

}


/* Chips de categorías debajo del subtítulo */
.hero-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 4px;
}
.hero-chips span{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(6,30,28,.28);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .01em;
}

/* En tema claro, chips con fondo blanco */
body.theme-light .hero-chips span{
  background: rgba(255,255,255,.86);
  border-color: rgba(11,26,21,.12);
  color: rgba(11,26,21,.86);
}

/* Layout: split a una columna */
.split.single{ grid-template-columns: 1fr; }


/* ====== Cintillos ====== */
.cintillos{
  padding: 16px 0 10px;
  margin-top: 0;
}
.cintillo-box{
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(6,30,28,.34);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  padding: 14px 16px 10px;
  min-height: 66px;
  overflow: hidden;
}
.cintillo-item{
  position: absolute;
  inset: 12px 16px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease;
}
.cintillo-item.is-active{
  opacity: 1;
  transform: translateY(0);
}
.cintillo-dots{
  position: relative;
  z-index: 2;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.cintillo-dots .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}
.cintillo-dots .dot.active{
  background: rgba(255,255,255,.70);
}
@media (max-width: 640px){
  .cintillo-box{ min-height: 92px; }
  .cintillo-item{ inset: 12px 12px 28px; font-size: 14px; }
}

.programa-preview__image{
  display: flex;
  justify-content: center;
  align-items: center;
}

.programa-preview__image img{
  display: block;      /* quita espacios raros */
  max-width: 100%;     /* responsive */
  height: auto;
}
