/* ===== VARIABLES ===== */
:root {
  --navy: #1B3A6B;
  --navy-dark: #122850;
  --gold: #E8A020;
  --gold-dark: #C8880A;
  --white: #ffffff;
  --gray-light: #f4f6f9;
  --gray: #6c757d;
  --text: #2c3e50;
  --border: #dee2e6;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 25px rgba(0,0,0,0.15);
  --radius: 10px;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 6px 0;
  display: none;
}
.topbar .container { display: flex; justify-content: flex-end; gap: 20px; align-items: center; }
.topbar a { color: rgba(255,255,255,0.8); }
.topbar a:hover { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { width: 54px; height: 54px; object-fit: contain; }
.nav-logo-text { font-size: 0.72rem; font-weight: 700; color: var(--navy); text-transform: uppercase; line-height: 1.3; max-width: 160px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active { background: var(--gray-light); color: var(--navy-dark); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-socials { display: flex; gap: 8px; }
.nav-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.nav-socials a:hover { background: var(--gold); }

.btn-socio {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-socio:hover { background: var(--gold-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== CONTAINER ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 60%, #3a7bd5 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-content { position: relative; z-index: 1; padding: 60px 0; }
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 500px;
  margin-bottom: 28px;
}
.hero-main {
  min-height: 520px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1B3A6B 50%, #2a5298 100%);
}
.hero-main .hero-content h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; transition: var(--transition); }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(232,160,32,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

/* ===== SECTION TITLES ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.section-header p { color: var(--gray); font-size: 1rem; max-width: 540px; margin: 0 auto; }
.section-label { font-size: 0.78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 8px; }

.divider { width: 50px; height: 4px; background: var(--gold); border-radius: 2px; margin: 12px auto 0; }
.divider-left { margin: 12px 0 0; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

/* ===== QUICK ACCESS (HOME) ===== */
.quick-access { background: var(--white); padding: 0; margin-top: -40px; position: relative; z-index: 10; }
.quick-access .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.qa-item {
  background: var(--white);
  padding: 30px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.qa-item:last-child { border-right: none; }
.qa-item:hover { background: var(--gray-light); }
.qa-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qa-icon svg { width: 26px; height: 26px; color: white; }
.qa-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.qa-content p { font-size: 0.82rem; color: var(--gray); }

/* ===== SECTIONS ===== */
section { padding: 72px 0; }
section.bg-light { background: var(--gray-light); }
section.bg-navy { background: var(--navy); color: white; }
section.bg-navy .section-header h2 { color: white; }
section.bg-navy .section-header p { color: rgba(255,255,255,0.75); }

/* ===== SOCIOS GRID (HOME) ===== */
.socios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.socio-logo-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex; align-items: center; justify-content: center;
  min-height: 80px;
  font-weight: 700; font-size: 0.82rem; color: var(--gray);
  text-align: center;
  transition: var(--transition);
}
.socio-logo-card:hover { border-color: var(--navy); color: var(--navy); }

/* ===== DIRECTORIO ===== */
.directorio-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.sidebar-filtros { position: sticky; top: 90px; }
.sidebar-filtros .card { padding: 20px; }
.sidebar-filtros h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.filtro-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--transition);
  color: var(--text);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.filtro-item:hover, .filtro-item.active { background: var(--navy); color: white; }
.filtro-item .count { font-size: 0.75rem; opacity: 0.75; }

.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 8px 16px;
  align-items: center;
  box-shadow: var(--shadow);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
}
.search-bar button { color: var(--gray); transition: var(--transition); }
.search-bar button:hover { color: var(--navy); }

.socios-count { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; }

.socios-list { display: flex; flex-direction: column; gap: 16px; }
.socio-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.socio-card:hover { box-shadow: var(--shadow-hover); border-left-color: var(--gold); }
.socio-avatar {
  width: 80px; height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  text-align: center;
}
.socio-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.socio-rubro { display: inline-block; background: var(--gray-light); color: var(--navy); font-size: 0.72rem; font-weight: 700; padding: 2px 10px; border-radius: 20px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.3px; }
.socio-details { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: var(--gray); }
.socio-details span { display: flex; align-items: center; gap: 4px; }
.socio-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.socio-social-links { display: flex; gap: 6px; }
.socio-social-links a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--navy);
  transition: var(--transition);
}
.socio-social-links a:hover { background: var(--navy); color: white; }

/* ===== HERO BREADCRUMB ===== */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== TABS ===== */
.tabs { border-bottom: 2px solid var(--border); display: flex; gap: 0; margin-bottom: 40px; }
.tab-btn {
  padding: 14px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== INSTITUCION PAGE ===== */
.inst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 48px; }
.inst-grid p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.inst-sidebar .card { background: var(--navy); color: white; padding: 24px; }
.inst-sidebar .card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 16px; }
.inst-sidebar ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.inst-sidebar ul li:last-child { border-bottom: none; }

.valores-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.valor-card { background: var(--gray-light); border-radius: 8px; padding: 20px; }
.valor-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.valor-card p { font-size: 0.88rem; color: var(--gray); }

.beneficios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.beneficio-card { text-align: center; }
.beneficio-icon { width: 64px; height: 64px; background: var(--gray-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.beneficio-icon svg { width: 30px; height: 30px; color: var(--navy); }
.beneficio-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.beneficio-card p { font-size: 0.85rem; color: var(--gray); }

/* ===== HAZTE SOCIO ===== */
.hazte-layout { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
.steps { display: flex; gap: 0; margin-bottom: 36px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 60px; right: 60px; height: 2px; background: var(--border); z-index: 0; }
.step { flex: 1; text-align: center; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--gray-light); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 1.3rem; }
.step-num.active { background: var(--navy); border-color: var(--navy); }
.step p { font-size: 0.82rem; color: var(--gray); }

.form-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.form-card h2 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  transition: var(--transition);
  background: white;
}
.form-control:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,0.1); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.checklist { list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.9rem; color: var(--text); border-bottom: 1px solid var(--border); }
.checklist li:last-child { border-bottom: none; }
.check-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.doc-upload { border: 1.5px dashed var(--border); border-radius: 8px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: 0.85rem; cursor: pointer; transition: var(--transition); }
.doc-upload:hover { border-color: var(--navy); background: var(--gray-light); }

.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--gray); cursor: pointer; }
.checkbox-label input { margin-top: 2px; }

/* ===== CONTACTO ===== */
.contacto-layout { display: grid; grid-template-columns: 1fr 420px; gap: 40px; }
.mapa-container { border-radius: var(--radius); overflow: hidden; height: 320px; background: var(--gray-light); }
.mapa-container iframe { width: 100%; height: 100%; border: none; }
.contact-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.contact-info-card { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); text-align: center; }
.contact-info-card .icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(232,160,32,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.contact-info-card .icon svg { width: 22px; height: 22px; color: var(--gold); }
.contact-info-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-info-card p { font-size: 0.82rem; color: var(--gray); }

.social-section { text-align: center; padding: 48px 0; }
.social-section h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.social-big-links { display: flex; justify-content: center; gap: 16px; }
.social-big-link {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  transition: var(--transition);
}
.social-big-link.fb { background: #1877F2; }
.social-big-link.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-big-link:hover { transform: scale(1.1); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

.newsletter-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; margin: 48px 0; }
.newsletter-left { background: var(--gray-light); padding: 40px; }
.newsletter-right { background: var(--navy); padding: 40px; color: white; }
.newsletter-right h3 { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.newsletter-right p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; padding: 10px 14px; border-radius: 8px; border: none; font-size: 0.9rem; font-family: inherit; }
.newsletter-form input:focus { outline: none; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: white; padding: 60px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-banner h2 { font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.75); }

/* ===== FOOTER ===== */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { width: 48px; }
.footer-logo span { font-size: 0.7rem; font-weight: 700; color: white; text-transform: uppercase; line-height: 1.4; max-width: 130px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: white; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-partners { display: flex; align-items: center; gap: 20px; filter: brightness(0) invert(0.6); }

/* ===== TAGS / BADGES ===== */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-gold { background: rgba(232,160,32,0.15); color: var(--gold-dark); }
.badge-navy { background: rgba(27,58,107,0.1); color: var(--navy); }

/* ===== REDES SOCIALES ICONOS ===== */
.icon-fb::before { content: 'f'; font-weight: 900; }
.icon-ig::before { content: '📷'; font-size: 0.9rem; }
.icon-wa::before { content: '💬'; font-size: 0.9rem; }

/* ===== NO RESULTS ===== */
.no-results { text-align: center; padding: 60px 20px; color: var(--gray); }
.no-results p { font-size: 1.1rem; margin-top: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .directorio-layout { grid-template-columns: 200px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hazte-layout, .contacto-layout { grid-template-columns: 1fr; }
  .inst-grid { gap: 28px; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-socials { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); z-index: 100; }
  .directorio-layout { grid-template-columns: 1fr; }
  .sidebar-filtros { position: static; }
  .filtros-mobile { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
  .sidebar-filtros .card { display: none; }
  .socio-card { grid-template-columns: 60px 1fr; gap: 12px; }
  .socio-actions { display: none; }
  .socio-avatar { width: 60px; height: 60px; font-size: 1.1rem; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .newsletter-split { grid-template-columns: 1fr; }
  .quick-access .container { grid-template-columns: 1fr; border-radius: 8px; }
  .qa-item { border-right: none; border-bottom: 1px solid var(--border); }
  .qa-item:last-child { border-bottom: none; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .beneficios-grid { grid-template-columns: 1fr 1fr; }
  .valores-grid { grid-template-columns: 1fr; }
  .inst-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .socios-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .beneficios-grid { grid-template-columns: 1fr; }
  .socios-grid { grid-template-columns: 1fr; }
}
