
/* ============ TOKENS ============ */
:root{
  --blue:#1E88C7;
  --blue-dark:#0F5A82;
  --blue-ink:#0B3B57;
  --red:#E2222E;
  --orange:#F2A200;
  --purple:#4E3789;
  --purple-deep:#37285F;
  --yellow:#F6D000;
  --lime:#96AA00;
  --ink:#19191C;
  --paper:#FFFDF8;
  --paper-warm:#FFF6E7;
  --line:#EBE2CE;
  --white:#FFFFFF;
  --radius:12px;
  --shadow: 0 18px 40px -20px rgba(15,90,130,0.35);
  --maxw:1180px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; overflow-x:hidden;}
body{ overflow-x:hidden; width:100%; }
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}
body{
  font-family:'Work Sans', sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ font-family:'Fredoka', sans-serif; font-weight:600; line-height:1.12; color:var(--blue-ink); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
ul{ list-style:none; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Work Sans',sans-serif; font-weight:700; font-size:13px;
  letter-spacing:.14em; text-transform:uppercase; color:var(--red);
  margin-bottom:14px;
}
.eyebrow svg{ width:16px; height:16px; flex:none; }
.section{ padding:96px 0 108px; position:relative; }
.section-head{ max-width:660px; margin-bottom:52px; }
.section-head p{ font-size:17px; color:#4A4A52; margin-top:14px; }
:focus-visible{ outline:3px solid var(--orange); outline-offset:3px; border-radius:6px; }

/* ============ FIGURA ICON (signature motif) ============ */
.figura{ display:inline-block; }

/* ============ ARC DIVIDER (signature motif: the roof) ============ */
.arc{ display:block; width:100%; line-height:0; margin-top:-1px; }
.arc svg{ width:100%; height:auto; display:block; }

/* ============ NAV ============ */
header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:#FFFFFF;
  border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 28px; max-width:var(--maxw); margin:0 auto; }
.brand{ display:flex; align-items:center; gap:10px; font-family:'Fredoka'; font-weight:600; font-size:19px; color:var(--blue-ink); }
.brand img{ height:60px; width:auto; }
.navlinks{ display:flex; align-items:center; gap:2px; }
.navlinks a{
  padding:10px 14px; border-radius:9px; font-weight:600; font-size:14.5px; color:var(--ink); opacity:.72;
  transition:.2s;
}
.navlinks a:hover{ opacity:1; background:var(--paper-warm); }
.navlinks a.active{ opacity:1; background:var(--blue); color:#fff; }
.nav-cta{
  background:var(--red); color:#fff !important; padding:11px 20px !important; border-radius:9px;
  font-weight:700 !important; opacity:1 !important; box-shadow:0 8px 18px -6px rgba(226,34,46,.55);
}
.nav-cta:hover{ background:#c81c27; opacity:1 !important; }
.burger{ display:none; width:44px; height:44px; align-items:center; justify-content:center; border-radius:12px; }
.burger:hover{ background:var(--paper-warm); }
.burger svg{ width:24px; height:24px; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; gap:10px; padding:15px 26px; border-radius:10px;
  font-weight:700; font-size:15.5px; transition:.2s transform,.2s box-shadow,.2s background;
}
.btn-primary{ background:var(--red); color:#fff; box-shadow:0 10px 24px -8px rgba(226,34,46,.55); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 28px -8px rgba(226,34,46,.6); }
.btn-outline{ background:transparent; color:var(--blue-ink); border:2px solid var(--blue-ink); }
.btn-outline:hover{ background:var(--blue-ink); color:#fff; }
.btn-light{ background:#fff; color:var(--blue-ink); }
.btn-light:hover{ transform:translateY(-2px); }
.btn-whatsapp{ background:#25D366; color:#fff; }
.btn-whatsapp:hover{ transform:translateY(-2px); background:#1fbd5a; }

/* ============ HERO ============ */
.hero{
  background:linear-gradient(160deg, var(--blue-ink) 0%, var(--blue-dark) 45%, var(--blue) 100%);
  color:#fff; padding:88px 0 0; position:relative; overflow:hidden;
}
.hero .wrap{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; padding-bottom:70px; position:relative; z-index:2;}
.hero .eyebrow{ color:var(--yellow); }
.hero h1{ font-size:clamp(34px,4.6vw,56px); color:#fff; }
.hero p.lead{ font-size:18px; color:#DCEBF6; margin-top:20px; max-width:520px; }
.hero .ctas{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }
.hero-badges{ display:flex; gap:12px; margin-top:44px; flex-wrap:wrap; }
.hero-badge{
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.22); border-radius:8px;
  padding:9px 16px; font-size:13.5px; font-weight:600; display:flex; align-items:center; gap:8px;
}
.hero-badge .dot{ width:8px; height:8px; border-radius:50%; flex:none; }
.hero-art{ position:relative; }
.hero-house{ width:100%; height:auto; filter:drop-shadow(0 30px 40px rgba(0,0,0,.35)); }
.hero-glow{ position:absolute; inset:-10%; background:radial-gradient(circle at 60% 30%, rgba(246,208,0,.18), transparent 60%); pointer-events:none; }

/* ============ STAT STRIP ============ */
.statstrip{ background:var(--paper-warm); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.statstrip .wrap{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.stat{ padding:26px 20px; text-align:center; border-left:1px solid var(--line); }
.stat:first-child{ border-left:none; }
.stat .num{ font-family:'Fredoka'; font-size:30px; font-weight:600; color:var(--red); }
.stat .lbl{ font-size:13.5px; color:#5b5b62; font-weight:600; margin-top:4px; }

/* ============ NOSOTROS ============ */
.nosotros-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.nosotros-grid p{ font-size:17px; color:#40404a; margin-bottom:16px;}
.mv-cards{ display:grid; gap:18px; }
.mv-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow); }
.mv-card h3{ font-size:19px; display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.mv-card p{ font-size:15.5px; color:#4A4A52; }
.mv-card .ic{ width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex:none;}
.valores{ margin-top:52px; }
.valores-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin-top:24px; }

/* ============ GALERÍA DE FOTOS (Nosotros) ============ */
.gallery-block{ margin-top:64px; }
.gallery-wrap{ position:relative; }
.gallery-track{
  display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  border-radius:18px; -ms-overflow-style:none; scrollbar-width:none; padding-bottom:2px;
}
.gallery-track::-webkit-scrollbar{ display:none; }
.gallery-slide{
  flex:0 0 auto; width:min(560px, 82%); aspect-ratio:4/3; scroll-snap-align:start;
  border-radius:18px; overflow:hidden; background:var(--paper-warm); box-shadow:var(--shadow);
}
.gallery-slide img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%;
  background:#fff; box-shadow:0 10px 24px -8px rgba(0,0,0,.3); display:flex; align-items:center; justify-content:center;
  color:var(--blue-ink); z-index:5;
}
.gallery-arrow:hover{ background:var(--blue); color:#fff; }
.gallery-arrow.prev{ left:-14px; }
.gallery-arrow.next{ right:-14px; }
.gallery-dots{ display:flex; justify-content:center; gap:7px; margin-top:16px; }
.gallery-dots span{ width:7px; height:7px; border-radius:50%; background:var(--line); cursor:pointer; transition:.2s; }
.gallery-dots span.active{ background:var(--blue); width:20px; border-radius:5px; }

/* ============ VIDEOS (Nosotros) ============ */
.video-block{ margin-top:64px; }
.video-grid{ display:flex; gap:24px; flex-wrap:wrap; justify-content:center; }
.video-card{ width:min(280px, 44vw); }
.video-card video{
  width:100%; aspect-ratio:9/16; border-radius:18px; background:#000; box-shadow:var(--shadow); object-fit:cover; display:block;
}
.video-card p{ margin-top:12px; font-size:14px; color:#4A4A52; text-align:center; }
.valor{ text-align:center; }
.valor .vfig{ width:46px; height:46px; margin:0 auto 12px; border-radius:9px; display:flex; align-items:center; justify-content:center; }
.valor h4{ font-size:15.5px; margin-bottom:6px;}
.valor p{ font-size:13.5px; color:#5b5b62; }

/* ============ PORTAFOLIO ============ */
.port-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.port-card{
  background:#fff; border-radius:14px; padding:34px 28px; border:1px solid var(--line);
  box-shadow:var(--shadow); position:relative; overflow:hidden; transition:.25s transform;
}
.port-card:hover{ transform:translateY(-6px); }
.port-card .bar{ position:absolute; top:0; left:0; right:0; height:6px; }
.port-card .ic{ width:56px; height:56px; border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.port-card h3{ font-size:21px; margin-bottom:10px; }
.port-card p{ font-size:15.5px; color:#4A4A52; }

/* ============ EQUIPO ============ */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.team-card{ background:#fff; border:1px solid var(--line); border-radius:12px; overflow:hidden; box-shadow:var(--shadow); text-align:center; padding-bottom:22px; }
.team-avatar{ height:140px; display:flex; align-items:center; justify-content:center; }
.team-avatar span{ font-family:'Fredoka'; font-size:34px; font-weight:600; color:#fff; }
.team-card h3{ font-size:17px; margin-top:18px; padding:0 16px; }
.team-role{ font-size:13px; color:var(--red); font-weight:700; margin-top:4px; }
.team-card p{ font-size:13.5px; color:#5b5b62; margin-top:10px; padding:0 18px; }

/* ============ TESTIMONIOS ============ */
.test-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.test-card{ background:var(--blue-ink); color:#fff; border-radius:12px; padding:30px; position:relative; }
.test-card::before{
  content:'“'; font-family:Georgia,serif; font-size:70px; color:var(--yellow); position:absolute; top:6px; left:20px; opacity:.35; line-height:1;
}
.test-card p{ font-size:15.5px; color:#E9F1F7; position:relative; z-index:1; margin-top:22px; }
.test-name{ display:flex; align-items:center; gap:10px; margin-top:22px; }
.test-name .initial{ width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Fredoka'; font-weight:600; color:#fff; flex:none; }
.test-name strong{ font-size:14.5px; display:block; }
.test-name span{ font-size:12.5px; color:#B9CBD8; }

/* ============ ALIADOS ============ */
.aliados-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.aliado-card{
  background:#fff; border:1px solid var(--line); border-radius:10px; padding:14px;
  display:flex; align-items:center; justify-content:center; height:150px; transition:.2s;
}
.aliado-card:hover{ box-shadow:var(--shadow); transform:translateY(-3px); }
.aliado-card img{ max-height:122px; max-width:100%; object-fit:contain; }
.aliados-note{ text-align:center; margin-top:30px; font-size:14px; color:#6a6a72; }

/* ============ DONACIONES ============ */
.donate-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:44px; align-items:stretch; }
.qr-card{
  background:#fff; border-radius:14px; border:1px solid var(--line); box-shadow:var(--shadow);
  padding:36px; text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:center;
}
.qr-frame{
  width:220px; height:220px; border-radius:10px; background:var(--paper-warm); border:2px dashed var(--orange);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px; position:relative;
}
.qr-frame svg{ width:64px; height:64px; opacity:.4; }
.qr-frame .replace-tag{
  position:absolute; bottom:-14px; background:var(--orange); color:#fff; font-size:11px; font-weight:700;
  padding:5px 12px; border-radius:100px; letter-spacing:.03em;
}
.qr-card h3{ font-size:19px; margin-bottom:8px; }
.qr-card p{ font-size:14px; color:#5b5b62; }
.qr-real-img{ width:220px; border-radius:10px; border:1px solid var(--line); box-shadow:var(--shadow); }
.llave-row{ display:flex; align-items:center; gap:10px; margin-top:18px; background:var(--paper-warm); border:1px solid var(--line); border-radius:8px; padding:12px 16px; width:100%; }
.llave-row .lbl{ font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; font-weight:700; color:#6E6633; }
.llave-row .val{ font-family:'Fredoka'; font-weight:600; font-size:16px; color:var(--blue-ink); margin-left:auto; }
.llave-row .copy-btn{ background:var(--blue); color:#fff; }
.llave-row .copy-btn:hover{ background:var(--blue-dark); }
.bank-card{ background:var(--blue-ink); color:#fff; border-radius:14px; padding:38px; display:flex; flex-direction:column; justify-content:center; }
.bank-card h3{ color:#fff; font-size:22px; margin-bottom:18px; }
.bank-row{ display:flex; justify-content:space-between; align-items:center; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.15); }
.bank-row:last-of-type{ border-bottom:none; }
.bank-row .lbl{ font-size:13px; color:#AFC7D6; text-transform:uppercase; letter-spacing:.06em; font-weight:700; }
.bank-row .val{ font-size:16.5px; font-weight:600; font-family:'Fredoka'; }
.copy-btn{ background:rgba(255,255,255,.14); border-radius:6px; padding:6px 12px; font-size:12.5px; font-weight:700; color:#fff; }
.copy-btn:hover{ background:rgba(255,255,255,.24); }
.pay-alts{ display:flex; gap:12px; margin-top:26px; }
.pay-alt{ flex:1; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); border-radius:8px; padding:14px; text-align:center; font-weight:700; font-size:14px; }
.pay-alt:hover{ background:rgba(255,255,255,.18); }

/* ============ CONTACTO ============ */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.wa-buttons-card{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:30px; box-shadow:var(--shadow); display:flex; flex-direction:column; gap:12px; }
.wa-buttons-lead{ font-size:14.5px; color:#5b5b62; margin-bottom:4px; }
.wa-choice{
  display:flex; align-items:center; gap:14px; padding:16px 18px; border-radius:10px;
  background:var(--paper-warm); border:1px solid var(--line); font-weight:600; font-size:15px; color:var(--blue-ink);
  transition:.2s;
}
.wa-choice:hover{ background:#25D366; color:#fff; border-color:#25D366; }
.wa-choice:hover .wa-choice-ic{ color:#fff; }
.wa-choice-ic{ color:#25D366; flex:none; transition:.2s; }
.wa-choice-arrow{ margin-left:auto; opacity:.5; flex:none; }
.contact-info{ display:flex; flex-direction:column; gap:26px; }
.info-item{ display:flex; gap:16px; align-items:flex-start; }
.info-item .ic{ width:44px; height:44px; border-radius:8px; display:flex; align-items:center; justify-content:center; flex:none; }
.info-item h4{ font-size:15.5px; margin-bottom:4px; }
.info-item p, .info-item a{ font-size:14.5px; color:#4A4A52; }
.map-wrap{ border-radius:10px; overflow:hidden; border:1px solid var(--line); height:220px; margin-top:6px;}
.map-wrap iframe{ width:100%; height:100%; border:0; }
.social-row{ display:flex; gap:12px; margin-top:6px; }
.social-row a{ width:42px; height:42px; border-radius:50%; background:var(--blue-ink); color:#fff; display:flex; align-items:center; justify-content:center; }
.social-row a:hover{ background:var(--red); }

/* ============ FOOTER ============ */
footer{ background:var(--purple-deep); color:#fff; padding:56px 0 26px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; margin-bottom:40px; }
.foot-brand{ display:flex; align-items:center; gap:10px; font-family:'Fredoka'; font-size:19px; font-weight:600; margin-bottom:14px; }
.foot-brand img{ height:52px; }
footer p{ color:#C9BEDF; font-size:14px; }
footer h5{ font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:#B7A9D6; margin-bottom:14px; }
footer ul li{ margin-bottom:9px; }
footer ul a{ color:#E7DFF5; font-size:14.5px; }
footer ul a:hover{ color:var(--yellow); }
.foot-bottom{ border-top:1px solid rgba(255,255,255,.14); padding-top:22px; text-align:center; font-size:13px; color:#B7A9D6; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float{
  position:fixed; bottom:24px; right:24px; z-index:900; background:#25D366; width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; box-shadow:0 12px 26px -8px rgba(0,0,0,.4);
}
.wa-float svg{ width:28px; height:28px; }
.wa-float:hover{ transform:scale(1.06); }

/* ============ ÍNDICE (panel de navegación por secciones) ============ */
.index-backdrop{
  position:fixed; inset:0; z-index:1100; background:rgba(11,59,87,.55);
  opacity:0; visibility:hidden; transition:opacity .22s; backdrop-filter:blur(2px);
}
.index-backdrop.open{ opacity:1; visibility:visible; }

.index-panel{
  position:fixed; z-index:1101; left:50%; top:50%; transform:translate(-50%,-46%) scale(.96);
  width:min(420px, calc(100% - 32px)); max-height:82vh; overflow-y:auto;
  background:#fff; border-radius:22px; box-shadow:0 30px 60px -15px rgba(0,0,0,.45);
  opacity:0; visibility:hidden; transition:.22s; padding:6px;
}
.index-backdrop.open .index-panel{ opacity:1; visibility:visible; transform:translate(-50%,-50%) scale(1); }
.index-head{ display:flex; align-items:center; justify-content:space-between; padding:16px 16px 10px; }
.index-head h2{ font-size:18px; }
.index-close{ width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none; }
.index-close:hover{ background:var(--paper-warm); }
.index-close svg{ width:20px; height:20px; }
.index-list{ display:flex; flex-direction:column; gap:3px; padding:2px 10px 12px; }
.index-list a{
  display:flex; align-items:center; gap:13px; padding:14px 12px; border-radius:13px; font-weight:600; font-size:15.5px; color:var(--ink);
}
.index-list a:hover{ background:var(--paper-warm); }
.index-list a.active{ background:var(--blue); color:#fff; }
.index-list a .idx-dot{ width:8px; height:8px; border-radius:50%; background:var(--line); flex:none; }
.index-list a.active .idx-dot{ background:#fff; }
.index-list a .idx-check{ margin-left:auto; width:18px; height:18px; opacity:0; flex:none; }
.index-list a.active .idx-check{ opacity:1; }
.index-list a.nav-cta-index{ background:var(--red); color:#fff; margin-top:6px; }
.index-list a.nav-cta-index .idx-dot{ display:none; }

.back-to-index{
  display:inline-flex; align-items:center; gap:9px; margin-top:48px; padding:13px 20px;
  border-radius:10px; border:2px solid var(--line); font-weight:700; font-size:14.5px; color:var(--blue-ink);
}
.back-to-index:hover{ border-color:var(--blue); background:var(--paper-warm); }
.back-to-index svg{ width:17px; height:17px; }

/* ============ MAPA CON CONSENTIMIENTO PREVIO ============ */
.map-placeholder{
  height:220px; border-radius:10px; background:var(--paper-warm); border:1px dashed var(--line);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:10px; padding:20px;
}
.map-placeholder svg{ width:30px; height:30px; opacity:.5; }
.map-placeholder p{ font-size:13px; color:#6a6a72; max-width:280px; }
.map-placeholder button{
  background:var(--blue); color:#fff; padding:9px 18px; border-radius:8px; font-weight:700; font-size:13.5px;
}
.map-placeholder button:hover{ background:var(--blue-dark); }

/* ============ BANNER DE COOKIES ============ */
.cookie-banner{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:1200;
  background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow:0 20px 50px -15px rgba(0,0,0,.35);
  padding:22px 24px; max-width:760px; margin:0 auto;
  transform:translateY(140%); transition:transform .35s ease;
}
.cookie-banner.show{ transform:translateY(0); }
.cookie-banner h3{ font-size:16.5px; margin-bottom:8px; display:flex; align-items:center; gap:8px; }
.cookie-banner h3 svg{ width:19px; height:19px; color:var(--orange); flex:none; }
.cookie-banner p{ font-size:14px; color:#4A4A52; line-height:1.5; }
.cookie-banner p a{ color:var(--blue); font-weight:700; text-decoration:underline; }
.cookie-actions{ display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }
.cookie-actions button{
  flex:1; min-width:140px; padding:12px 16px; border-radius:9px; font-weight:700; font-size:13.5px; text-align:center;
}
.cookie-accept-all{ background:var(--red); color:#fff; box-shadow:0 8px 18px -6px rgba(226,34,46,.5); }
.cookie-accept-all:hover{ background:#c81c27; }
.cookie-necessary{ background:var(--paper-warm); color:var(--blue-ink); border:1.5px solid var(--line) !important; }
.cookie-necessary:hover{ background:var(--line); }
.cookie-reject{ background:transparent; color:#6a6a72; border:1.5px solid var(--line) !important; }
.cookie-reject:hover{ background:var(--paper-warm); }

.cookie-prefs-link{ color:#E7DFF5; text-decoration:underline; cursor:pointer; }
.cookie-prefs-link:hover{ color:var(--yellow); }

/* ============ PÁGINA POLÍTICA DE PRIVACIDAD ============ */
.policy-content{ max-width:760px; }
.policy-content h3{ font-size:21px; margin-top:34px; margin-bottom:12px; }
.policy-content h3:first-child{ margin-top:0; }
.policy-content p{ font-size:15.5px; color:#40404a; margin-bottom:14px; }
.policy-content ul{ margin-bottom:14px; }
.policy-content ul li{
  font-size:15.5px; color:#40404a; margin-bottom:8px; padding-left:22px; position:relative;
}
.policy-content ul li::before{
  content:''; position:absolute; left:0; top:9px; width:6px; height:6px; border-radius:50%; background:var(--blue);
}
.policy-content .policy-updated{
  font-size:13.5px; color:#8a8a52; background:var(--paper-warm); border:1px solid var(--line);
  border-radius:8px; padding:10px 16px; display:inline-block; margin-bottom:30px;
}
.policy-content .cookie-table{ width:100%; border-collapse:collapse; margin:16px 0 24px; font-size:14px; }
.policy-content .cookie-table th, .policy-content .cookie-table td{
  text-align:left; padding:10px 12px; border-bottom:1px solid var(--line); color:#40404a;
}
.policy-content .cookie-table th{ font-family:'Fredoka'; color:var(--blue-ink); font-size:13px; text-transform:uppercase; letter-spacing:.04em; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .navlinks{ display:none; }
  .burger{ display:flex; }
  .brand img{ height:44px; }
  .nav{ padding:12px 20px; }
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-art{ order:-1; max-width:280px; margin:0 auto; }
  .nosotros-grid{ grid-template-columns:1fr; }
  .valores-grid{ grid-template-columns:repeat(3,1fr); }
  .port-grid{ grid-template-columns:1fr 1fr; }
  .team-grid{ grid-template-columns:repeat(2,1fr); }
  .test-grid{ grid-template-columns:1fr; }
  .aliados-grid{ grid-template-columns:repeat(3,1fr); }
  .donate-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .statstrip .wrap{ grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(3){ border-left:none; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 600px){
  .wrap{ padding:0 20px; }
  .section{ padding:64px 0 68px; }
  .section-head{ margin-bottom:36px; }
  .section-head h2{ font-size:28px !important; }
  .valores-grid{ grid-template-columns:repeat(2,1fr); }
  .port-grid{ grid-template-columns:1fr; }
  .aliados-grid{ grid-template-columns:repeat(2,1fr); }
  .team-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr; gap:28px; }
  .hero{ padding-top:80px; }
  .hero .wrap{ gap:36px; padding-bottom:52px; }
  h1{ font-size:30px !important; }
  .hero p.lead{ font-size:16.5px; }
  .ctas{ width:100%; }
  .ctas .btn{ flex:1; justify-content:center; }
  .wa-float{ width:52px; height:52px; bottom:18px; }
  .wa-float{ right:18px; }
  .qr-frame, .qr-real-img{ width:180px; height:auto; }
  [style*="padding-top:130px"]{ padding-top:104px !important; }
  .cookie-banner{ left:12px; right:12px; bottom:12px; padding:18px; }
  .cookie-actions button{ min-width:100%; }
  .gallery-arrow{ display:none; }
  .gallery-slide{ width:88%; aspect-ratio:1/1; }
  .video-card{ width:min(220px, 42vw); }
}
@media (max-width: 380px){
  .brand img{ height:38px; }
  .valores-grid{ grid-template-columns:1fr 1fr; }
  .hero-badges{ gap:8px; }
  .hero-badge{ font-size:12.5px; padding:8px 12px; }
}
