/* =========================================================
   TROVAS PARA EL MUNDO — Langaruto y Cucaracho
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,600&display=swap');

:root{
  --rojo: #e0302d;
  --rojo-dark: #a91f1c;
  --azul: #1c3f8f;
  --azul-dark: #122a63;
  --amarillo: #ffcc00;
  --amarillo-dark: #e6ac00;
  --verde: #2f9e44;
  --crema: #fff8ea;
  --crema2: #fff1cf;
  --tinta: #241408;
  --marron: #6b3f1d;
  --blanco: #ffffff;

  --font-display: 'Fredoka', 'Arial Rounded MT Bold', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 22px;
  --shadow-lg: 0 20px 45px -12px rgba(36,20,8,0.35);
  --shadow-sm: 0 8px 20px -8px rgba(36,20,8,0.28);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--crema);
  color: var(--tinta);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 8% 15%, rgba(255,204,0,0.14), transparent 40%),
    radial-gradient(circle at 92% 30%, rgba(28,63,143,0.12), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(224,48,45,0.10), transparent 45%);
}
img{ max-width:100%; display:block; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; line-height:1.08; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
.container{ width:min(1180px, 92%); margin-inline:auto; }
.section-pad{ padding: clamp(60px,9vw,120px) 0; }

::selection{ background: var(--amarillo); color:var(--tinta); }

.tag{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--blanco); color: var(--rojo);
  border: 2px dashed var(--rojo);
  padding: 7px 18px; border-radius: 999px;
  font-family: var(--font-display); font-weight:600; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transform: rotate(-2deg);
}
.section-head{ text-align:center; max-width:720px; margin: 0 auto 48px; }
.section-head h2{
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  color: var(--azul);
  margin-top:14px;
  -webkit-text-stroke: 0.5px var(--azul-dark);
}
.section-head h2 span{ color: var(--rojo); }
.section-head p{ margin-top:14px; font-size:1.05rem; color:#4a3823; }

/* ---------- scroll reveal ---------- */
.reveal{ opacity:0; transform: translateY(46px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in{ opacity:1; transform:none; }
.reveal-left{ opacity:0; transform: translateX(-60px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal-left.in{ opacity:1; transform:none; }
.reveal-right{ opacity:0; transform: translateX(60px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal-right.in{ opacity:1; transform:none; }
.pop{ opacity:0; transform: scale(.7) rotate(-6deg); transition: opacity .6s ease, transform .6s cubic-bezier(.34,1.56,.64,1); }
.pop.in{ opacity:1; transform:none; }

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader{
  position:fixed; inset:0; z-index:9999;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px;
  background: linear-gradient(160deg, var(--azul) 0%, var(--azul-dark) 55%, #0c1c42 100%);
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide{ opacity:0; visibility:hidden; pointer-events:none; }
#preloader .logo-wrap{
  width: min(280px, 60vw);
  animation: floaty 2.4s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
}
#preloader .bar{
  width: min(240px, 60vw); height:10px; border-radius:999px;
  background: rgba(255,255,255,0.18); overflow:hidden;
  border: 2px solid rgba(255,255,255,0.35);
}
#preloader .bar i{
  display:block; height:100%; width:0%;
  background: linear-gradient(90deg, var(--amarillo), var(--rojo));
  border-radius:999px; transition: width .25s ease;
}
#preloader .msg{ color: var(--crema); font-family: var(--font-display); letter-spacing:.08em; text-transform:uppercase; font-size:.85rem; opacity:.85;}
@keyframes floaty{ 0%,100%{ transform: translateY(0) rotate(-2deg);} 50%{ transform: translateY(-14px) rotate(2deg);} }

/* =========================================================
   HEADER
   ========================================================= */
header.site{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px clamp(16px,4vw,48px);
  background: rgba(255,248,234,0.97);
  border-bottom: 3px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
header.site.scrolled{ border-color: var(--amarillo); box-shadow: 0 6px 24px -10px rgba(0,0,0,0.25); padding-block: 8px; }
header.site .brand{ display:flex; align-items:center; gap:10px; }
header.site .brand img{ width:52px; transition: transform .3s ease; }
header.site .brand:hover img{ transform: rotate(-8deg) scale(1.08); }
header.site .brand strong{ font-family: var(--font-display); color:var(--azul); font-size:1.05rem; line-height:1.05; display:block; }
header.site .brand small{ color:var(--rojo); font-weight:600; letter-spacing:.04em; }

nav.main-nav ul{ display:flex; gap: clamp(10px,1.8vw,28px); align-items:center; }
nav.main-nav a{
  font-weight:600; font-size:.94rem; color: var(--tinta);
  position:relative; padding: 6px 2px;
}
nav.main-nav a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:3px; width:0%;
  background: var(--rojo); border-radius:2px; transition: width .25s ease;
}
nav.main-nav a:hover::after{ width:100%; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-display); font-weight:600; letter-spacing:.02em;
  padding: 13px 26px; border-radius: 999px; border:none;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, filter .25s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover{ transform: translateY(-4px) scale(1.03); filter:brightness(1.06); }
.btn:active{ transform: translateY(-1px) scale(0.99); }
.btn-whatsapp{ background: linear-gradient(135deg,#33d178,#1fa855); color:#fff; }
.btn-primary{ background: linear-gradient(135deg, var(--amarillo), var(--amarillo-dark)); color: var(--tinta); }
.btn-outline{ background: transparent; border:2.5px solid var(--azul); color:var(--azul); box-shadow:none; }
.btn-ghost-header{ display:none; }

.burger{ display:none; }

/* =========================================================
   MARQUEE STRIPS
   ========================================================= */
.marquee{
  overflow:hidden; white-space:nowrap; position:relative;
  padding: 14px 0;
  border-top: 3px solid rgba(0,0,0,0.06);
  border-bottom: 3px solid rgba(0,0,0,0.06);
}
.marquee .track{ display:inline-flex; gap:2.4rem; animation: marquee-left 26s linear infinite; }
.marquee.reverse .track{ animation-name: marquee-right; }
.marquee .track span{
  font-family: var(--font-display); font-weight:600; font-size: clamp(1.1rem,2.4vw,1.7rem);
  display:inline-flex; align-items:center; gap: .6em;
}
.marquee .track span::after{ content:"★"; opacity:.6; font-size:.8em; margin-left:.6em; }
@keyframes marquee-left{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
@keyframes marquee-right{ from{ transform: translateX(-50%);} to{ transform: translateX(0);} }

.marquee--red{ background: var(--rojo); color:#fff; }
.marquee--blue{ background: var(--azul); color:#fff; }
.marquee--yellow{ background: var(--amarillo); color: var(--tinta); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; min-height: 100svh;
  display:flex; align-items:center;
  padding-top: 96px;
  overflow:hidden;
  background: linear-gradient(180deg, var(--crema2) 0%, var(--crema) 70%);
}
.hero .blob{ position:absolute; border-radius:50%; filter: blur(6px); opacity:.55; animation: blobmove 12s ease-in-out infinite; z-index:0; }
.hero .blob.b1{ width:340px;height:340px; background: var(--amarillo); top:-80px; left:-100px; animation-duration:14s; }
.hero .blob.b2{ width:260px;height:260px; background: var(--rojo); bottom:-60px; right:-60px; opacity:.35; animation-duration:16s; animation-delay:1s;}
.hero .blob.b3{ width:180px;height:180px; background: var(--verde); top:40%; right:8%; opacity:.3; animation-duration:10s; animation-delay:2s;}
@keyframes blobmove{ 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(30px,-24px) scale(1.12);} }

.hero .container{ display:grid; grid-template-columns: 1.05fr .95fr; gap:40px; align-items:center; position:relative; z-index:2; }
.hero-copy .tag{ margin-bottom:18px; }
.hero-copy h1{
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  color: var(--rojo);
  text-shadow: 3px 3px 0 var(--amarillo);
}
.hero-copy h1 em{ font-style:normal; color: var(--azul); text-shadow: 3px 3px 0 var(--amarillo); display:block; }
.hero-copy .sub{
  margin-top:18px; font-size: clamp(1.05rem,2vw,1.3rem); color:#4a3823; font-weight:600; max-width: 46ch;
}
.hero-copy .cta-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.hero-copy .stats{ display:flex; gap: clamp(18px,4vw,40px); margin-top:44px; flex-wrap:wrap; }
.hero-copy .stats div{ display:flex; flex-direction:column; }
.hero-copy .stats strong{ font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); color:var(--azul); }
.hero-copy .stats span{ font-size:.82rem; font-weight:600; color:#6a5a44; text-transform:uppercase; letter-spacing:.04em; }

.hero-art{ position:relative; display:flex; justify-content:center; }
.hero-art .frame{
  position:relative; width:min(420px,90%);
  animation: floaty 5s ease-in-out infinite;
}
.hero-art .frame img{ position:relative; z-index:2; filter: drop-shadow(0 25px 30px rgba(0,0,0,0.25)); }
.hero-art .ring{
  position:absolute; inset: -6%; border-radius:50%;
  background: conic-gradient(from 0deg, var(--rojo), var(--amarillo), var(--verde), var(--azul), var(--rojo));
  z-index:1; opacity:.9; animation: spin 18s linear infinite;
  -webkit-mask: radial-gradient(closest-side, transparent 78%, #000 80%);
          mask: radial-gradient(closest-side, transparent 78%, #000 80%);
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.hero-art .sticker{
  position:absolute; background:#fff; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; text-align:center;
  box-shadow: var(--shadow-sm); border:3px solid var(--tinta);
  animation: floaty 4s ease-in-out infinite;
}
.hero-art .sticker.s1{ width:110px;height:110px; top:0; right:-8px; color:var(--rojo); font-size:.85rem; transform:rotate(8deg); animation-delay:.4s;}
.hero-art .sticker.s2{ width:92px;height:92px; bottom:6%; left:-14px; color:var(--azul); font-size:.8rem; transform:rotate(-10deg); animation-delay:1s;}

.scroll-cue{
  position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  font-size:.75rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--azul);
}
.scroll-cue .mouse{ width:26px;height:42px; border:3px solid var(--azul); border-radius:16px; position:relative; }
.scroll-cue .mouse::after{ content:""; position:absolute; top:6px; left:50%; width:4px;height:9px; background:var(--rojo); border-radius:3px; transform:translateX(-50%); animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot{ 0%{ opacity:1; top:6px;} 70%{opacity:0; top:22px;} 100%{opacity:0; top:6px;} }

/* =========================================================
   ICON DIVIDER
   ========================================================= */
.icon-strip{ display:flex; justify-content:center; gap: clamp(20px,6vw,60px); padding: 26px 0; flex-wrap:wrap; }
.icon-strip svg{ width:54px; height:54px; animation: wiggle 3.6s ease-in-out infinite; }
.icon-strip svg:nth-child(2n){ animation-delay:.4s; }
.icon-strip svg:nth-child(3n){ animation-delay:.8s; }
@keyframes wiggle{ 0%,100%{ transform: rotate(-6deg);} 50%{ transform: rotate(6deg);} }

/* =========================================================
   BIO
   ========================================================= */
.bio{ background: var(--blanco); position:relative; }
.bio .container{ display:grid; grid-template-columns: .85fr 1.15fr; gap:56px; align-items:center; }
.bio-photo{ position:relative; }
.bio-photo .frame-photo{
  border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--blanco); outline: 3px solid var(--amarillo);
  transform: rotate(-3deg);
}
.bio-photo .frame-photo img{ width:100%; }
.bio-photo .badge-years{
  position:absolute; bottom:-26px; right:-18px;
  width:130px;height:130px; border-radius:50%;
  background: var(--rojo); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-family: var(--font-display); box-shadow: var(--shadow-sm); border:4px solid #fff;
  transform: rotate(8deg); text-align:center; animation: floaty 4.5s ease-in-out infinite;
}
.bio-photo .badge-years strong{ font-size:2.1rem; line-height:1; }
.bio-photo .badge-years span{ font-size:.62rem; text-transform:uppercase; letter-spacing:.06em; }

.bio-copy h2{ font-size: clamp(2rem,4vw,2.7rem); color:var(--azul); }
.bio-copy h2 span{ color:var(--rojo); }
.bio-copy p{ margin-top:16px; color:#4a3823; line-height:1.75; font-size:1.02rem; }
.bio-copy .signature{ margin-top:22px; font-family: var(--font-display); color:var(--azul); font-size:1.1rem; }
.bio-highlights{ display:grid; grid-template-columns: repeat(2,1fr); gap:14px; margin-top:28px; }
.bio-highlights li{
  background: var(--crema2); border-radius:14px; padding:12px 14px;
  font-weight:600; font-size:.88rem; display:flex; align-items:center; gap:10px;
  border-left: 5px solid var(--amarillo);
}
.bio-highlights li b{ color: var(--rojo); font-family: var(--font-display); display:block; font-size:1rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.services{ background: linear-gradient(180deg, var(--crema) 0%, #fff 100%); }
.services-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
.service-card{
  background:#fff; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); position:relative; overflow:hidden;
  border: 3px solid transparent; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.service-card::before{
  content:""; position:absolute; top:-40px; right:-40px; width:120px;height:120px; border-radius:50%;
  background: var(--accent, var(--amarillo)); opacity:.18; transition: transform .4s ease;
}
.service-card:hover{ transform: translateY(-10px) rotate(-1deg); border-color: var(--accent, var(--amarillo)); box-shadow: var(--shadow-lg); }
.service-card:hover::before{ transform: scale(1.5); }
.service-card .ico{
  width:62px;height:62px; border-radius:18px; display:flex; align-items:center; justify-content:center;
  background: var(--accent, var(--amarillo)); margin-bottom:18px; box-shadow: var(--shadow-sm);
}
.service-card .ico svg{ width:32px;height:32px; }
.service-card h3{ font-size:1.24rem; color:var(--azul); margin-bottom:8px; }
.service-card p{ font-size:.92rem; color:#5a4a34; line-height:1.6; }

/* =========================================================
   VIDEO GALLERY (drag / scroll horizontal)
   ========================================================= */
.videos{ background: var(--azul); position:relative; overflow:hidden; }
.videos::before, .videos::after{
  content:""; position:absolute; width:400px;height:400px; border-radius:50%;
  background: rgba(255,255,255,0.05);
}
.videos::before{ top:-160px; left:-120px; }
.videos::after{ bottom:-180px; right:-140px; background: rgba(255,204,0,0.08); }
.videos .section-head h2{ color:#fff; }
.videos .section-head p{ color:#cfe0ff; }
.videos .section-head .tag{ background: var(--amarillo); border-color:#fff; color:var(--azul-dark); }

.video-scroller{
  display:flex; gap:22px; overflow-x:auto; padding: 10px 4px 26px;
  scroll-snap-type: x mandatory; cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--amarillo) transparent;
}
.video-scroller:active{ cursor:grabbing; }
.video-scroller::-webkit-scrollbar{ height:8px; }
.video-scroller::-webkit-scrollbar-thumb{ background: var(--amarillo); border-radius:10px; }
.video-card{
  position:relative; flex:0 0 auto; width:min(320px,74vw); aspect-ratio: 9/13;
  border-radius:20px; overflow:hidden; scroll-snap-align:center;
  box-shadow: var(--shadow-lg); border:4px solid rgba(255,255,255,0.25);
  transition: transform .3s ease;
}
.video-card:hover{ transform: translateY(-8px) scale(1.02); }
.video-card img{ width:100%;height:100%; object-fit:cover; }
.video-card .play{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
}
.video-card .play span{
  width:64px;height:64px; border-radius:50%; background: rgba(255,255,255,0.92);
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.video-card:hover .play span{ transform: scale(1.15); }
.video-card .play svg{ width:24px;height:24px; margin-left:3px; }
.video-card .label{
  position:absolute; left:14px; bottom:14px; color:#fff; font-family: var(--font-display);
  font-size:.95rem; text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
.scroller-hint{ text-align:center; color: #cfe0ff; font-size:.85rem; margin-top:6px; font-weight:600; }
.scroller-hint svg{ width:16px;height:16px; vertical-align:-3px; margin:0 4px; }

/* =========================================================
   TRIBUTOS (artistas aliados)
   ========================================================= */
.tributos{ background: var(--rojo-dark); position:relative; overflow:hidden; }
.tributos::before, .tributos::after{
  content:""; position:absolute; width:400px;height:400px; border-radius:50%;
  background: rgba(255,255,255,0.05);
}
.tributos::before{ top:-160px; right:-120px; }
.tributos::after{ bottom:-180px; left:-140px; background: rgba(255,204,0,0.08); }
.tributos .section-head h2{ color:#fff; }
.tributos .section-head p{ color:#ffe3cf; }
.tributos .section-head .tag{ background: var(--amarillo); border-color:#fff; color:var(--azul-dark); }
.tributos .scroller-hint{ color:#ffe3cf; }

/* video modal */
#video-modal{
  position:fixed; inset:0; background: rgba(10,10,20,0.88); z-index:2000;
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; visibility:hidden; transition: opacity .3s ease, visibility .3s ease;
}
#video-modal.open{ opacity:1; visibility:visible; }
#video-modal .box{ position:relative; width:min(420px,92vw); }
#video-modal video{ width:100%; max-height:82vh; border-radius:16px; background:#000; }
#video-modal .close{
  position:absolute; top:-46px; right:0; width:38px;height:38px; border-radius:50%;
  background:#fff; border:none; font-size:1.2rem; font-weight:700; color:var(--tinta);
}

/* =========================================================
   PACKAGE BUILDER
   ========================================================= */
.builder{ position:relative; }
.builder-box{
  background:#fff; border-radius:28px; box-shadow: var(--shadow-lg); padding: clamp(22px,4vw,44px);
  border: 4px dashed var(--amarillo);
}
.builder-step{ margin-bottom:30px; }
.builder-step h4{
  font-family: var(--font-display); color:var(--azul); font-size:1.15rem; margin-bottom:14px;
  display:flex; align-items:center; gap:10px;
}
.builder-step h4 i{
  width:30px;height:30px; border-radius:50%; background:var(--rojo); color:#fff; font-style:normal;
  display:flex; align-items:center; justify-content:center; font-size:.9rem; font-family: var(--font-display);
}
.chip-row{ display:flex; flex-wrap:wrap; gap:12px; }
.chip{
  padding:12px 18px; border-radius:14px; border:2.5px solid #e7dcc4; background:#fffaf0;
  font-weight:600; font-size:.92rem; display:flex; align-items:center; gap:8px;
  transition: all .2s ease; user-select:none;
}
.chip:hover{ border-color: var(--amarillo); transform: translateY(-2px); }
.chip.active{ background: var(--rojo); border-color: var(--rojo); color:#fff; box-shadow: var(--shadow-sm); }
.chip .em{ font-size:1.1rem; }

.builder-summary{
  margin-top:10px; background: var(--crema2); border-radius:18px; padding:20px 24px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px;
}
.builder-summary .txt{ font-weight:600; color:#4a3823; font-size:.95rem; max-width:60ch; }
.builder-summary .txt b{ color:var(--rojo); }
#resumen-lista{ color:var(--azul); }

/* =========================================================
   QUOTE STEPS
   ========================================================= */
.quote{ background: linear-gradient(160deg, var(--rojo) 0%, var(--rojo-dark) 100%); color:#fff; position:relative; overflow:hidden; }
.quote .section-head h2{ color:#fff; }
.quote .section-head p{ color: #ffe3cf; }
.quote .section-head .tag{ background:#fff; border-color:var(--amarillo); color:var(--rojo); }
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; margin-bottom:44px; }
.step{
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.25);
  border-radius:20px; padding:28px 22px; text-align:center; backdrop-filter: blur(4px);
  transition: transform .3s ease;
}
.step:hover{ transform: translateY(-8px); }
.step .num{
  width:52px;height:52px; margin:0 auto 16px; border-radius:50%;
  background: var(--amarillo); color: var(--tinta); font-family: var(--font-display); font-size:1.3rem;
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 16px rgba(0,0,0,.25);
}
.step h3{ font-size:1.15rem; margin-bottom:8px; }
.step p{ font-size:.9rem; color:#ffe3cf; line-height:1.55; }
.quote-cta{ text-align:center; }
.quote-cta .btn{ font-size:1.05rem; padding:18px 38px; }
.quote-cta p{ margin-top:14px; color:#ffe3cf; font-size:.85rem; }

/* =========================================================
   FOOTER
   ========================================================= */
footer.site{ background: #0f1f47; color:#cfe0ff; padding: 56px 0 26px; }
footer.site .foot-top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:36px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,0.12); }
footer.site .foot-brand{ display:flex; align-items:center; gap:12px; max-width:320px; }
footer.site .foot-brand img{ width:60px; }
footer.site .foot-brand strong{ font-family: var(--font-display); color:#fff; display:block; }
footer.site .foot-brand p{ font-size:.85rem; margin-top:6px; color:#a9bde0; }
footer.site nav ul{ display:flex; flex-direction:column; gap:10px; }
footer.site h5{ font-family: var(--font-display); color:var(--amarillo); margin-bottom:14px; font-size:.95rem; text-transform:uppercase; letter-spacing:.06em; }
footer.site .socials{ display:flex; gap:12px; }
footer.site .socials a{
  width:42px;height:42px; border-radius:50%; background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center; transition: transform .25s ease, background .25s ease;
}
footer.site .socials a:hover{ background: var(--amarillo); color:var(--tinta); transform: translateY(-4px) rotate(-6deg); }
footer.site .foot-bottom{ padding-top:22px; display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px; font-size:.8rem; color:#8098c4; }

/* whatsapp float button */
.wa-float{
  position:fixed; right:20px; bottom:20px; z-index:400;
  width:64px;height:64px; border-radius:50%; background:#25D366; box-shadow:0 10px 24px rgba(0,0,0,.3);
  display:flex; align-items:center; justify-content:center; animation: pulse 2.4s ease-in-out infinite;
}
.wa-float svg{ width:32px;height:32px; }
@keyframes pulse{ 0%,100%{ box-shadow:0 10px 24px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.5);} 50%{ box-shadow:0 10px 24px rgba(0,0,0,.3), 0 0 0 14px rgba(37,211,102,0);} }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-art{ order:-1; }
  .bio .container{ grid-template-columns:1fr; }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .steps{ grid-template-columns:1fr; }
}
@media (max-width: 720px){
  nav.main-nav{ position:fixed; top:0; right:0; height:100vh; width:min(300px,78vw);
    background: var(--crema); box-shadow:-10px 0 30px rgba(0,0,0,.2);
    transform: translateX(100%); transition: transform .35s ease; padding: 90px 26px; z-index:490; }
  nav.main-nav.open{ transform: translateX(0); }
  nav.main-nav ul{ flex-direction:column; align-items:flex-start; gap:22px; }
  .burger{ display:flex; flex-direction:column; gap:5px; background:none; border:none; padding:8px; z-index:600; }
  .burger span{ width:26px;height:3px; background:var(--azul); border-radius:2px; transition:.3s; }
  header.site .cta-header{ display:none; }
  .services-grid{ grid-template-columns:1fr; }
  .bio-highlights{ grid-template-columns:1fr; }
  .foot-top{ flex-direction:column; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
