:root{
  --negro:#171717;
  --gris:#252525;
  --blanco:#ffffff;
  --rojo:#E8272A;
  --crema:#F9DFC1;
}
/* ── LOGO STICKY ── */
#logo-sticky{
  position:fixed;
  top:28px;
  left:56px;
  z-index:9997;
  width:80px;
  height:auto;
}
#logo-sticky a{ display:block; }
#logo-sticky svg{ display:block; width:100%; height:auto; }

/* ── HAMBURGER (visual, no funcional) ── */
.hamburger{
  background:none; border:none;
  width:40px; padding:0;
  display:flex; flex-direction:column; gap:8px;
  position:fixed; top:31px; right:56px;
  z-index:9997;
  mix-blend-mode:difference;
  cursor:default;
}
.hamburger .bar{ fill:white; }

/* ── EQUIPO HERO ── */
.equipo-hero{
  padding:200px 56px 110px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:72px;
}
.equipo-title{
  font-family:'Unbounded', sans-serif;
  font-weight:700;
  font-variation-settings:'wght' 700;
  font-size:clamp(32px, 4.6vw, 56px);
  line-height:1.25;
  color:var(--blanco);
  text-transform:lowercase;
  text-align:center;
  max-width:820px;
  margin:0 auto;
}

.equipo-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:64px;
  row-gap:0;
  width:100%;
  max-width:820px;
  margin:0 auto;
  list-style:none;
}
.equipo-feature{
  display:flex;
  align-items:flex-start;
  gap:32px;
  padding:32px 0;
  border-top:1px solid #2e2e2e;
  text-align:left;
}
.equipo-feature:nth-child(3),
.equipo-feature:nth-child(4){
  border-bottom:1px solid #2e2e2e;
}
.equipo-feature .num{
  font-family:'Unbounded', sans-serif;
  font-weight:700;
  font-variation-settings:'wght' 700;
  font-size:14px;
  letter-spacing:0.04em;
  color:var(--rojo);
  flex-shrink:0;
  width:32px;
  padding-top:5px;
}
.equipo-feature p{
  font-family:'DM Sans', sans-serif;
  font-weight:400;
  font-size:19px;
  line-height:1.6;
  color:var(--blanco);
  margin:0;
}

/* ── SOCIOS ── */
.socios-section{
  padding:40px 56px 160px;
  text-align:center;
}
.socios-title{
  font-family:'Unbounded', sans-serif;
  font-weight:700;
  font-variation-settings:'wght' 700;
  font-size:28px;
  color:var(--blanco);
  margin-bottom:56px;
  text-transform:lowercase;
}
.socios-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
  max-width:900px;
  margin:0 auto;
}
.socio-card{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.socio-photo-wrap{
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:var(--gris);
  border-radius:8px;
}
.socio-photo-wrap img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  filter:grayscale(100%);
  transition:filter .35s ease;
}
.socio-card:hover .socio-photo-wrap img{ filter:grayscale(0%); }
.socio-name{
  font-family:'Unbounded', sans-serif;
  font-weight:700;
  font-variation-settings:'wght' 700;
  font-size:16px;
  color:var(--blanco);
}
.socio-role{
  font-family:'DM Sans', sans-serif;
  font-weight:500;
  font-size:12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:#9a9a9a;
  margin-top:4px;
}

/* ══════════════════════════════════════
   MOBILE
   ══════════════════════════════════════ */
@media (max-width:768px){
  #logo-sticky{ left:24px; top:24px; width:64px; }
  .hamburger{ right:24px; top:28px; }

  .equipo-hero{
    padding:140px 24px 72px;
    gap:48px;
  }
  .equipo-title{ font-size:clamp(26px, 7.5vw, 36px); }

  .equipo-features{ grid-template-columns:1fr; max-width:100%; }
  .equipo-feature{ gap:20px; padding:24px 0; }
  .equipo-feature:nth-child(3){ border-bottom:none; }
  .equipo-feature p{ font-size:16px; }

  .socios-section{ padding:24px 24px 100px; }
  .socios-grid{
    grid-template-columns:1fr;
    gap:32px;
    max-width:320px;
  }
}
