:root{
  --bg:#d7cef0;
  --bg-soft:#c8bcf0;
  --surface:#eee7ff;
  --surface-2:#e3d9ff;
  --text:#1a1430;
  --muted:#534d72;
  --brand:#8a5cff;
  --brand2:#24d6b0;
  --brand-soft:#dccfff;
  --line:rgba(26,20,48,.18);
  --line-strong:rgba(26,20,48,.28);
  --panel:rgba(238,231,255,.88);
  --panel-2:rgba(227,217,255,.96);
  --shadow:0 22px 44px rgba(63,32,128,.18);
  --shadow-soft:0 12px 28px rgba(63,32,128,.15);
  --radius:18px;
  --radius-sm:14px;
  --maxw:1120px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  max-width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  min-height:100vh;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  background:
    radial-gradient(1200px 760px at 12% 0%, rgba(138,92,255,.26), transparent 56%),
    radial-gradient(900px 620px at 92% 8%, rgba(36,214,176,.12), transparent 58%),
    linear-gradient(180deg, #eee8ff 0%, var(--bg) 100%);
  color:var(--text);
  line-height:1.55;
}

a{
  color:inherit;
  text-decoration:none;
}

img,
video,
iframe{
  max-width:100%;
  display:block;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding-left:16px;
  padding-right:16px;
}

.small{
  font-size:.95rem;
  color:var(--muted);
}

.kicker{
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  font-size:.78rem;
  color:var(--brand);
}

.h1{
  font-size:clamp(2rem,3.6vw,3.2rem);
  line-height:1.08;
  margin:.5rem 0 1rem;
  color:#170f2c;
}

.h2{
  font-size:clamp(1.4rem,2.4vw,2rem);
  line-height:1.15;
  margin:0 0 .75rem;
  color:#1b1233;
}

.h3{
  font-size:1.2rem;
  line-height:1.25;
  margin:0 0 .55rem;
  color:#241846;
}

.lead{
  font-size:1.08rem;
  color:#4d476a;
  max-width:70ch;
}

.badge{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  padding:.38rem .7rem;
  border:1px solid rgba(138,92,255,.28);
  border-radius:999px;
  background:linear-gradient(180deg, rgba(138,92,255,.18), rgba(138,92,255,.08));
  color:#5a35c8;
  font-weight:800;
  font-size:.9rem;
  box-shadow:
    0 8px 18px rgba(138,92,255,.14),
    0 0 18px rgba(138,92,255,.12);
}

.hr{
  height:1px;
  background:var(--line);
  margin:1rem 0;
}

/* =========================
   BOTONES
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  min-height:44px;
  padding:.82rem 1rem;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow:var(--shadow-soft);
}

.btn:hover{
  transform:translateY(-1px);
  background:var(--surface-2);
  border-color:rgba(138,92,255,.32);
}

.btn.primary{
  border-color:rgba(138,92,255,.50);
  background:linear-gradient(135deg,#9a70ff 0%, #7a49ff 100%);
  color:#fff;
  box-shadow:
    0 16px 28px rgba(122,73,255,.24),
    0 0 24px rgba(138,92,255,.16),
    0 0 0 1px rgba(255,255,255,.15) inset;
}

.btn.success{
  border-color:rgba(36,214,176,.40);
  background:linear-gradient(135deg,#31dfb6 0%, #1fc89f 100%);
  color:#08261f;
  box-shadow:
    0 16px 28px rgba(36,214,176,.20),
    0 0 20px rgba(36,214,176,.12),
    0 0 0 1px rgba(255,255,255,.14) inset;
}

.btn.primary:hover,
.btn.success:hover{
  filter:brightness(1.04);
}

.btn.ghost{
  background:transparent;
  box-shadow:none;
}

.btn.small{
  min-height:40px;
  padding:.58rem .82rem;
  border-radius:12px;
  font-weight:900;
}

/* =========================
   HEADER NUEVO COMÚN
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(238,231,255,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  box-shadow:
    0 8px 22px rgba(63,32,128,.10),
    0 0 18px rgba(138,92,255,.08);
}

.header-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:.85rem;
  padding:.82rem 0 1rem;
}

.header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  font-weight:900;
  letter-spacing:.02em;
  min-width:0;
  color:#1b1233;
}

.brand-logo{
  width:auto;
  height:42px;
  flex:0 0 auto;
}

.brand-text{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.site-nav{
  display:flex;
  justify-content:center;
  gap:.65rem;
  flex-wrap:wrap;
}

.site-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:.75rem .95rem;
  border-radius:14px;
  border:1px solid rgba(26,20,48,.12);
  background:
    linear-gradient(135deg,
      rgba(138,92,255,.18) 0%,
      rgba(238,231,255,.92) 42%,
      rgba(36,214,176,.06) 100%);
  font-weight:850;
  line-height:1.2;
  color:#281d48;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    0 0 16px rgba(138,92,255,.04);
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease,
    filter .18s ease,
    box-shadow .18s ease;
}

.site-nav a:hover{
  border-color:rgba(138,92,255,.38);
  background:
    linear-gradient(135deg,
      rgba(138,92,255,.26) 0%,
      rgba(239,232,255,.96) 42%,
      rgba(36,214,176,.10) 100%);
  color:#170f2c;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.40),
    0 8px 20px rgba(63,32,128,.14),
    0 0 22px rgba(138,92,255,.10);
}

.site-nav a[aria-current="page"]{
  border-color:rgba(138,92,255,.44);
  background:
    linear-gradient(135deg,
      rgba(138,92,255,.32) 0%,
      rgba(240,233,255,.98) 45%,
      rgba(36,214,176,.12) 100%);
  color:#170f2c;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.42),
    0 10px 24px rgba(63,32,128,.16),
    0 0 26px rgba(138,92,255,.12);
}

.lang-switch{
  display:flex;
  gap:.45rem;
  align-items:center;
  flex-shrink:0;
}

.lang-flag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--surface);
  font-size:1.15rem;
  line-height:1;
  transition:background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow:var(--shadow-soft);
}

.lang-flag:hover,
.lang-flag.is-active{
  background:var(--surface-2);
  border-color:rgba(138,92,255,.42);
  box-shadow:
    0 8px 18px rgba(63,32,128,.14),
    0 0 20px rgba(138,92,255,.10);
}

/* Compatibilidad temporal con el header antiguo */
header:not(.site-header){
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(238,231,255,.86);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.85rem 0;
  gap:1rem;
}

.navlinks{
  display:flex;
  gap:.95rem;
  align-items:center;
  flex-wrap:wrap;
}

.navlinks a{
  opacity:.92;
  font-weight:650;
}

.navlinks a:hover{
  opacity:1;
}

.nav-cta{
  display:flex;
  gap:.6rem;
  align-items:center;
}

/* =========================
   HERO
========================= */

.hero{
  padding:4rem 0 2.8rem;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:2rem;
  align-items:stretch;
}

.hero-card{
  border:1px solid rgba(26,20,48,.14);
  background:
    linear-gradient(180deg, rgba(238,231,255,.97) 0%, rgba(223,213,255,.99) 100%);
  border-radius:var(--radius);
  padding:1.5rem;
  box-shadow:
    0 22px 44px rgba(63,32,128,.16),
    0 0 30px rgba(138,92,255,.08),
    0 1px 0 rgba(255,255,255,.34) inset;
  overflow:hidden;
  position:relative;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(580px 220px at 18% 0%, rgba(138,92,255,.26), transparent 58%),
    radial-gradient(460px 200px at 85% 8%, rgba(36,214,176,.10), transparent 60%);
  pointer-events:none;
}

.hero-card > *{
  position:relative;
}

.hero-actions{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  margin-top:1.15rem;
}

.hero-pills{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  margin-top:1rem;
}

.hero-media{
  min-height:440px;
  border:1px solid rgba(26,20,48,.14);
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  box-shadow:
    0 24px 46px rgba(63,32,128,.18),
    0 0 32px rgba(138,92,255,.10),
    0 1px 0 rgba(255,255,255,.12) inset;
  background:#bfb2e8;
}

.hero-media img,
.hero-media video{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.98;
  filter:saturate(1.03) contrast(1.01);
}

.hero-media .overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.01), rgba(26,20,48,.42));
  pointer-events:none;
}

.hero-media .label{
  position:absolute;
  left:14px;
  bottom:14px;
  background:rgba(238,231,255,.92);
  border:1px solid rgba(255,255,255,.18);
  color:#1b1233;
  padding:.5rem .7rem;
  border-radius:999px;
  font-weight:900;
  max-width:calc(100% - 28px);
  box-shadow:
    0 14px 28px rgba(63,32,128,.18),
    0 0 20px rgba(138,92,255,.08);
}

/* =========================
   SECCIONES / GRID / CARDS
========================= */

section{
  padding:2.6rem 0;
}

section:nth-of-type(even){
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(138,92,255,.09) 100%);
}

section.soft-section{
  background:
    linear-gradient(180deg, rgba(138,92,255,.11) 0%, rgba(36,214,176,.03) 100%);
  border-top:1px solid rgba(26,20,48,.08);
  border-bottom:1px solid rgba(26,20,48,.08);
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}

.grid2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}

.card{
  border:1px solid rgba(26,20,48,.14);
  background:
    linear-gradient(180deg, rgba(238,231,255,.98) 0%, rgba(224,214,255,1) 100%);
  border-radius:var(--radius);
  padding:1.2rem;
  box-shadow:
    0 16px 34px rgba(63,32,128,.14),
    0 0 26px rgba(138,92,255,.06),
    0 1px 0 rgba(255,255,255,.42) inset;
}

.card.hover{
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.card.hover:hover{
  transform:translateY(-4px);
  background:linear-gradient(180deg, rgba(241,235,255,1) 0%, rgba(229,220,255,1) 100%);
  border-color:rgba(138,92,255,.28);
  box-shadow:
    0 24px 42px rgba(63,32,128,.18),
    0 0 28px rgba(138,92,255,.10),
    0 1px 0 rgba(255,255,255,.46) inset;
}

.card .meta{
  display:flex;
  gap:.6rem;
  align-items:center;
  color:#534d72;
  font-weight:900;
}

.card .meta .dot{
  width:10px;
  height:10px;
  border-radius:99px;
  background:var(--brand2);
}

.card .actions{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  margin-top:.95rem;
}

.service-card{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:1rem;
  align-items:center;
}

.thumb{
  width:120px;
  height:96px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(26,20,48,.14);
  background:#d6caf8;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.04);
}

/* =========================
   PRICING
========================= */

.pricing{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}

.price{
  position:relative;
  overflow:hidden;
}

.price::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--brand), var(--brand2));
  opacity:.95;
}

.price .tag{
  position:absolute;
  top:14px;
  right:14px;
  padding:.35rem .6rem;
  border-radius:999px;
  font-size:.8rem;
  font-weight:950;
  background:rgba(138,92,255,.16);
  color:#4d3fc8;
  border:1px solid rgba(138,92,255,.26);
  box-shadow:0 0 16px rgba(138,92,255,.08);
}

.price .amount{
  font-size:2.2rem;
  font-weight:950;
  margin:.35rem 0 .75rem;
  color:#170f2c;
  letter-spacing:-.02em;
}

.ul{
  margin:.65rem 0 0;
  padding-left:1.1rem;
  color:#534d72;
}

.ul li{
  margin:.25rem 0;
}

/* =========================
   FORMULARIOS
========================= */

.form{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.85rem;
}

.field label{
  display:block;
  font-weight:900;
  margin:0 0 .35rem;
  color:#1b1233;
}

.field input,
.field select,
.field textarea{
  width:100%;
  padding:.85rem .9rem;
  border-radius:14px;
  border:1px solid rgba(26,20,48,.16);
  background:linear-gradient(180deg, #f0e9ff 0%, #e5dbff 100%);
  color:var(--text);
  outline:none;
  transition:border-color .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow:inset 0 1px 2px rgba(26,20,48,.06);
}

.field input::placeholder,
.field textarea::placeholder{
  color:#7a7294;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:rgba(138,92,255,.50);
  background:linear-gradient(180deg, #f3ecff 0%, #e9e0ff 100%);
  box-shadow:
    0 0 0 4px rgba(138,92,255,.12),
    0 8px 18px rgba(138,92,255,.10),
    0 0 18px rgba(138,92,255,.08);
}

.field textarea{
  min-height:110px;
  resize:vertical;
}

.form .full{
  grid-column:1 / -1;
}

.notice{
  border-left:3px solid rgba(36,214,176,.80);
  padding:.6rem .9rem;
  background:linear-gradient(180deg, rgba(36,214,176,.10), rgba(36,214,176,.06));
  border-radius:14px;
  color:#1f5448;
}

/* =========================
   FOOTER
========================= */

.footer{
  padding:2.2rem 0;
  border-top:1px solid var(--line);
  color:#544d6a;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(224,214,255,.95) 100%);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:1rem;
}

.footer a{
  opacity:.92;
}

.footer a:hover{
  opacity:1;
}

.legal{
  font-size:.9rem;
  color:#6c6487;
}

/* =========================
   WHATSAPP FLOTANTE
========================= */

.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  min-height:54px;
  min-width:54px;
  padding:.8rem 1rem;
  border-radius:999px;
  background:linear-gradient(135deg,#31dfb6 0%, #22cfa7 100%);
  color:#08261f;
  font-weight:950;
  box-shadow:
    0 16px 28px rgba(24,53,45,.22),
    0 0 18px rgba(36,214,176,.12);
  border:1px solid rgba(255,255,255,.30);
  transition:transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.whatsapp:hover{
  transform:translateY(-1px);
  box-shadow:
    0 20px 34px rgba(24,53,45,.26),
    0 0 22px rgba(36,214,176,.16);
}

.whatsapp small{
  font-weight:900;
  opacity:.9;
}

/* =========================
   BODAS.NET AWARDS
========================= */

.awards-strip{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  align-items:center;
  margin-top:.6rem;
}

.awards-strip img{
  height:56px;
  width:auto;
  border-radius:12px;
  border:1px solid rgba(26,20,48,.14);
  background:linear-gradient(180deg, #f2ebff 0%, #e6dcff 100%);
  padding:6px;
  box-shadow:
    0 12px 24px rgba(63,32,128,.14),
    0 0 18px rgba(138,92,255,.08);
}

.awards-strip.small img{
  height:44px;
}

/* =========================
   ACCESIBILIDAD
========================= */

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:3px solid rgba(138,92,255,.44);
  outline-offset:2px;
}

/* =========================
   FONDO BG-PHOTO DESACTIVADO
========================= */

body.bg-photo::before,
body.bg-photo::after{
  display:none;
}

/* =========================
   HERO VIDEO
========================= */

.hero-video{
  position:relative;
  min-height:calc(100dvh - var(--header-h, 110px));
  width:100%;
  overflow:hidden;
  background:linear-gradient(180deg, #cbb9ff 0%, #b59bf5 100%);
}

.hero-video-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-video-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(26,20,48,.34), rgba(26,20,48,.68)),
    radial-gradient(circle at center, rgba(26,20,48,.06), rgba(26,20,48,.24));
}

.hero-video-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:grid;
  place-items:center;
  text-align:center;
  padding:1.4rem;
}

.hero-video-content .hero-copy-shell{
  max-width:min(920px, 94vw);
  padding:1.25rem 1.35rem;
  border-radius:24px;
  background:rgba(242,235,255,.10);
  backdrop-filter:blur(6px);
  box-shadow:
    0 14px 36px rgba(0,0,0,.18),
    0 0 28px rgba(138,92,255,.10);
}

.hero-video-title{
  margin:0;
  max-width:min(1000px, 92vw);
  font-size:clamp(2rem, 5vw, 4.6rem);
  line-height:1.08;
  font-weight:950;
  letter-spacing:-0.02em;
  color:#fff;
  text-wrap:balance;
  text-shadow:
    0 6px 22px rgba(0,0,0,.24),
    0 2px 6px rgba(0,0,0,.20),
    0 0 20px rgba(138,92,255,.12);
}

.hero-video-lead{
  margin:.9rem auto 0;
  max-width:760px;
  font-size:1.06rem;
  line-height:1.6;
  color:rgba(255,255,255,.92);
  text-shadow:0 2px 10px rgba(0,0,0,.20);
}

.hero-video-actions{
  display:flex;
  justify-content:center;
  gap:.75rem;
  flex-wrap:wrap;
  margin-top:1.2rem;
}

.hero-video .kicker{
  margin:0 0 .8rem;
  color:rgba(255,255,255,.94);
}

.hero-video .btn.ghost{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.20);
  color:#fff;
  box-shadow:none;
}

.hero-video .btn.ghost:hover{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.28);
}

/* =========================
   BRAND CAROUSEL
========================= */

.brand-carousel-section{
  padding:2.8rem 0;
}

.brand-carousel{
  position:relative;
  overflow:hidden;
  width:100%;
  margin-top:1.2rem;
  border:1px solid rgba(26,20,48,.14);
  border-radius:18px;
  background:
    linear-gradient(180deg, rgba(238,231,255,.99) 0%, rgba(223,213,255,1) 100%);
  box-shadow:
    0 18px 34px rgba(63,32,128,.14),
    0 0 22px rgba(138,92,255,.08),
    0 1px 0 rgba(255,255,255,.34) inset;
}

.brand-carousel::before,
.brand-carousel::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:70px;
  z-index:2;
  pointer-events:none;
}

.brand-carousel::before{
  left:0;
  background:linear-gradient(90deg, rgba(215,206,240,1) 0%, rgba(215,206,240,0) 100%);
}

.brand-carousel::after{
  right:0;
  background:linear-gradient(270deg, rgba(215,206,240,1) 0%, rgba(215,206,240,0) 100%);
}

.brand-carousel-track{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center;
  gap:2.5rem;
  width:max-content;
  padding:1.4rem 0;
  animation:brand-scroll 30s linear infinite;
}

.brand-carousel:hover .brand-carousel-track{
  animation-play-state:paused;
}

.brand-carousel-item{
  flex:0 0 auto !important;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
}

.brand-carousel-item img{
  display:block;
  width:auto;
  height:58px;
  max-width:160px;
  object-fit:contain;
  filter:none;
}

@keyframes brand-scroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:980px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-media{
    min-height:360px;
  }

  .pricing{
    grid-template-columns:1fr;
  }

  .grid3{
    grid-template-columns:1fr;
  }

  .grid2{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .form{
    grid-template-columns:1fr;
  }

  .header-inner{
    gap:.7rem;
    padding:.78rem 0 .95rem;
  }

  .site-nav{
    display:grid;
    grid-template-columns:1fr;
    gap:.55rem;
    width:100%;
  }

  .site-nav a{
    width:100%;
    text-align:center;
  }

  .brand-text{
    display:none;
  }

  .brand-logo{
    height:38px;
  }

  .navlinks{
    display:none;
  }

  .nav-cta{
    display:none;
  }

  .awards-strip img{
    height:50px;
  }

  .awards-strip.small img{
    height:40px;
  }

  .brand-carousel-track{
    gap:1.6rem;
    animation-duration:24s;
  }

  .brand-carousel-item{
    min-width:120px;
  }

  .brand-carousel-item img{
    height:46px;
    max-width:130px;
  }

  .brand-carousel::before,
  .brand-carousel::after{
    width:36px;
  }
}

@media (max-width:640px){
  .container{
    padding-left:14px;
    padding-right:14px;
  }

  .hero{
    padding:2.8rem 0 2rem;
  }

  .hero-card{
    padding:1.15rem;
  }

  .hero-media{
    min-height:290px;
  }

  .hero-media .label{
    left:10px;
    right:10px;
    bottom:10px;
    max-width:none;
    font-size:.92rem;
  }

  .hero-video-title{
    font-size:clamp(1.9rem, 8vw, 3rem);
    line-height:1.12;
    max-width:90vw;
  }

  .hero-video-content .hero-copy-shell{
    padding:1rem .95rem;
    border-radius:18px;
  }

  .hero-video-lead{
    font-size:.98rem;
  }

  .hero-video-actions{
    gap:.6rem;
  }

  .lang-flag{
    width:40px;
    height:40px;
    border-radius:10px;
  }

  .whatsapp{
    right:12px;
    bottom:12px;
    padding:.8rem;
  }

  .whatsapp small{
    display:none;
  }

  .service-card{
    grid-template-columns:1fr;
  }

  .thumb{
    width:100%;
    height:180px;
  }
}

@media (prefers-reduced-motion:reduce){
  .brand-carousel-track{
    animation:none;
  }
}

/* ===== VARIANTE LILA NEÓN MÁS MARCADA ===== */

body{
  background:
    radial-gradient(1200px 760px at 12% 0%, rgba(138,92,255,.32), transparent 56%),
    radial-gradient(900px 620px at 92% 8%, rgba(36,214,176,.10), transparent 58%),
    linear-gradient(180deg, #e8ddff 0%, #d4c6f2 100%);
}

/* =========================
   HEADER Y MENÚ MÁS LILA
========================= */

.site-header{
  background:rgba(220,206,255,.92);
  border-bottom:1px solid rgba(26,20,48,.18);
  box-shadow:
    0 10px 26px rgba(63,32,128,.14),
    0 0 24px rgba(138,92,255,.14);
}

header:not(.site-header){
  background:rgba(220,206,255,.88);
  border-bottom:1px solid rgba(26,20,48,.18);
}

.site-nav a{
  border:1px solid rgba(138,92,255,.24);
  background:
    linear-gradient(135deg,
      rgba(138,92,255,.28) 0%,
      rgba(226,214,255,.94) 42%,
      rgba(36,214,176,.06) 100%);
  color:#22163f;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    0 0 18px rgba(138,92,255,.08);
}

.site-nav a:hover{
  border-color:rgba(138,92,255,.42);
  background:
    linear-gradient(135deg,
      rgba(138,92,255,.38) 0%,
      rgba(228,216,255,.98) 42%,
      rgba(36,214,176,.08) 100%);
  color:#160f2a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    0 10px 24px rgba(63,32,128,.18),
    0 0 28px rgba(138,92,255,.16);
}

.site-nav a[aria-current="page"]{
  border-color:rgba(138,92,255,.50);
  background:
    linear-gradient(135deg,
      rgba(138,92,255,.48) 0%,
      rgba(232,222,255,.98) 45%,
      rgba(36,214,176,.10) 100%);
  color:#140d26;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    0 12px 26px rgba(63,32,128,.20),
    0 0 34px rgba(138,92,255,.18);
}

.lang-flag{
  background:#ebe1ff;
  border-color:rgba(138,92,255,.26);
  box-shadow:
    0 8px 18px rgba(63,32,128,.14),
    0 0 18px rgba(138,92,255,.08);
}

.lang-flag:hover,
.lang-flag.is-active{
  background:#dfd0ff;
  border-color:rgba(138,92,255,.44);
  box-shadow:
    0 10px 22px rgba(63,32,128,.18),
    0 0 24px rgba(138,92,255,.14);
}

/* =========================
   SUPERFICIES MÁS LILA
========================= */

.hero-card,
.card,
.brand-carousel{
  background:
    linear-gradient(180deg, rgba(235,225,255,.98) 0%, rgba(220,208,248,1) 100%);
  border-color:rgba(26,20,48,.16);
}

.card.hover:hover{
  background:
    linear-gradient(180deg, rgba(239,231,255,1) 0%, rgba(226,215,251,1) 100%);
  border-color:rgba(138,92,255,.30);
  box-shadow:
    0 24px 42px rgba(63,32,128,.18),
    0 0 30px rgba(138,92,255,.14),
    0 1px 0 rgba(255,255,255,.40) inset;
}

.thumb{
  background:#d9ccff;
  border-color:rgba(138,92,255,.22);
}

/* =========================
   HERO MÁS LILA
========================= */

.hero-card::before{
  background:
    radial-gradient(580px 220px at 18% 0%, rgba(138,92,255,.34), transparent 58%),
    radial-gradient(460px 200px at 85% 8%, rgba(36,214,176,.08), transparent 60%);
}

.hero-media{
  background:#b9a7f0;
}

.hero-media .overlay{
  background:linear-gradient(180deg, rgba(255,255,255,.01), rgba(26,20,48,.46));
}

.hero-video{
  background:linear-gradient(180deg, #c6b0ff 0%, #ab8ef3 100%);
}

.hero-video-overlay{
  background:
    linear-gradient(180deg, rgba(26,20,48,.36), rgba(26,20,48,.70)),
    radial-gradient(circle at center, rgba(26,20,48,.06), rgba(26,20,48,.26));
}

.hero-video-content .hero-copy-shell{
  background:rgba(240,230,255,.12);
  box-shadow:
    0 16px 38px rgba(0,0,0,.20),
    0 0 30px rgba(138,92,255,.14);
}

/* =========================
   BADGES / TAGS / FORM
========================= */

.badge{
  border-color:rgba(138,92,255,.32);
  background:linear-gradient(180deg, rgba(138,92,255,.22), rgba(138,92,255,.10));
  color:#4d38c9;
  box-shadow:
    0 10px 20px rgba(138,92,255,.16),
    0 0 22px rgba(138,92,255,.10);
}

.price .tag{
  background:rgba(138,92,255,.20);
  border-color:rgba(138,92,255,.30);
  color:#4a35c6;
}

.field input,
.field select,
.field textarea{
  background:linear-gradient(180deg, #f2eaff 0%, #e7dcff 100%);
  border-color:rgba(138,92,255,.20);
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:rgba(138,92,255,.54);
  box-shadow:
    0 0 0 4px rgba(138,92,255,.14),
    0 8px 18px rgba(138,92,255,.10),
    0 0 22px rgba(138,92,255,.10);
}

/* =========================
   CARRUSEL Y FOOTER MÁS LILA
========================= */

.brand-carousel::before{
  background:linear-gradient(90deg, rgba(215,206,240,1) 0%, rgba(215,206,240,0) 100%);
}

.brand-carousel::after{
  background:linear-gradient(270deg, rgba(215,206,240,1) 0%, rgba(215,206,240,0) 100%);
}

.footer{
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(214,201,244,.95) 100%);
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.25rem;
}

.blog-card{
  overflow:hidden;
  padding:0;
}

.blog-card-body{
  padding:1rem 1.1rem 1.2rem;
}

.blog-cover{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  border-radius:14px;
}

.blog-card .blog-cover{
  width:100%;
  aspect-ratio:16/6;
  object-fit:cover;
  border-radius:0;
}

.blog-cover-full{
  display:block;
  width:100%;
  max-width:560px;
  aspect-ratio:16/10;
  object-fit:cover;
  margin:1rem auto 1.25rem;
  border-radius:14px;
}

.blog-title{
  margin:.35rem 0 .6rem;
}

.blog-title a{
  text-decoration:none;
  color:inherit;
}

.blog-excerpt,
.blog-meta,
.blog-content p{
  line-height:1.7;
}

.blog-meta{
  opacity:.8;
  font-size:.95rem;
}

.blog-article{
  max-width:900px;
  margin:0 auto;
}

.blog-content p + p{
  margin-top:1rem;
}

.blog-back{
  margin-top:1.5rem;
}

.admin-panel{
  max-width:1100px;
}

.admin-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1rem;
  flex-wrap:wrap;
}

.admin-actions{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
}

.blog-form{
  display:grid;
  gap:1rem;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1rem;
}

.blog-label{
  display:block;
  margin-bottom:.4rem;
  font-weight:600;
}

.blog-input{
  width:100%;
  padding:.9rem 1rem;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:inherit;
}

.blog-textarea{
  min-height:260px;
  resize:vertical;
}

.blog-checkbox{
  display:flex;
  align-items:center;
  gap:.6rem;
}

.blog-admin-list{
  display:grid;
  gap:.9rem;
}

.blog-admin-row{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  padding:1rem 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  flex-wrap:wrap;
}

.blog-admin-row:last-child{
  border-bottom:0;
}

.blog-admin-actions{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  align-items:center;
}

.blog-admin-actions form{
  margin:0;
}

.blog-cover-admin{
  max-width:240px;
  margin:.5rem 0;
}

.alert{
  padding:1rem;
  border-radius:12px;
  margin-bottom:1rem;
}

.alert-error{
  background:rgba(255,80,80,.12);
  border:1px solid rgba(255,80,80,.22);
}

@media (max-width:768px){
  .blog-admin-row{
    align-items:flex-start;
  }
}