:root{
  --bg: #070a16;
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.14);
  --input-bg: rgba(255,255,255,.06);
  --input-border: rgba(255,255,255,.16);
  --watermark-opacity: .045;
  --accent-shadow-alpha: .14;
  --accent-border-alpha: .30;
  --text-strong: rgba(244,246,255,.92);
  --text: rgba(244,246,255,.86);
  --muted: rgba(244,246,255,.72);
  --faint: rgba(244,246,255,.62);

  --blob-opacity: .32;
  --header-bg: rgba(7,10,22,.62);
  --header-border: rgba(255,255,255,.08);


  /* Inspirado en tu logo */
  --blue: #1b7cff;
  --green: #67d34c;
  --yellow: #ffd43b;
  --orange: #ff8a3d;
  --purple: #b35cff;
  --teal: #38e6d5;

  --shadow: 0 22px 70px rgba(0,0,0,.35);
  --radius: 18px;
  /* Conserva la tipografía base y evita dependencias externas nuevas. */
  --font-body: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  --font-display: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}



[data-theme="light"], .theme-light{
  --bg: #f7f9ff;
  --card: rgba(255,255,255,.88);
  --card2: rgba(255,255,255,.80);
  --stroke: rgba(10,16,32,.18);
  --input-bg: rgba(255,255,255,.96);
  --input-border: rgba(10,16,32,.24);
  --watermark-opacity: .06;
  --accent-shadow-alpha: .24;
  --accent-border-alpha: .48;
  --text-strong: rgba(10,16,32,.94);
  --text: rgba(10,16,32,.92);
  --muted: rgba(10,16,32,.74);
  --faint: rgba(10,16,32,.60);

  --blob-opacity: .18;
  --header-bg: rgba(255,255,255,.78);
  --header-border: rgba(10,16,32,.10);

  --shadow: 0 18px 60px rgba(10,16,32,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 18%, rgba(27,124,255,.16), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(56,230,213,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    var(--bg);
  background-repeat: no-repeat;
  background-size: 100% 100vh, 100% 100vh, 100% 100vh, auto;
  color: var(--text);
  line-height: 1.5;
  overflow-x:hidden;
}

/* Prueba visual en modo claro: wallpaper + capas actuales */
[data-theme="light"] body,
body[data-theme="light"],
.theme-light body{
  background:
    linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,.38)),
    radial-gradient(circle at 12% 18%, rgba(27,124,255,.10), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(56,230,213,.09), transparent 30%),
    url("img/images/wallpaper.jpg"),
    var(--bg);
  background-repeat: no-repeat, no-repeat, no-repeat, repeat-y, no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% auto, auto;
  background-position: center top, center top, center top, left top, center;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
svg{ display:block; width:100%; height:100%; }

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto;height:auto;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(255,255,255,.12);
  border:1px solid var(--stroke);
  z-index:999;
}

/* Background */
.bg{ position:fixed; inset:0; z-index:-2; }
.bg__blob{
  position:absolute;
  width: 520px; height: 520px;
  filter: blur(40px);
  opacity: var(--blob-opacity);
  border-radius: 999px;
}
.bg__blob--a{
  left:-120px; top:-140px;
  background: radial-gradient(circle at 30% 30%, var(--blue), transparent 60%),
              radial-gradient(circle at 70% 70%, var(--teal), transparent 60%);
}
.bg__blob--b{
  right:-180px; bottom:-180px;
  background: radial-gradient(circle at 40% 40%, var(--green), transparent 60%),
              radial-gradient(circle at 70% 30%, var(--yellow), transparent 60%),
              radial-gradient(circle at 30% 70%, var(--purple), transparent 60%);
}
.bg__noise{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.10'/%3E%3C/svg%3E");
  opacity:.33;
  mix-blend-mode: overlay;
}

/* .bg::after{
  content:"";
  position:absolute;
  left:-40px;
  bottom:-40px;
  width:520px;
  height:520px;
  background: url("assets/img/logo.png") no-repeat;
  background-size: contain;
  opacity: var(--watermark-opacity);
  pointer-events:none;
  transform: rotate(-10deg);
  filter: saturate(1.05);
} */

/* Header */
.header{
  position:sticky; top:0; z-index:10;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.header__inner{
  max-width:1100px;
  margin:0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  gap:14px;
}
.brand{ display:flex; align-items:center; gap:10px; min-width: 180px; }
.brand__logo{ width:40px; height:40px; border-radius: 12px; }
.brand__name{ font-weight: 800; letter-spacing: .2px; }

.nav{ display:flex; gap: 14px; margin-left:auto; }
.nav-toggle{
  display:none;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: inherit;
  cursor: pointer;
}
.nav-toggle__line{
  display:block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2){
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}
[data-theme="light"] .nav-toggle{
  border-color: rgba(10,16,32,.12);
  background: rgba(255,255,255,.7);
}
.nav a{
  position: relative;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--text);
  transition: color .2s ease, background .2s ease;
}
.nav a::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(27,124,255,.8), rgba(56,230,213,.8));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover{
  background: rgba(255,255,255,.10);
  color: var(--text-strong);
}
.nav a:hover::after,
.nav a:focus-visible::after,
body[data-page="home"] .nav a[data-nav="home"]::after,
body[data-page="nosotros"] .nav a[data-nav="nosotros"]::after,
body[data-page="mvv"] .nav a[data-nav="mvv"]::after,
body[data-page="contacto"] .nav a[data-nav="contacto"]::after{
  transform: scaleX(1);
}
.nav a:focus-visible,
.btn:focus-visible,
.theme-toggle:focus-visible,
.nav-toggle:focus-visible,
.channel:focus-visible,
.wa-float:focus-visible{
  outline: 3px solid rgba(56,230,213,.42);
  outline-offset: 2px;
}

/* Active page highlight (multi-page navigation) */
body[data-page="home"] .nav a[data-nav="home"],
body[data-page="nosotros"] .nav a[data-nav="nosotros"],
body[data-page="mvv"] .nav a[data-nav="mvv"],
body[data-page="contacto"] .nav a[data-nav="contacto"]{
  background: rgba(255,255,255,.14);
  color: var(--text-strong);
  border: 1px solid rgba(255,255,255,.10);
}
[data-theme="light"] body[data-page="home"] .nav a[data-nav="home"],
[data-theme="light"] body[data-page="nosotros"] .nav a[data-nav="nosotros"],
[data-theme="light"] body[data-page="mvv"] .nav a[data-nav="mvv"],
[data-theme="light"] body[data-page="contacto"] .nav a[data-nav="contacto"]{
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
}


.header__cta{ margin-left: 6px; }


.theme-toggle{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: inherit;
  cursor: pointer;
  font-weight: 750;
}
.theme-toggle:hover{ background: rgba(255,255,255,.12); }
[data-theme="light"] .theme-toggle{
  border-color: rgba(10,16,32,.14);
  background: rgba(10,16,32,.04);
}
[data-theme="light"] .theme-toggle:hover{
  background: rgba(10,16,32,.07);
}
.theme-toggle__text{ font-size: .95rem; color: var(--text); }
[data-theme="light"] .theme-toggle__text{ color: rgba(10,16,32,.78); }



@media (max-width: 900px){
  .header__inner{ flex-wrap: wrap; }
  .brand{ min-width: unset; }
  .nav-toggle{
    display:inline-block;
    margin-left: auto;
  }
  .nav{
    display:none;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    order: 4;
  }
  .nav.is-open{ display:flex; }
  .nav a{
    padding: 10px 12px;
    font-size: .95rem;
  }
  .theme-toggle{ margin-left: 0; }
  .header__cta{
    margin-left: auto;
  }
  [data-theme="light"] .nav{
    background: rgba(255,255,255,.74);
    border-color: rgba(10,16,32,.08);
  }
}

/* Layout */
.container{
  max-width:1100px;
  margin: 0 auto;
  padding: 30px 18px 72px;
}

.section{ margin-top: 72px; }
.section__head{ margin-bottom: 16px; }
.section__head h2{
  margin:0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  letter-spacing: -0.5px;
}
.section__sub{
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 28px;
  align-items:start;
  margin-top: 18px;
}
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  width: fit-content;
  font-weight: 650;
  color: var(--text);
}
.dot{
  width: 10px; height: 10px;
  border-radius: 99px;
  display:inline-block;
}
.dot--green{ background: var(--green); box-shadow: 0 0 0 4px rgba(103,211,76,.18); }

h1{
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -1.2px;
}
.lead{
  margin: 0;
  color: var(--text);
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

.hero__cta{ display:flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.hero__left > *{
  animation: hero-fade-up .55s ease both;
}
.hero__left > *:nth-child(2){ animation-delay: .06s; }
.hero__left > *:nth-child(3){ animation-delay: .12s; }
.hero__left > *:nth-child(4){ animation-delay: .18s; }
.hero__right{
  animation: hero-fade-up .65s ease .12s both;
}

.hero__metrics{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px){
  .hero__metrics{
    grid-template-columns: 1fr;
  }
}
.metric{
  position: relative;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(255,255,255,.04);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.metric:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0,0,0,.14);
}
.metric::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--metric-accent, var(--blue));
}
.metric__value{
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-strong);
}
.metric__label{
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.metric--blue{ --metric-accent: var(--blue); }
.metric--green{ --metric-accent: var(--green); }
.metric--orange{ --metric-accent: var(--orange); }
[data-theme="light"] .metric{
  background: rgba(255,255,255,.72);
  border-color: rgba(10,16,32,.1);
  box-shadow: 0 10px 24px rgba(10,16,32,.06);
}
[data-theme="light"] .metric__label{
  color: rgba(10,16,32,.68);
}

.trust{
  margin-top: 18px;
  display:grid;
  gap: 10px;
}
.trust__item{
  display:flex; gap: 12px; align-items:flex-start;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  transition: transform .22s ease, background .22s ease;
}
.trust__item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
}
.trust__k{ font-weight: 800; }
.trust__v{ color: var(--muted); margin-top: 2px; }
.badge{
  width: 34px; height: 34px;
  display:grid; place-items:center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  font-weight: 900;
}
.badge--blue{ box-shadow: 0 0 0 4px rgba(27,124,255,.14); }
.badge--green{ box-shadow: 0 0 0 4px rgba(103,211,76,.14); }
.badge--yellow{ box-shadow: 0 0 0 4px rgba(255,212,59,.14); }

.card{
  margin: 5px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,.26);
}
.card--hero{ padding: 18px; }
.card--feature{
  background:
    linear-gradient(155deg, rgba(27,124,255,.16), rgba(56,230,213,.08) 35%, rgba(255,138,61,.12) 100%),
    var(--card);
}
[data-theme="light"] .card--feature{
  background:
    linear-gradient(160deg, rgba(227,238,255,.96), rgba(245,251,255,.94)),
    rgba(255,255,255,.92);
  border-color: rgba(27,124,255,.18);
}
.card__top{ display:flex; gap:8px; flex-wrap: wrap; }
.card__title{ margin: 12px 0 6px; font-size: 1.25rem; }
.card__text{ margin: 0; color: var(--muted); line-height: 1.6; }

.hero-media{
  position: relative;
  margin-bottom: 18px;
  padding: 14px;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(
      145deg,
      rgba(168,222,160,.92) 0%,
      rgba(168,222,160,.90) 48%,
      rgba(155,195,255,.90) 52%,
      rgba(155,195,255,.94) 100%
    );
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
[data-theme="light"] .hero-media{
  background: linear-gradient(
    145deg,
    rgba(178,230,170,.94) 0%,
    rgba(178,230,170,.92) 48%,
    rgba(165,204,255,.92) 52%,
    rgba(165,204,255,.96) 100%
  );
  border-color: rgba(27,124,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-media__glow{
  position: absolute;
  inset: -30% auto auto -8%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56,230,213,.34), transparent 66%);
  pointer-events: none;
}
.hero-media__video{
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 36px rgba(0,0,0,.34);
  background: #02050d;
  transition: transform .28s ease, box-shadow .28s ease;
}
.hero-media:hover .hero-media__video{
  transform: scale(1.01);
  box-shadow: 0 22px 40px rgba(0,0,0,.4);
}
.hero-media__caption{
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: grid;
  gap: 4px;
}
.hero-media__caption strong{
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(9,23,50,.94);
}
[data-theme="light"] .hero-media__caption strong{
  color: rgba(8,22,48,.95);
}
.hero-media__caption span:last-child{
  color: rgba(12,31,64,.86);
  line-height: 1.5;
}
[data-theme="light"] .hero-media__caption span:last-child{
  color: rgba(11,30,60,.84);
}
.hero-media__eyebrow{
  color: rgba(20,98,70,.95);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (min-width: 901px){
  .hero-media{
    display: grid;
    grid-template-columns: 80% minmax(0, 1fr);
    grid-template-areas: "video caption";
    column-gap: 30px;
    align-items: center;
    padding: 22px;
    margin-bottom: 28px;
  }
  .hero-media__caption{
    grid-area: caption;
    margin-top: 0;
    align-content: center;
  }
  .hero-media__video{
    grid-area: video;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

.workshops-card{
  margin: 18px 0 0;
  width: 100%;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(27,124,255,.28), rgba(56,230,213,.12) 42%, rgba(255,138,61,.18)),
    var(--card2);
  border-color: rgba(56,230,213,.18);
  box-shadow:
    0 24px 54px rgba(3,8,22,.28),
    0 0 0 1px rgba(56,230,213,.06) inset;
  overflow: hidden;
}
.workshops-card__media{
  position: relative;
  min-height: 118px;
  padding: 18px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(56,230,213,.16);
  background:
    radial-gradient(circle at 82% 28%, rgba(103,211,76,.28), transparent 18%),
    radial-gradient(circle at 16% 20%, rgba(27,124,255,.32), transparent 16%),
    linear-gradient(155deg, rgba(7,10,22,.98), rgba(18,28,54,.9) 46%, rgba(22,46,88,.88));
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 30px rgba(0,0,0,.2);
}
.workshops-card__glow{
  position: absolute;
  inset: auto -10% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(103,211,76,.42), transparent 64%);
  filter: blur(2px);
}
.workshops-card__spark{
  position: absolute;
  inset: 18px 18px auto auto;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
    rgba(56,230,213,.08);
  transform: rotate(12deg);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}
.workshops-card__badge{
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.98);
  font-weight: 800;
  font-size: .92rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.workshops-card__content{
  margin-top: 14px;
  display: grid;
  gap: 14px;
}
.workshops-card__hint{
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(255,212,59,.45);
  background: rgba(255,212,59,.14);
  color: rgba(255,248,210,.98);
  font-weight: 800;
  line-height: 1.45;
}
.workshops-card__hint-icon{
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255,212,59,.95), rgba(255,138,61,.92));
  color: rgba(10,16,32,.94);
  font-size: .78rem;
  box-shadow: 0 8px 18px rgba(255,138,61,.28);
}
.workshops-card__list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.workshop-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04)),
    rgba(255,255,255,.06);
  color: var(--text-strong);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.workshop-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(56,230,213,.32);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.workshop-pill.is-active{
  background: linear-gradient(90deg, rgba(27,124,255,.6), rgba(56,230,213,.34));
  border-color: rgba(56,230,213,.48);
  color: rgba(255,255,255,.98);
  box-shadow:
    0 16px 28px rgba(9,22,54,.28),
    0 0 0 1px rgba(56,230,213,.12) inset;
}
.workshop-pill:focus-visible{
  outline: 3px solid rgba(56,230,213,.3);
  outline-offset: 2px;
}
.workshops-card__detail{
  position: relative;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(56,230,213,.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(255,255,255,.05);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 14px 28px rgba(0,0,0,.1);
}
.workshops-card__detail::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--teal), var(--green));
}
.workshops-card__detail-tag{
  display: inline-flex;
  padding: 7px 11px;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.96);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.workshops-card__copy{
  margin: 0;
  color: rgba(244,246,255,.78);
  line-height: 1.65;
}
.workshops-card__whatsapp{
  margin: 12px 0 0;
  color: rgba(244,246,255,.92);
  font-weight: 600;
}
.workshops-card__whatsapp a{
  color: rgba(56,230,213,.98);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
[data-theme="light"] .workshops-card__hint{
  border-color: rgba(255,138,61,.38);
  background: rgba(255,212,59,.24);
  color: rgba(10,16,32,.94);
}
[data-theme="light"] .workshops-card__hint-icon{
  box-shadow: 0 8px 16px rgba(255,138,61,.22);
}
[data-theme="light"] .workshops-card{
  background:
    linear-gradient(150deg, rgba(212,231,255,.98), rgba(235,248,255,.94) 56%, rgba(228,251,245,.92)),
    rgba(255,255,255,.9);
  border-color: rgba(27,124,255,.22);
  box-shadow:
    0 20px 42px rgba(10,16,32,.12),
    0 0 0 1px rgba(27,124,255,.05) inset;
}
[data-theme="light"] .workshops-card__media{
  min-height: 96px;
  background:
    radial-gradient(circle at 82% 28%, rgba(103,211,76,.22), transparent 18%),
    radial-gradient(circle at 14% 24%, rgba(27,124,255,.22), transparent 16%),
    linear-gradient(145deg, rgba(188,218,255,.96), rgba(212,236,255,.92) 58%, rgba(198,246,235,.9));
  border-color: rgba(27,124,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    0 12px 24px rgba(27,124,255,.08);
}
[data-theme="light"] .workshops-card__glow{
  background: radial-gradient(circle, rgba(103,211,76,.24), transparent 64%);
}
[data-theme="light"] .workshops-card__spark{
  border-color: rgba(27,124,255,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.66), rgba(255,255,255,0)),
    rgba(56,230,213,.08);
}
[data-theme="light"] .workshops-card__badge{
  background: rgba(255,255,255,.78);
  border-color: rgba(27,124,255,.18);
  color: rgba(10,16,32,.94);
  box-shadow: 0 10px 18px rgba(27,124,255,.08);
}
[data-theme="light"] .workshop-pill{
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.72)),
    rgba(255,255,255,.78);
  border-color: rgba(27,124,255,.1);
  color: rgba(10,16,32,.9);
}
[data-theme="light"] .workshop-pill.is-active{
  background: linear-gradient(90deg, rgba(27,124,255,.3), rgba(56,230,213,.22));
  border-color: rgba(27,124,255,.26);
  color: rgba(10,16,32,.96);
  box-shadow:
    0 14px 22px rgba(10,16,32,.1),
    0 0 0 1px rgba(255,255,255,.4) inset;
}
[data-theme="light"] .workshops-card__detail{
  border-color: rgba(27,124,255,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.52)),
    rgba(255,255,255,.56);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 14px 26px rgba(10,16,32,.08);
}
[data-theme="light"] .workshops-card__detail-tag{
  background: rgba(255,255,255,.82);
  border-color: rgba(27,124,255,.14);
  color: rgba(10,16,32,.92);
}
[data-theme="light"] .workshops-card__copy{
  color: rgba(10,16,32,.78);
}
[data-theme="light"] .workshops-card__whatsapp{
  color: rgba(10,16,32,.88);
}
[data-theme="light"] .workshops-card__whatsapp a{
  color: rgba(20,127,84,.96);
}

.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 750;
  font-size: .92rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tag--purple{ box-shadow: 0 0 0 4px rgba(179,92,255,.12); }
.tag--orange{
  color: rgba(10,16,32,.96);
  border-color: rgba(255,212,59,.42);
  background:
    linear-gradient(135deg, rgba(255,212,59,.96), rgba(255,138,61,.88));
  box-shadow:
    0 0 0 4px rgba(255,212,59,.16),
    0 12px 22px rgba(255,138,61,.18);
}
.tag--orange:hover{
  transform: translateY(-1px);
  box-shadow:
    0 0 0 4px rgba(255,212,59,.2),
    0 16px 26px rgba(255,138,61,.22);
}
[data-theme="light"] .tag--orange{
  color: rgba(10,16,32,.96);
  border-color: rgba(255,212,59,.52);
  background:
    linear-gradient(135deg, rgba(255,212,59,.98), rgba(255,138,61,.9));
  box-shadow:
    0 0 0 4px rgba(255,212,59,.18),
    0 12px 20px rgba(255,138,61,.16);
}

.mini{
  display:grid;
  gap: 10px;
  margin: 14px 0 16px;
}
.mini__item{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.mini__k{ font-weight: 800; }
.mini__v{ color: var(--muted); margin-top: 2px; }

.micro{
  margin: 12px 0 0;
  color: var(--faint);
  font-size: .95rem;
  line-height: 1.55;
}
.link{ text-decoration: underline; text-underline-offset: 3px; }

/* Buttons + inputs */
.btn{
  appearance:none;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: var(--text-strong);
  padding: 11px 14px;
  border-radius: 16px;
  cursor:pointer;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.btn--primary{
  border-color: rgba(56,230,213,.58);
  background: linear-gradient(90deg, rgba(27,124,255,.42), rgba(56,230,213,.26));
  box-shadow: 0 12px 24px rgba(9,22,54,.22);
}
.btn--primary:hover{
  background: linear-gradient(90deg, rgba(27,124,255,.5), rgba(56,230,213,.32));
  box-shadow: 0 16px 28px rgba(9,22,54,.28);
}
.btn--ghost{ background: transparent; }
.btn--ghost:hover{
  border-color: rgba(255,255,255,.22);
}
.btn--block{ width:100%; text-align:center; }
.btn--center{ display:inline-flex; justify-content:center; align-items:center; }

.label{ display:block; margin-top: 12px; margin-bottom: 6px; color: var(--text); font-weight: 700; }
.input{
  width:100%;
  padding: 11px 12px;
  border-radius: 16px;
  border:1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text-strong);
  outline: none;
}
.input:focus{
  border-color: rgba(56,230,213,.55);
  box-shadow: 0 0 0 4px rgba(56,230,213,.14);
}
.input--area{ resize: vertical; }

/* Sections */
.about{
  display:grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 14px;
}
@media (max-width: 900px){
  .about{ grid-template-columns: 1fr; }
}
.about--nosotros{
  margin-top: 40px;
  grid-template-columns: 1fr;
}

.card--about{ margin-top: 40px; padding: 28px; background: var(--card2); text-align: justify;}
.grid{ display:grid; gap: 14px; }
.team--spheres{
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  justify-items: center;
}
.person-sphere-item{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.person-sphere{
  width: clamp(170px, 24vw, 250px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 2px solid rgba(56,230,213,.72);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background: transparent;
  box-shadow: 0 16px 30px rgba(0,0,0,.26);
  transition: transform .2s ease, box-shadow .2s ease;
}
[data-theme="light"] .person-sphere{
  border-color: rgba(27,124,255,.62);
}
.person-sphere:hover,
.person-sphere:focus-visible{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 38px rgba(0,0,0,.32), 0 0 0 2px rgba(56,230,213,.32);
}
.person-sphere:focus-visible{
  outline: none;
}
.person-sphere__img{
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.person-sphere__name{
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--text-strong);
  font-size: clamp(.95rem, 1.9vw, 1.05rem);
}
@media (max-width: 700px){
  .team--spheres{
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
  }
}

body.person-modal-open{
  overflow: hidden;
}
.person-modal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.person-modal.is-open{
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.person-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10,16,32,.72);
}
.person-modal__content{
  position: relative;
  z-index: 1001;
  width: min(720px, 100%);
  max-height: min(80vh, 780px);
  overflow-y: auto;
  padding: clamp(20px, 4vw, 30px);
  background: linear-gradient(165deg, rgba(14,24,48,.97), rgba(8,14,30,.98));
  border: 1px solid rgba(56,230,213,.42);
}
[data-theme="light"] .person-modal__content{
  background: linear-gradient(165deg, rgba(255,255,255,.99), rgba(242,248,255,.98));
  border-color: rgba(27,124,255,.36);
}
.person-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.10);
  color: var(--text-strong);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
[data-theme="light"] .person-modal__close{
  border-color: rgba(10,16,32,.2);
  background: rgba(10,16,32,.06);
}
.person-modal__name{
  margin: 0 0 8px;
  padding-right: 46px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
.person-modal__role{
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
}
.person-modal__bio{
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  text-align: justify;
}

.mv{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .mv{ grid-template-columns: 1fr; } }

.info{ padding: 25px; background: var(--card2); }
.info__icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  margin-bottom: 10px;
}
.info__icon svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info--blue{ box-shadow: 0 0 0 6px rgba(27,124,255,.10); }
.info--green{ box-shadow: 0 0 0 6px rgba(103,211,76,.10); }
.info:hover{
  border-color: rgba(56,230,213,.28);
}

.spotlight__grid{
  display: grid;
  grid-template-columns: 1fr;
}
.spotlight__panel{
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(140deg, rgba(27,124,255,.12), rgba(56,230,213,.08) 42%, rgba(255,212,59,.08)),
    var(--card2);
}
.spotlight__copy{
  max-width: 760px;
}
.spotlight__pill{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-strong);
  font-size: .86rem;
  font-weight: 700;
}
.spotlight__copy h3{
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}
.spotlight__copy p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.spotlight__points{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px){
  .spotlight__points{
    grid-template-columns: 1fr;
  }
}
.spotlight__point{
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  transition: transform .22s ease, background .22s ease;
}
.spotlight__point:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
}
.spotlight__point strong{
  display: block;
  color: var(--text-strong);
}
.spotlight__point p{
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.spotlight__icon{
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #081020;
  background: linear-gradient(135deg, var(--yellow), #fff1a8);
}

.values--puzzle{
  margin-top: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  gap: clamp(16px, 2.8vw, 28px);
  align-items: start;
}
.value-item{
  display: contents;
}
.value-piece{
  --piece-color: var(--blue);
  --piece-border: #1159bd;
  --piece-border-thickness: 1.05;
  --piece-width: clamp(220px, 28vw, 290px);
  --piece-height: clamp(180px, 22vw, 240px);
  --piece-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M54%2048H94c4%200%207-3%207-7%200-20%2016-36%2036-36s36%2016%2036%2036c0%204%203%207%207%207h22c12%200%2022%2010%2022%2022v40c0%204-3%207-7%207-20%200-36%2016-36%2036s16%2036%2036%2036c4%200%207%203%207%207v44c0%2012-10%2022-22%2022h-42c-4%200-7-3-7-7%200-20-16-36-36-36s-36%2016-36%2036c0%204-3%207-7%207H54c-12%200-22-10-22-22v-44c0-4%203-7%207-7%2020%200%2036-16%2036-36s-16-36-36-36c-4%200-7-3-7-7V70c0-12%2010-22%2022-22z%22/%3E%3C/svg%3E");
  --piece-rotate: 0deg;
  --title-rotate: 0deg;
  --breathe-delay: 0s;
  width: var(--piece-width);
  height: var(--piece-height);
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
  transform: rotate(var(--piece-rotate));
  justify-self: center;
}
.values--puzzle .value-item:nth-child(4) .value-piece{ grid-column: 1; grid-row: 1; }
.values--puzzle .value-item:nth-child(2) .value-piece{ grid-column: 2; grid-row: 2; margin-top: calc(var(--piece-height) * -0.5); }
.values--puzzle .value-item:nth-child(3) .value-piece{ grid-column: 3; grid-row: 1; }
.values--puzzle .value-item:nth-child(1) .value-piece{ grid-column: 4; grid-row: 2; margin-top: calc(var(--piece-height) * -0.5); }
.value-piece::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(255,255,255,.28), rgba(255,255,255,0) 42%),
    var(--piece-color);
  -webkit-mask-image: var(--piece-mask);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--piece-mask);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.28));
  z-index: 1;
  transform-origin: center;
  animation: piece-breathe-shape 3.4s ease-in-out infinite;
  animation-delay: var(--breathe-delay);
}
.value-piece::after{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--piece-border);
  -webkit-mask-image: var(--piece-mask);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--piece-mask);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: scale(var(--piece-border-thickness));
  z-index: 0;
  transform-origin: center;
  animation: piece-breathe-border 3.4s ease-in-out infinite;
  animation-delay: var(--breathe-delay);
}
.value-piece:hover,
.value-piece:focus-visible,
.value-piece[aria-expanded="true"]{
  transform: rotate(var(--piece-rotate)) translateY(-4px) scale(1.03);
  filter: saturate(1.05);
}
.value-piece:focus-visible{
  outline: none;
}
.value-piece__title{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: rotate(var(--title-rotate));
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0 24%;
  font-weight: 800;
  font-size: clamp(.9rem, 1.35vw, 1.08rem);
  line-height: 1.15;
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
  -webkit-text-stroke: 0;
  text-shadow:
    0 1px 1px rgba(0,0,0,.75),
    0 0 1px rgba(0,0,0,.65),
    0 2px 2px rgba(0,0,0,.45);
}
.values--puzzle .value-item:nth-child(1) .value-piece{
  --piece-rotate: 270deg;
  --title-rotate: -270deg;
  --breathe-delay: 0s;
}
.values--puzzle .value-item:nth-child(2) .value-piece{
  --piece-rotate: 90deg;
  --title-rotate: -90deg;
  --breathe-delay: .35s;
}
.values--puzzle .value-item:nth-child(3) .value-piece{
  --piece-rotate: 180deg;
  --title-rotate: -180deg;
  --breathe-delay: .7s;
}
.values--puzzle .value-item:nth-child(4) .value-piece{
  --piece-rotate: 0deg;
  --title-rotate: 0deg;
  --breathe-delay: 1.05s;
}

@keyframes piece-breathe-shape{
  0%, 100%{
    transform: scale(1);
  }
  45%{
    transform: scale(1.045);
  }
}
@keyframes piece-breathe-border{
  0%, 100%{
    transform: scale(var(--piece-border-thickness));
  }
  45%{
    transform: scale(calc(var(--piece-border-thickness) * 1.04));
  }
}
.value-piece--blue{ --piece-color: var(--blue); --piece-border: #0f5ec8; }
.value-piece--orange{ --piece-color: var(--orange); --piece-border: #cf6620; }
.value-piece--yellow{ --piece-color: var(--yellow); --piece-border: #d0a800; }
.value-piece--green{ --piece-color: var(--green); --piece-border: #4eaa39; }

.values--puzzle .value-item:nth-child(1) .value-piece__title{
  font-size: clamp(.84rem, 1.25vw, 1.01rem);
}

.value-bubble{
  --bubble-bg: var(--card2);
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--bubble-bg);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 30px rgba(0,0,0,.24);
  transform-origin: top center;
}
.value-bubble:not([hidden]){
  animation: bubble-enter .28s ease-out both;
}
.value-bubble::before{
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: inherit;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  opacity: .9;
}
.value-bubble p{
  margin: 0;
  line-height: 1.6;
  color: var(--text);
  text-align: left;
}
.value-bubble--blue{ color: rgba(27,124,255,.58); }
.value-bubble--orange{ color: rgba(255,138,61,.58); }
.value-bubble--yellow{ color: rgba(255,212,59,.58); }
.value-bubble--green{ color: rgba(103,211,76,.58); }
.value-bubble--blue{ --bubble-bg: rgba(27,124,255,.16); }
.value-bubble--orange{ --bubble-bg: rgba(255,138,61,.16); }
.value-bubble--yellow{ --bubble-bg: rgba(255,212,59,.20); }
.value-bubble--green{ --bubble-bg: rgba(103,211,76,.16); }
[data-theme="light"] .value-bubble{
  border-color: rgba(10,16,32,.16);
}
@keyframes bubble-enter{
  from{
    opacity: 0;
    transform: translateY(-8px) scale(.985);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1100px){
  .values--puzzle{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
  }
  .value-piece{
    --piece-width: clamp(200px, 36vw, 260px);
    --piece-height: clamp(165px, 30vw, 220px);
    grid-column: auto !important;
    grid-row: auto !important;
    margin-top: 0 !important;
  }
  .value-bubble{
    grid-column: 1 / -1;
    grid-row: auto;
  }
}
@media (max-width: 820px){
  .value-piece{
    --piece-width: clamp(185px, 42vw, 230px);
    --piece-height: clamp(150px, 34vw, 195px);
  }
}
@media (max-width: 680px){
  .values--puzzle{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .value-piece{
    grid-row: auto;
    grid-column: 1;
    margin-top: 0 !important;
  }
  .value-bubble{
    grid-row: auto;
  }
}

.value{ padding: 16px; background: var(--card2); }
.value--yellow{ box-shadow: 0 0 0 6px rgba(255,212,59,.10); }
.value--purple{ box-shadow: 0 0 0 6px rgba(179,92,255,.10); }
.value--orange{ box-shadow: 0 0 0 6px rgba(255,138,61,.10); }
.value--blue{ box-shadow: 0 0 0 6px rgba(27,124,255,.10); }
.value--green{ box-shadow: 0 0 0 6px rgba(103,211,76,.10); }
/* Stronger accent borders in light mode */
.theme-light .value--yellow, [data-theme="light"] .value--yellow{ box-shadow: 0 0 0 8px rgba(255,212,59,var(--accent-shadow-alpha)); border-color: rgba(255,212,59,var(--accent-border-alpha)); }
.theme-light .value--purple, [data-theme="light"] .value--purple{ box-shadow: 0 0 0 8px rgba(179,92,255,var(--accent-shadow-alpha)); border-color: rgba(179,92,255,var(--accent-border-alpha)); }
.theme-light .value--orange, [data-theme="light"] .value--orange{ box-shadow: 0 0 0 8px rgba(255,138,61,var(--accent-shadow-alpha)); border-color: rgba(255,138,61,var(--accent-border-alpha)); }
.theme-light .value--blue, [data-theme="light"] .value--blue{ box-shadow: 0 0 0 8px rgba(27,124,255,var(--accent-shadow-alpha)); border-color: rgba(27,124,255,var(--accent-border-alpha)); }
.theme-light .value--green, [data-theme="light"] .value--green{ box-shadow: 0 0 0 8px rgba(103,211,76,var(--accent-shadow-alpha)); border-color: rgba(103,211,76,var(--accent-border-alpha)); }

.theme-light .info--blue, [data-theme="light"] .info--blue{ box-shadow: 0 0 0 8px rgba(27,124,255,var(--accent-shadow-alpha)); border-color: rgba(27,124,255,var(--accent-border-alpha)); }
.theme-light .info--green, [data-theme="light"] .info--green{ box-shadow: 0 0 0 8px rgba(103,211,76,var(--accent-shadow-alpha)); border-color: rgba(103,211,76,var(--accent-border-alpha)); }

/* Form & cards contrast in light mode */
.theme-light .card, [data-theme="light"] .card{ border-color: rgba(10,16,32,.18); }
.theme-light .card--contact, .theme-light .card--channels,
[data-theme="light"] .card--contact, [data-theme="light"] .card--channels{ border-color: rgba(10,16,32,.18); }
.theme-light .channel, [data-theme="light"] .channel{ border-color: rgba(10,16,32,.14); }


.contact{ grid-template-columns: 1fr; }
@media (max-width: 900px){ .contact{ grid-template-columns: 1fr; } }

.card--contact, .card--channels{ padding: 24px; background: var(--card2); }
.card--contact h3,
.card--channels h3{
  margin: 0 0 14px;
}
.card--contact .micro{
  margin-top: 14px;
}
.card--contact .form{
  margin-top: 18px;
}
.card--contact .label{
  margin-top: 14px;
  margin-bottom: 8px;
}
.card--contact .input{
  padding: 13px 14px;
}
.card--contact .btn--block{
  margin-top: 10px;
}

.channel{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  margin-top: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.channel:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
  border-color: rgba(56,230,213,.24);
}
.channel__icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.channel__k{ font-weight: 800; display:block; }
.channel__v{ color: var(--muted); display:block; margin-top: 4px; }

.note{
  margin-top: 14px;
  display:flex; gap: 10px; align-items:flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.18);
}
.note__spark{
  width: 34px; height: 34px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.note__text{ margin:0; color: var(--muted); line-height: 1.55; }

/* Footer */
.footer{
  margin-top: 52px;
  padding: 20px 0 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__logo{
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.footer__name{ font-weight: 850; }
.footer__copy{ color: var(--faint); margin-top: 2px; }
.footer__links{ display:flex; gap: 12px; flex-wrap: wrap; color: var(--muted); }
.footer__links a{
  position: relative;
}
.footer__links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .2s ease;
}
.footer__links a:hover::after,
.footer__links a:focus-visible::after{
  transform: scaleX(1);
}

/* ===== Watermark Logo ===== */
.watermark{
  position: fixed;
  bottom: -10px;
  left: -10px;
  width: 420px;
  height: 420px;

  background-image: url("img/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;

  pointer-events: none;
  z-index: 1; /* encima del background, debajo del contenido */
  opacity: 0.04; /* base */
  filter: saturate(1.1);
  transform: rotate(28deg);
}

/* Modo claro: un poco más visible */
html.theme-light .watermark,
html[data-theme="light"] .watermark{
  opacity: 0.07;
}

/* Modo oscuro: más sutil */
html.theme-dark .watermark,
html[data-theme="dark"] .watermark{
  opacity: 0.035;
}

/* En móviles: reducir tamaño */
@media (max-width: 768px){
  .watermark{
    width: 260px;
    height: 260px;
    bottom: -30px;
    left: -30px;
  }
}

.wa-float{
  position: fixed;
  right: clamp(14px, 2.2vw, 22px);
  bottom: clamp(14px, 2.2vw, 22px);
  width: clamp(54px, 6vw, 62px);
  height: clamp(54px, 6vw, 62px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 1200;
  background: #25d366;
  color: #fff;
  border: 2px solid #1da851;
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.wa-float i{
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  line-height: 1;
}
.wa-float:hover,
.wa-float:focus-visible{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 32px rgba(0,0,0,.3);
  background: #28e06c;
}
.wa-float:focus-visible{
  outline: 3px solid rgba(255,255,255,.75);
  outline-offset: 2px;
}

body.promo-modal-open{
  overflow: hidden;
}
.promo-modal{
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.promo-modal.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.promo-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10,16,32,.80);
}
.promo-modal__panel{
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: calc(100vh - 40px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(7,10,22,.95);
  padding: clamp(12px, 2vw, 16px);
  box-shadow: 0 28px 60px rgba(0,0,0,.42);
}
.promo-modal__title{
  margin: 12px 42px 18px 6px;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.25;
  text-align: center;
}
.promo-modal__close{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.promo-modal__viewport{
  overflow: hidden;
  border-radius: 14px;
  background: #05070f;
}
.promo-modal__track{
  display: flex;
  width: 100%;
  transition: transform .3s ease;
}
.promo-modal__slide{
  min-width: 100%;
}
.promo-modal__link{
  display: block;
  width: 100%;
}
.promo-modal__link:focus-visible{
  outline: 3px solid rgba(56,230,213,.46);
  outline-offset: -3px;
  border-radius: 14px;
}
.promo-modal__slide img{
  width: 100%;
  height: min(76vh, 760px);
  object-fit: contain;
}
.promo-modal__controls{
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.promo-modal__nav{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.promo-modal__dots{
  display: flex;
  gap: 8px;
}
.promo-modal__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.promo-modal__dot.is-active{
  background: #25d366;
}

/* Reveal ligero para secciones; mejora jerarquía sin animaciones pesadas. */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.mission-vision-img {
  width: 70%; 
  display: block; 
  margin: 0 auto;
}

@keyframes hero-fade-up{
  from{
    opacity: 0;
    transform: translateY(18px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px){
  .container{
    padding-left: 14px;
    padding-right: 14px;
  }
  .header__inner{
    gap: 10px;
  }
  .brand__name{
    font-size: .95rem;
  }
  .hero{
    gap: 20px;
  }
  .hero__cta{
    flex-direction: column;
    align-items: stretch;
  }
  .btn--block,
  .hero__cta .btn{
    width: 100%;
    text-align: center;
  }
  .card--hero,
  .spotlight__panel,
  .info,
  .card--channels{
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal{
    opacity: 1;
    transform: none;
  }
}
