/* =========================
   RABATT - Diseño Corporativo
   Variables y Reset
========================= */
:root {
  --max: 1200px;
  --pad: 24px;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 70px;
  --border: #e2e8f0;
  --muted: #64748b;
  --text: #1e293b;
  --text-light: #475569;
  --blue: #0b2f86;
  --blue2: #0a1f67;
  --blue3: #001b6e;
  --blue-light: #1e40af;
  --blue-accent: #3b82f6;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  margin-top: var(--header-h);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* =========================
   HEADER CORPORATIVO
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand span {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .5px;
}

/* Navegación */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--text);
  transition: all var(--transition);
}

.nav a:hover {
  background: var(--bg);
  color: var(--blue);
}

.nav a.active {
  color: var(--blue);
  background: rgba(11,47,134,.06);
}

.nav a.active::after { display: none; }

/* Dropdown */
.drop {
  position: relative;
}

.drop__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.drop > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.drop__toggle {
  display: none;
  border: none;
  background: var(--bg);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.drop__toggle:hover {
  background: var(--border);
}

.drop__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .2s ease;
  z-index: 9999;
  border: 1px solid var(--border);
}

.drop:hover .drop__menu,
.drop:focus-within .drop__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.drop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.drop__menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition);
}

.drop__menu a:hover {
  background: var(--bg);
  color: var(--blue);
}

/* Botón hamburguesa */
.navtoggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
  transition: background var(--transition);
}

.navtoggle:hover { background: var(--bg); }

.navclose {
  display: none;
  border: 0;
  background: transparent;
  font-size: 20px;
  padding: 8px;
  cursor: pointer;
  align-self: flex-end;
  color: var(--muted);
}

.navbackdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1200;
}

body.nav-open .navbackdrop { display: block; }

/* =========================
   HERO SECTIONS
========================= */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: var(--blue3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  will-change: transform, opacity;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,.2), transparent);
  z-index: 1;
}

.hero--inicio { background-image: url("/assets/img/hero.png"); }
.hero--beneficios { background-image: url("/assets/img/hero_beneficios.jpeg"); }
.hero--capacitaciones { background-image: url("/assets/img/hero_capacitaciones.jpeg"); }
.hero--asociados { background-image: url("/assets/img/hero_asociados.jpeg"); }
.hero--empresas { background-image: url("/assets/img/hero_empresas.png"); }
.hero--amur { background-image: url("/assets/img/hero_amur.png"); }
.hero--legal { background-image: url("/assets/img/hero_legal.png"); }
.hero--gps { background-image: url("/assets/img/hero_gps.jpeg"); }
.hero--pasajes { background-image: url("/assets/img/hero_pasajes.png"); }
.hero--funeraria { background-image: url("/assets/img/hero_funeraria.jpeg"); }
.hero--pensiones { background-image: url("/assets/img/hero_pensiones.png"); }

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 200;
  letter-spacing: .5px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero__subtitle {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  opacity: .9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   SEPARADOR
========================= */
.section-sep {
  padding: 0;
}

.section-sep .line {
  height: 1px;
  background: var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

/* =========================
   BAND / INFO BAR
========================= */
.band {
  background: var(--blue3);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,.15) 0%, transparent 70%);
  border-radius: 50%;
}

.band p {
  margin: 0 auto 16px;
  max-width: 800px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
}

.band p:last-child { margin-bottom: 0; }

.band strong {
  font-weight: 600;
  color: var(--blue-accent);
}

/* =========================
   SECTIONS LIGHT / GRAY
========================= */
.section {
  padding: 80px 0;
}

.section--light {
  background: var(--bg);
}

.section--gray {
  background: var(--bg-alt);
}

.section--blue {
  background: var(--blue3);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 50px;
}

.section__header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section--blue .section__header h2 {
  color: var(--white);
}

.section__header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--blue .section__header p {
  color: rgba(255,255,255,.75);
}

/* =========================
   GRID DE BENEFICIOS (CARDS)
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.bcardwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bcard {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.bcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.bcard__top {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.bcard__top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.bcard:hover .bcard__top img {
  transform: scale(1.08);
}

.bcard__bottom {
  position: relative;
  background: var(--blue3);
  color: var(--white);
  padding: 55px 20px 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--bg);
}

.badge--sm { font-size: 9.5px; }

.bcard__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

.bbtn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.bbtn:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* =========================
   STATS / NÚMEROS
========================= */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat {
  padding: 20px;
}

.stat__number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--blue-accent);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}

.stat.animate .stat__number {
  opacity: 1;
  transform: translateY(0);
}

.section--blue .stat__number {
  color: var(--blue-accent);
}

.stat__label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .6s ease .2s;
}

.stat.animate .stat__label {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FEATURES / POR QUÉ ELEGIRNOS
========================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--white);
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================
   CTA SECTION
========================= */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--blue3) 0%, var(--blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}

.cta p {
  font-size: 17px;
  opacity: .85;
  max-width: 550px;
  margin: 0 auto 32px;
  font-weight: 300;
  position: relative;
}

.cta__btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--transition);
  position: relative;
  border: 2px solid var(--white);
}

.cta__btn:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

/* =========================
   FORMULARIO GOOGLE
========================= */
.form-section {
  background: linear-gradient(135deg, var(--blue3) 0%, var(--blue) 100%);
  padding: 80px 0;
}

.form-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.form-section h2 {
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--white);
  font-size: 28px;
}

.form-section h3 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  font-size: 15px;
}

.form-google {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.form-section iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* =========================
   REDES SOCIALES
========================= */
.redes {
  padding: 40px 0;
  background: var(--bg);
}

.redes-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
}

.red {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
}

.red img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  transition: transform var(--transition);
  filter: grayscale(.2);
}

.red:hover img {
  transform: scale(1.15);
  filter: grayscale(0);
}

.red span {
  display: none;
}

/* =========================
   FOOTER CORPORATIVO
========================= */
.footer {
  background: var(--blue3);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  height: auto;
  width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 280px;
}

.footer__col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  padding: 6px 0;
  transition: all var(--transition);
}

.footer__col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--blue-accent);
  transform: translateY(-3px);
}

/* =========================
   QUIENES SOMOS
========================= */
.qs-hero {
  height: 400px;
  background: url('/assets/img/qs-hero.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,27,110,.7) 0%, rgba(11,47,134,.5) 100%);
}

.qs-hero h1 {
  position: relative;
  color: var(--white);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 200;
  letter-spacing: .5px;
  z-index: 1;
}

.qs-band {
  background: var(--blue3);
  color: var(--white);
  padding: 50px 0;
}

.qs-band p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 17px;
  font-weight: 300;
  text-align: center;
}

.qs-content {
  background: var(--bg-alt);
  padding: 80px 0;
}

.qs-titlebox {
  background: var(--white);
  padding: 20px 40px;
  font-size: 30px;
  font-weight: 300;
  color: var(--text);
  text-align: center;
  border-radius: var(--radius);
  margin: 0 auto 40px;
  max-width: 700px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.qs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.qs-card {
  width: 100%;
  max-width: 360px;
  background: transparent;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.qs-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.qs-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.qs-card__body {
  background: var(--white);
  padding: 24px 20px;
  min-height: 170px;
}

.qs-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  text-align: center;
}

.qs-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* =========================
   BENEFICIOS PAGES
========================= */
.content-beneficios {
  background: var(--bg-alt);
  padding: 80px 0;
}

.ben-servicios {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.ben-servicios img {
  width: 100%;
  height: auto;
  display: block;
}

.ben-titlebox {
  background: var(--white);
  padding: 20px 40px;
  font-size: 30px;
  font-weight: 300;
  color: var(--text);
  text-align: center;
  border-radius: var(--radius);
  margin: 0 auto 16px;
  max-width: 700px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.ben-sub-titlebox {
  background: var(--white);
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  border-radius: var(--radius);
  margin: 0 auto 40px;
  max-width: 700px;
  border: 1px solid var(--border);
}

.ben-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.ben-card {
  width: 100%;
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
  align-self: start;
}

.ben-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.ben-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.ben-card:hover img {
  transform: scale(1.05);
}

.ben-card-content {
  padding: 24px 20px;
}

.ben-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

/* =========================
   CAPACITACIONES - CARDS IMAGEN
========================= */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cap-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.cap-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cap-card--sm img {
  height: 200px !important;
  object-fit: cover !important;
}

.cap-card--sm .cap-card__title {
  padding: 12px 10px;
  font-size: 14px;
}

.cap-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.cap-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: var(--bg-alt);
  transition: transform .5s ease;
}

.cap-card:hover img {
  transform: scale(1.03);
}

.cap-card__title {
  padding: 18px 16px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  background: var(--white);
}

.cap-card__body {
  padding: 28px 24px;
  background: var(--white);
  text-align: center;
  min-height: 320px;
}

.cap-card__body h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.cap-card__body p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.cap-card__body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 12px 0 6px;
}

.cap-card__body p:last-child {
  margin-bottom: 0;
}

.card-subtitle {
  font-weight: 700;
  font-size: 17px !important;
  color: var(--blue) !important;
  margin-top: 24px !important;
}

.cap-card--small-img img {
  height: 250px;
  object-fit: cover;
}

/* =========================
   ASOCIADOS - GRID LOGOS
========================= */
.asociados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}

.asociado-card {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.asociado-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.asociado-card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.asociado-card__info {
  text-align: center;
  padding: 16px 12px;
}

.asociado-card__info strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.asociado-card__info span {
  font-size: 12px;
  color: var(--muted);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .navtoggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--white);
    z-index: 1300;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px;
    transform: translateX(-110%);
    transition: transform .25s ease;
    box-shadow: var(--shadow-xl);
    overflow: auto;
  }

  .navclose { display: inline-block; }

  .nav a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
  }

  body.nav-open .nav { transform: translateX(0); }

  .drop__toggle { display: inline-flex; align-items: center; justify-content: center; }

  .drop__menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    display: none;
    padding: 4px 0 4px 20px;
    box-shadow: none;
    border-radius: 0;
    border: none;
  }

  .drop.open .drop__menu { display: block; }

  .drop::after { display: none; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__brand { align-items: center; }
  .footer__tagline { max-width: 100%; }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Grids responsive */
  .cap-grid { grid-template-columns: 1fr; }
  .cap-grid--3 { grid-template-columns: 1fr; }
  .cap-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .asociados-grid { grid-template-columns: repeat(2, 1fr); }
  .qs-grid { flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
  .hero { min-height: 400px; }
  .hero__inner { padding: 40px 20px; }
  .hero h1 { font-size: 32px; }

  .band { padding: 40px 0; }
  .band p { font-size: 16px !important; }

  .section { padding: 60px 0; }
  .section__header h2 { font-size: 24px; }

  .redes-inner { gap: 28px; }

  .partners-slider { height: 300px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .cap-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .asociados-grid { grid-template-columns: repeat(2, 1fr); }

  .cap-card img { height: auto !important; object-fit: contain !important; background: var(--bg-alt); }
  .cap-card--sm img { height: 120px !important; object-fit: cover !important; }

  .cap-card__body { min-height: auto; }
  .cap-card__body h3 { font-size: 16px; }
  .cap-card__body p { font-size: 13px; }

  .cap-grid--3 .cap-card img { height: auto !important; }

  .features { grid-template-columns: 1fr; }

  .cta h2 { font-size: 24px; }
  .cta__btn { padding: 14px 32px; font-size: 13px; }
}
