/* ===== 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: 68px; height: 68px; 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, .qa-icon i { font-size: 26px; 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, .beneficio-icon i { font-size: 30px; 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: 34px; left: 60px; right: 60px; height: 2px; background: var(--border); z-index: 0; }
.step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  transition: var(--transition);
}
.step-num.active { background: var(--navy); border-color: var(--navy); color: white; }
.step:hover .step-num { background: #1f4b8f; border-color: #1f4b8f; color: white; }
.step-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 0.8rem; color: var(--gray); }
.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; }
.form-control.is-invalid { border-color: #dc3545; box-shadow: 0 0 0 3px rgba(220,53,69,0.1); }
.form-error { color: #dc3545; font-size: 0.78rem; margin-top: 6px; min-height: 1em; }
.form-success { color: #198754; font-size: 0.8rem; margin-top: 14px; text-align: center; display: none; padding-top: 8px; }

.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, .contact-info-card .icon i { font-size: 22px; 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: 60px; }
.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); }

/* ===== UTILIDADES ===== */
.text-gold-uppercase { color: var(--gold); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.flex-gap-wrap { display: flex; gap: 12px; flex-wrap: wrap; }
.bg-gold { background: var(--gold) !important; }
.text-navy-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.text-gray-desc { color: var(--gray); margin: 16px 0 24px; line-height: 1.8; }
.text-center-mt32 { text-align: center; margin-top: 32px; }
.text-1rem { font-size: 1rem; }
.logo-circle { object-fit: contain; border-radius: 50%; }
.list-unstyled { list-style: none; }
.list-item-border { color: rgba(255,255,255,0.85); font-size: 0.88rem; padding: 6px 0; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.list-item { color: rgba(255,255,255,0.85); font-size: 0.88rem; padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.faq-details { background: var(--gray-light); border-radius: 8px; padding: 14px 16px; }
.faq-summary { font-size: 0.9rem; font-weight: 600; color: var(--navy); cursor: pointer; }
.faq-p { margin-top: 10px; font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.hero-socios { min-height: 320px; background: linear-gradient(135deg, #0d2240 0%, #1B3A6B 50%, #2a5298 100%); }
.py-60 { padding: 60px 0; }
.pt-40 { padding: 40px 0 0; }
.py-40-72 { padding: 40px 0 72px; }
.text-navy-h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin: 8px 0 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.grid-2-cols-gap12-mb32 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.card-gradient-navy { height: 160px; background: linear-gradient(135deg, #1B3A6B, #2a5298); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.text-white-50-sm { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }
.card-gradient-green { height: 160px; background: linear-gradient(135deg, #0d4a2a, #1a8a4a); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.card-gray-light-mb24 { background: var(--gray-light); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.text-navy-h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.text-gray-sm-mb16 { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.grid-2-cols-gap12 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card-white-flex { background: white; border-radius: 8px; padding: 12px; display: flex; align-items: center; gap: 10px; }
.text-navy-bold-sm { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.card-navy-mb24 { background: var(--navy); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.text-white-h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 14px; }
.text-gold { color: var(--gold); }
.text-navy-h3-mb14 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.flex-col-gap8 { display: flex; flex-direction: column; gap: 8px; }
.sticky-top-90 { position: sticky; top: 90px; }
.min-h-70 { min-height: 70px; }
.my-16-8 { margin: 16px 0 8px; }
.text-navy-bold-mb10 { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.text-navy-semi-sm { font-weight: 600; font-size: 0.84rem; color: var(--navy); }
.text-gray-xs { font-size: 0.75rem; color: var(--gray); }
.d-none { display: none !important; }
.w-100-center { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; }
.text-navy-h2-lg { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin: 8px 0 16px; }
.grid-2-cols-gap20-mt28 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.card-navy-mb20 { background: var(--navy); color: white; margin-bottom: 20px; }
.text-center-mb16 { text-align: center; margin-bottom: 16px; }
.img-logo-64 { width: 96px; height: 96px; margin: 0 auto; border-radius: 50%; }
.title-gold-xs { color: var(--gold); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.li-border-bottom-white { padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.py-8 { padding: 8px 0; }
.card-gray-p20 { background: var(--gray-light); border-radius: var(--radius); padding: 20px; }
.text-navy-h3-sm { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.max-w-800-center { max-width: 800px; margin: 0 auto; }
.card-left-gold-mb24 { margin-bottom: 24px; border-left: 4px solid var(--gold); }
.card-left-navy-mb24 { margin-bottom: 24px; border-left: 4px solid var(--navy); }
.card-left-gold { border-left: 4px solid var(--gold); }
.text-navy-h2-sm { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 8px 0 16px; }
.grid-4-cols-mt32 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.card-gray-center { text-align: center; padding: 20px; background: var(--gray-light); border-radius: var(--radius); }
.text-navy-icon-lg { font-size: 1.2rem; margin-bottom: 8px; font-weight: 700; color: var(--navy); }
.timeline-container { position: relative; padding-left: 32px; border-left: 3px solid var(--gold); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot-gold { position: absolute; left: -43px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); border: 3px solid white; box-shadow: 0 0 0 3px var(--gold); }
.timeline-dot-navy { position: absolute; left: -43px; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); border: 3px solid white; box-shadow: 0 0 0 3px var(--navy); }
.card-p20-24 { padding: 20px 24px; }
.text-gold-h3 { font-size: 1.2rem; color: var(--gold); font-weight: 800; margin-bottom: 6px; }
.text-navy-h3 { font-size: 1.2rem; color: var(--navy); font-weight: 800; margin-bottom: 6px; }
.text-navy-h4 { color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.text-gray-desc-sm { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.mb-36 { margin-bottom: 36px; }
.grid-directorio { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 48px; }
.img-directorio { border-radius: var(--radius); overflow: hidden; box-shadow: none; }
.img-directorio img { width: 100%; height: auto; max-height: 520px; object-fit: contain; display: block; }
.directorio-zoom { display: block; width: 100%; padding: 0; border: none; background: transparent; cursor: zoom-in; }
.mb-40 { margin-bottom: 40px; }
.title-gold-sm { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 20px; }
.title-navy-sm { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--navy); margin-bottom: 20px; }
.card-presidenta { display: flex; align-items: center; gap: 24px; border-left: 4px solid var(--gold); max-width: 480px; }
.avatar-navy-gold { width: 72px; height: 72px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.4rem; font-weight: 800; color: var(--gold); letter-spacing: 1px; }
.avatar-sm-navy-gold { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.text-navy-h3-bold { color: var(--navy); font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.subtitle-gold-xs { font-size: 0.82rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.grid-directiva { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.card-directiva { text-align: center; padding: 24px 16px; }
.text-navy-h4-bold { color: var(--navy); font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.subtitle-gray-xs { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.avatar-img-container { padding: 0; overflow: hidden; }
.avatar-img-fit { width: 100%; height: 100%; object-fit: cover; }
.avatar-img-error { display: flex; align-items: center; justify-content: center; }
.link-inherit { color: inherit; }
.hero-contacto { min-height: 300px; background: linear-gradient(135deg, #0d2240 0%, #1B3A6B 50%, #2a5298 100%); }
.py-56 { padding: 56px 0; }
.mb-20 { margin-bottom: 20px; }
.iframe-map { border: 0; border-radius: 10px; }
.card-gray-flex { background: var(--gray-light); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.text-navy-bold { font-weight: 700; color: var(--navy); font-size: 1rem; }
.text-gray-sm { font-size: 0.88rem; color: var(--gray); }
.btn-outline-navy-sm { margin-top: 10px; color: var(--navy); border: 1.5px solid var(--border); border-radius: 6px; display: inline-flex; align-items: center; gap: 4px; font-size: 0.78rem; padding: 5px 12px; }
.text-sm-10 { font-size: 0.8rem; }
.flex-gap8-center-mt10 { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }
.link-fw600 { font-size: 0.85rem; font-weight: 600; }
.text-gray-xs2 { font-size: 0.82rem; }
.link-navy-fw600 { font-size: 0.8rem; color: var(--navy); font-weight: 600; display: block; margin-top: 6px; }
.text-navy-h2-mb24 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.py-48 { padding: 48px 0; }
.p-0 { padding: 0; }
.text-gray-mb24 { color: var(--gray); margin-bottom: 24px; }
.text-left { text-align: left; }
.text-navy-h3-mb8 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.text-gray-line17 { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.flex-gap8 { display: flex; gap: 8px; }
.form-input-newsletter { flex: 1; padding: 10px 14px; border-radius: 8px; border: none; font-size: 0.9rem; font-family: inherit; }
.ws-nowrap { white-space: nowrap; }
.bg-wa { background: #25D366 !important; }



/* ===== 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; }
}
