/* ============================================================
   RED TALENTOS INCLUSIVOS — Hoja de estilos
   Basada en el Manual de Marca oficial
   ============================================================ */

:root {
  /* Paleta oficial */
  --verde:    #66C299;
  --verde-d:  #4FA67E;
  --lavanda:  #A59EDB;
  --lavanda-d:#8B81CC;
  --naranja:  #F4A259;
  --amarillo: #F2D974;
  --rosa:     #D72660;
  --rosa-d:   #B81E51;
  --azul:     #2B4F81;
  --azul-d:   #213D64;
  --gris:     #7C7C7C;
  --marfil:   #FDF6EC;
  --ciruela:  #5C2A51;
  --blanco:   #FFFFFF;

  /* Texto */
  --texto:    #3B3340;
  --texto-suave: #6B6470;

  /* Tipografía */
  --f-titulo: 'Montserrat', system-ui, sans-serif;
  --f-cuerpo: 'Lato', system-ui, sans-serif;

  /* Espaciado / radios */
  --radio: 18px;
  --radio-s: 12px;
  --sombra: 0 14px 40px -18px rgba(43,79,129,.35);
  --sombra-s: 0 6px 20px -10px rgba(43,79,129,.30);
  --nav-h: 76px;
  --max: 1200px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  font-family: var(--f-cuerpo);
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
h1,h2,h3,h4 { font-family: var(--f-titulo); font-weight: 800; line-height: 1.12; margin: 0; color: var(--azul); letter-spacing: -.01em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--marfil { background: var(--marfil); }
.section--azul { background: var(--azul); }

/* Accesibilidad */
:focus-visible { outline: 3px solid var(--lavanda); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--azul); color: #fff; padding: 10px 18px; border-radius: 10px;
  font-family: var(--f-titulo); font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 12px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); border:0; }

/* Encabezado de sección */
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-titulo); font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; font-size: .8rem; color: var(--rosa); margin-bottom: 14px;
}
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.sec-head .sub { color: var(--texto-suave); max-width: 620px; margin: 16px auto 0; font-size: 1.06rem; }
.sec-symbol { width: 46px; height: 46px; }

/* Línea de pinceladas de colores (acento de marca) */
.brush-strip { height: 12px; display: flex; }
.brush-strip span { flex: 1; }
.brush-strip span:nth-child(1){ background: var(--verde); }
.brush-strip span:nth-child(2){ background: var(--amarillo); }
.brush-strip span:nth-child(3){ background: var(--naranja); }
.brush-strip span:nth-child(4){ background: var(--rosa); }
.brush-strip span:nth-child(5){ background: var(--lavanda); }
.brush-strip span:nth-child(6){ background: var(--azul); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #efe7da;
  height: var(--nav-h);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo img { height: 44px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--f-titulo); font-weight: 600; font-size: .92rem;
  color: var(--azul); padding: 9px 13px; border-radius: 10px; transition: background .15s, color .15s;
}
.nav__links a:hover { background: var(--marfil); color: var(--verde-d); }
.nav__links a.cta {
  background: var(--rosa); color: #fff; padding: 10px 18px; margin-left: 6px;
}
.nav__links a.cta:hover { background: var(--rosa-d); color: #fff; }
.nav__toggle { display: none; background: none; padding: 8px; color: var(--azul); }
.nav__toggle svg { width: 28px; height: 28px; }

@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 18px 22px;
    border-bottom: 1px solid #efe7da; box-shadow: var(--sombra);
    transform: translateY(-130%); transition: transform .28s ease; max-height: calc(100vh - var(--nav-h)); overflow:auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid #f3ece0; }
  .nav__links a.cta { margin: 12px 0 0; text-align: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--blanco); padding: 64px 0 0; overflow: hidden; text-align: center; }
.hero__headline {
  display: flex; align-items: center; justify-content: center; gap: 34px;
}
.hero__sym { width: 92px; height: 92px; flex: none; }
.hero__quote {
  font-family: var(--f-titulo); font-weight: 800; color: var(--verde-d);
  font-size: clamp(2.1rem, 5.6vw, 4rem); line-height: 1.08; max-width: 16ch; margin: 0;
  text-wrap: balance;
}
.hero__quote .q { color: var(--lavanda); }
.hero__tag { color: var(--texto-suave); margin-top: 18px; font-size: 1.12rem; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; padding-bottom: 56px; }

/* Eventos */
.eventos { background: var(--azul); color: #fff; padding: 54px 0 64px; }
.eventos__title { text-align: center; color: #fff; text-transform: uppercase; letter-spacing: .18em; font-size: 1.05rem; margin-bottom: 38px; }
.eventos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.evento { text-align: center; }
.evento h3 { color: #fff; font-size: 1.18rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 16px; }
.evento__media {
  border-radius: var(--radio); overflow: hidden; aspect-ratio: 4/3;
  background: rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
}
.evento__date { display: inline-block; background: var(--rosa); color:#fff; font-family: var(--f-titulo); font-weight: 700; padding: 6px 16px; border-radius: 999px; font-size: .9rem; }
.evento__media .ph-label { font-family: 'Courier New', monospace; font-size: .72rem; color: rgba(255,255,255,.6); }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-titulo); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; transition: transform .12s, box-shadow .15s, background .15s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--verde { background: var(--verde); color: #fff; box-shadow: var(--sombra-s); }
.btn--verde:hover { background: var(--verde-d); }
.btn--rosa { background: var(--rosa); color: #fff; box-shadow: var(--sombra-s); }
.btn--rosa:hover { background: var(--rosa-d); }
.btn--azul { background: var(--azul); color: #fff; }
.btn--azul:hover { background: var(--azul-d); }
.btn--ghost { background: transparent; color: var(--azul); border: 2px solid var(--azul); }
.btn--ghost:hover { background: var(--azul); color: #fff; }
.btn--ghost-w { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn--ghost-w:hover { background: #fff; color: var(--azul); }

/* ============================================================
   QUIÉNES SOMOS
   ============================================================ */
.quienes__lead { text-align: center; max-width: 820px; margin: 0 auto; font-size: 1.18rem; color: var(--texto); }
.quienes__lead strong { color: var(--verde-d); }
.quienes__pills { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 30px 0 8px; }
.pill { display:inline-flex; align-items:center; gap:8px; background: var(--marfil); border: 1px solid #efe2cf; padding: 10px 18px; border-radius: 999px; font-weight: 700; font-family: var(--f-titulo); font-size: .92rem; color: var(--azul); }
.pill .dot { width: 10px; height: 10px; border-radius: 50%; }
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 56px; }
.mv__card { background: #fff; border: 1px solid #eee; border-radius: var(--radio); padding: 34px 32px; box-shadow: var(--sombra-s); position: relative; overflow: hidden; }
.mv__card::before { content:""; position:absolute; left:0; top:0; bottom:0; width:6px; }
.mv__card--m::before { background: var(--naranja); }
.mv__card--v::before { background: var(--lavanda); }
.mv__card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.mv__card--m h3 { color: var(--naranja); }
.mv__card--v h3 { color: var(--lavanda-d); }
.mv__card p { color: var(--texto-suave); margin: 0; }

/* ============================================================
   VALORES
   ============================================================ */
.valores__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.valor {
  background: #fff; border: 1px solid #eee; border-radius: var(--radio); padding: 28px;
  box-shadow: var(--sombra-s); transition: transform .15s, box-shadow .15s;
}
.valor:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.valor__check { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.valor__check svg { width: 22px; height: 22px; color: #fff; }
.valor h3 { font-size: 1.18rem; margin-bottom: 8px; }
.valor p { color: var(--texto-suave); font-size: .98rem; margin: 0; }

/* ============================================================
   SERVICIOS / PROYECTOS
   ============================================================ */
.sp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.sp__card { background: #fff; border-radius: var(--radio); overflow: hidden; box-shadow: var(--sombra); display: grid; grid-template-columns: 1fr 1fr; }
.sp__list { padding: 32px 30px; background: var(--marfil); }
.sp__list h3 { font-size: 1.7rem; margin-bottom: 18px; }
.sp__card--serv .sp__list h3 { color: var(--naranja); }
.sp__card--proy .sp__list h3 { color: var(--verde-d); }
.sp__list li { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px dashed #e6d8c2; color: var(--texto); font-weight: 600; }
.sp__list li:last-child { border-bottom: none; }
.sp__list li .ic { flex: none; width: 22px; height: 22px; color: var(--rosa); margin-top: 2px; }
.sp__media { background: linear-gradient(135deg,#dfeee7,#cfe0d8); position: relative; min-height: 100%; }
.sp__card--proy .sp__media { background: linear-gradient(135deg,#e7e3f5,#dad3ef); }

/* Placeholder de imagen rayado */
.ph {
  background-color: #e9efec; position: relative; display: flex; align-items: center; justify-content: center;
  background-image: repeating-linear-gradient(45deg, rgba(43,79,129,.06) 0 10px, transparent 10px 20px);
}
.ph .ph-label { font-family:'Courier New', monospace; font-size:.74rem; color: var(--azul); opacity:.55; text-align:center; padding: 6px 10px; }

/* ============================================================
   TIENDA
   ============================================================ */
.tienda__bar { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.tienda__bar .logo-mini { height: 50px; }
.search {
  flex: 1; min-width: 240px; display: flex; align-items: stretch;
  border-radius: 999px; overflow: hidden; box-shadow: var(--sombra-s);
}
.search select {
  border: none; background: var(--azul-d); color: #fff; font-family: var(--f-titulo); font-weight: 700;
  padding: 0 18px; font-size: .95rem; cursor: pointer;
}
.search input { flex: 1; border: none; padding: 14px 20px; font-size: 1rem; font-family: var(--f-cuerpo); background: var(--rosa); color:#fff; }
.search input::placeholder { color: rgba(255,255,255,.85); }
.search button { background: var(--rosa); color: #fff; padding: 0 22px; display: flex; align-items: center; }
.search button svg { width: 22px; height: 22px; }

.tienda__layout { display: grid; grid-template-columns: 248px 1fr; gap: 28px; align-items: start; }
.filtros { background: #fff; border: 1px solid #eee; border-radius: var(--radio); padding: 22px; box-shadow: var(--sombra-s); position: sticky; top: calc(var(--nav-h) + 16px); }
.filtros h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gris); margin-bottom: 16px; }
.filtros label { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-weight: 600; cursor: pointer; color: var(--texto); }
.filtros input[type=checkbox] { width: 20px; height: 20px; accent-color: var(--rosa); cursor: pointer; }
.filtros .divider { height:1px; background:#eee; margin: 8px 0; }
.filtros label.all { color: var(--azul); font-family: var(--f-titulo); font-weight: 700; }

.productos { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 22px; }
.prod { background: #fff; border: 1px solid #eee; border-radius: var(--radio-s); overflow: hidden; box-shadow: var(--sombra-s); display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.prod:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.prod__img { aspect-ratio: 1; position: relative; }
.prod__badge { position: absolute; top: 10px; left: 10px; background: var(--rosa); color: #fff; font-family: var(--f-titulo); font-weight: 700; font-size: .7rem; padding: 4px 10px; border-radius: 999px; }
.prod__body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod__cat { font-family: var(--f-titulo); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--lavanda-d); font-weight: 700; }
.prod__name { font-weight: 700; font-size: .94rem; color: var(--texto); line-height: 1.3; }
.prod__stars { color: var(--amarillo); font-size: .85rem; letter-spacing: 1px; }
.prod__stars span { color: var(--gris); font-size: .78rem; }
.prod__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 8px; }
.prod__price { font-family: var(--f-titulo); font-weight: 800; color: var(--azul); font-size: 1.15rem; }
.prod__add { background: var(--verde); color: #fff; border-radius: 10px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; }
.prod__add:hover { background: var(--verde-d); }
.prod__add svg { width: 20px; height: 20px; }

.tienda__empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--gris); }
.paginacion { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 38px; }
.paginacion button { min-width: 42px; height: 42px; padding: 0 14px; border-radius: 10px; background: #fff; border: 1px solid #e3dccf; font-family: var(--f-titulo); font-weight: 700; color: var(--azul); }
.paginacion button:hover:not(:disabled) { background: var(--marfil); }
.paginacion button.active { background: var(--azul); color: #fff; border-color: var(--azul); }
.paginacion button:disabled { opacity: .4; cursor: not-allowed; }

/* Carrito flotante / toast */
.cart-fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; background: var(--rosa); color: #fff; border-radius: 999px; padding: 14px 20px; font-family: var(--f-titulo); font-weight: 700; box-shadow: var(--sombra); display: inline-flex; gap: 10px; align-items: center; transform: translateY(120px); transition: transform .3s; }
.cart-fab.show { transform: translateY(0); }
.cart-fab svg { width: 22px; height: 22px; }
.cart-fab .count { background: #fff; color: var(--rosa); border-radius: 999px; min-width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; font-size: .82rem; padding: 0 6px; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 140px); background: var(--azul); color: #fff; padding: 14px 24px; border-radius: 999px; font-family: var(--f-titulo); font-weight: 700; z-index: 120; box-shadow: var(--sombra); transition: transform .3s; }
.toast.show { transform: translate(-50%, 0); }

/* ============================================================
   INSCRIPCIÓN
   ============================================================ */
.form-card { background: #fff; border: 1px solid #eee; border-radius: var(--radio); box-shadow: var(--sombra); padding: 40px; max-width: 860px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.col-3 { grid-column: span 3; }
.field label { font-family: var(--f-titulo); font-weight: 700; font-size: .82rem; color: var(--azul); text-transform: uppercase; letter-spacing: .04em; }
.field label .req { color: var(--rosa); }
.field input, .field select, .field textarea {
  border: 1.5px solid #e1dacd; border-radius: 12px; padding: 13px 15px; font-family: var(--f-cuerpo); font-size: 1rem; background: var(--marfil); color: var(--texto); transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--verde); background: #fff; outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.form-actions { margin-top: 26px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.form-note { color: var(--gris); font-size: .9rem; }
.form-success { display: none; text-align: center; padding: 50px 20px; }
.form-success.show { display: block; }
.form-success .ok { width: 76px; height: 76px; border-radius: 50%; background: var(--verde); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success .ok svg { width: 40px; height: 40px; }

/* ============================================================
   BLOG (en construcción)
   ============================================================ */
.blog { text-align: center; color: #fff; }
.blog h2 { color: #fff; font-size: clamp(2rem,5vw,3rem); margin-bottom: 30px; }
.blog__sign {
  display: inline-flex; flex-direction: column; align-items: center; gap: 0;
  background: var(--amarillo); color: var(--azul-d); font-family: var(--f-titulo); font-weight: 800;
  font-size: 1.6rem; padding: 28px 56px; border-radius: 14px; border: 4px solid #d9bd3f; position: relative;
}
.blog__stripes { width: 320px; max-width: 80%; height: 26px; margin-top: 18px; border-radius: 6px;
  background: repeating-linear-gradient(45deg, #1f1f1f 0 16px, var(--amarillo) 16px 32px); border: 3px solid #1f1f1f; }
.blog__note { color: rgba(255,255,255,.8); margin-top: 26px; }

/* ============================================================
   LIGAS DE INTERÉS
   ============================================================ */
.ligas__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.liga { border-radius: var(--radio); padding: 30px; color: #fff; box-shadow: var(--sombra-s); display: flex; flex-direction: column; }
.liga--1 { background: var(--azul); }
.liga--2 { background: var(--naranja); color: var(--texto); }
.liga--3 { background: var(--ciruela); }
.liga__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.liga__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; }
.liga--2 .liga__ic { background: rgba(0,0,0,.10); }
.liga__ic svg { width: 24px; height: 24px; }
.liga h3 { font-size: 1.12rem; color: inherit; line-height: 1.2; }
.liga--2 h3 { color: var(--ciruela); }
.liga p { font-size: .92rem; opacity: .92; flex: 1; }
.liga .meta { font-weight: 700; font-size: .9rem; }
.liga a.go { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-titulo); font-weight: 700; color: inherit; text-decoration: underline; }

/* ============================================================
   CONTACTO + REDES
   ============================================================ */
.contacto { background: var(--naranja); position: relative; overflow: hidden; }
.contacto__blob { position: absolute; background: rgba(255,255,255,.18); border-radius: 50%; filter: blur(2px); }
.contacto__blob.b1 { width: 320px; height: 220px; top: -60px; right: 8%; border-radius: 48% 52% 60% 40%; }
.contacto__blob.b2 { width: 260px; height: 260px; bottom: -80px; left: 4%; border-radius: 60% 40% 50% 50%; }
.contacto__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; position: relative; z-index: 1; }
.contact-card { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: var(--sombra); }
.contact-card__head { background: var(--azul); color: #fff; text-align: center; padding: 26px; }
.contact-card__head h2 { color: #fff; font-size: 2rem; }
.contact-card__body { padding: 30px 34px; display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; align-items: center; gap: 16px; font-weight: 700; color: var(--texto); }
.contact-row a { color: var(--texto); }
.contact-row a:hover { color: var(--rosa); text-decoration: underline; }
.contact-row .ic { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--azul); color: #fff; display: flex; align-items: center; justify-content: center; }
.contact-row .ic svg { width: 20px; height: 20px; }

.redes-card { background: var(--ciruela); color: #fff; border-radius: 22px; padding: 36px; display: flex; flex-direction: column; }
.redes-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.redes-card p { opacity: .85; margin-bottom: 24px; }
.redes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.red {
  display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 14px 16px;
  color: #fff; font-family: var(--f-titulo); font-weight: 700; transition: background .15s, transform .12s;
}
.red:hover { background: rgba(255,255,255,.20); transform: translateY(-2px); }
.red .ic { flex: none; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.red .ic svg { width: 22px; height: 22px; color: #fff; }
.red small { display:block; font-family: var(--f-cuerpo); font-weight: 400; font-size: .76rem; opacity: .8; }
.red--fb .ic { background: #1877F2; }
.red--ig .ic { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.red--tt .ic { background: #010101; }
.red--yt .ic { background: #FF0000; }
.red--wa .ic { background: #25D366; }
.red--in .ic { background: #0A66C2; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--azul-d); color: rgba(255,255,255,.85); padding: 54px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer__brand img { height: 54px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer__brand .slogan { font-family: var(--f-titulo); font-weight: 700; color: var(--amarillo); font-size: 1.1rem; }
.footer h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a:hover { color: var(--amarillo); }
.footer__social { display: flex; gap: 10px; margin-top: 8px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.10); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer__social a:hover { background: var(--rosa); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; text-align: center; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .eventos__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .mv, .valores__grid, .ligas__grid { grid-template-columns: 1fr; }
  .sp__grid { grid-template-columns: 1fr; }
  .tienda__layout { grid-template-columns: 1fr; }
  .filtros { position: static; }
  .contacto__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .hero__headline { gap: 14px; }
  .hero__sym { width: 52px; height: 52px; }
  .valores__grid { grid-template-columns: 1fr; }
  .sp__card { grid-template-columns: 1fr; }
  .sp__media { min-height: 180px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.col-3 { grid-column: span 1; }
  .redes { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .productos { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .form-card { padding: 24px; }
}
