/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0d1b2e;
  color: #fff;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: #0d1b2e url('imagenes/home/bannerfondo.jpg') center/cover;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

@media (max-width: 768px) {
  body::before {
    position: fixed;
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}


img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

:root {
  --navy:    #0d1b2e;
  --gold:    #c9973a;
  --gold-lt: #d4a843;
}

/* ══ ANIMACIONES SCROLL ══ */
.ep-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ep-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ NAVBAR ══ */
.ep-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  overflow: visible;
}
.ep-nav__logo { display: flex; align-items: center; gap: 10px; }
.ep-nav__logo img { height: 36px; width: auto; }
.ep-nav__logo span { font-size: 16px; font-weight: 600; color: #fff; }
.ep-nav__logo em { font-style: normal; font-weight: 300; color: #bbb; }
.ep-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  overflow: visible;
}
.ep-nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.ep-nav__links a:hover { color: var(--gold-lt); }
.ep-nav__cta {
  background: var(--gold) !important;
  color: #fff !important;
  text-decoration: none !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.ep-nav__cta:hover { background: var(--gold-lt) !important; }
.ep-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.ep-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ══ DROPDOWN ══ */
.ep-nav__dropdown {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.ep-nav__dropdown > a::after { content: ' ▾'; font-size: 10px; }
.ep-nav__submenu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 10px 10px;
  padding: 8px 0;
  min-width: 220px;
  list-style: none;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.ep-nav__submenu li { list-style: none; }
.ep-nav__submenu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.ep-nav__submenu li a:hover {
  background: rgba(255,255,255,0.06);
  color: #D1A146 !important;
}
.ep-nav__dropdown:hover .ep-nav__submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* ══ HERO ══ */
.ep-hero-wrap { padding: 0; }
.ep-hero { width: 100%; overflow: hidden; }
.ep-hero__img { width: 100%; height: auto; display: block; margin-top: -80px; }

/* ══ INTRO ══ */
.ep-intro {
  position: relative;
  background: url('imagenes/home/f1.jpg') center/cover no-repeat;
}
.ep-intro__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(13,27,46,0.88) 65%, #0d1b2e 100%);
}
.ep-intro__content { position: relative; z-index: 1; padding: 80px 280px; }
.ep-intro__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 56px 64px;
}
.ep-intro__card-text { font-size: 22px; font-weight: 700; line-height: 2; color: #1a1a2e; text-align: justify; }
.ep-intro__card-btns { display: flex; flex-direction: column; gap: 16px; min-width: 260px; }
.ep-intro__btn-dark {
  display: block; background: #1a2d45; color: #fff; text-align: center;
  padding: 24px 32px; border-radius: 10px; font-size: 16px; font-weight: 700; transition: background .2s;
}
.ep-intro__btn-dark:hover { background: #243d63; }
.ep-intro__btn-gold {
  display: block; background: var(--gold); color: #fff; text-align: center;
  padding: 24px 32px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 1.5; transition: background .2s;
}
.ep-intro__btn-gold:hover { background: var(--gold-lt); }
.ep-intro__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.ep-intro__cols p { font-size: 20px; font-weight: 700; line-height: 2; color: rgba(255,255,255,0.85); text-align: justify; }

/* ══ QUIÉNES SOMOS ══ */
.ep-qs { background: transparent; }
.ep-qs__content { padding: 120px 120px; }
.ep-qs__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; text-align: center; margin-bottom: 56px; }
.ep-qs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 10%;
}
.ep-qs__grid img {
  width: 80%;
  height: auto;
  border-radius: 16px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.ep-qs__grid img:hover { transform: scale(1.05); }

/* ══ LISTO ══ */
.ep-listo { background: rgba(25, 33, 54, 0.80); min-height: 700px; }
.ep-listo__content { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; padding: 140px 220px; }
.ep-listo__title { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: 28px; line-height: 1.3; }
.ep-listo__text { font-size: 15px; font-weight: 500; line-height: 1.9; color: rgba(255,255,255,0.85); text-align: justify; margin-bottom: 16px; }
.ep-listo__btn {
  display: inline-block; margin-top: 24px; background: #F0A202; color: #fff;
  padding: 14px 36px; border-radius: 8px; font-size: 15px; font-weight: 700; transition: transform 0.3s ease;
}
.ep-listo__btn:hover { transform: scale(0.93); }
.ep-listo__right img { width: 100%; height: auto; border-radius: 16px; }

/* ══ STATS ══ */
.ep-stats { background: rgba(25, 33, 54, 0.75); }
.ep-stats__content { display: flex; justify-content: center; gap: 350px; padding: 80px; }
.ep-stats__item { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.ep-stats__ring {
  width: 200px; height: 200px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; background: none; padding: 12px;
}
.ep-stats__ring svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: visible; transform: rotate(90deg) scaleX(-1);
}
.ep-stats__ring svg circle.track { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 5; }
.ep-stats__ring svg circle.fill {
  fill: none; stroke: #c9973a; stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 565.49; stroke-dashoffset: 565.49;
  filter: drop-shadow(0 0 4px #c9973a) drop-shadow(0 0 12px #e8b84b) drop-shadow(0 0 24px #c9973a);
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.ep-stats__ring.animated svg circle.fill { stroke-dashoffset: 0; }
.ep-stats__ring span { position: relative; z-index: 1; font-size: 2.4rem; font-weight: 700; color: #fff; }
.ep-stats__item p { font-size: 16px; font-weight: 700; color: #fff; text-align: center; }

/* ══ PANAL ══ */
.ep-panal {
  position: relative;
  background: transparent;
  padding: 200px 40px 80px 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.ep-panal__wrap {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ep-panal__row {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}
.ep-panal__row--offset {
  margin-left: 84px;
  margin-top: -38px;
}
.ep-panal__row + .ep-panal__row:not(.ep-panal__row--offset) { margin-top: -38px; }
.ep-hex {
  width: 160px; height: 185px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden; flex-shrink: 0; position: relative;
}
.ep-hex--gold { background: #c9973a; }
.ep-hex--empty { background: transparent; pointer-events: none; }
.ep-hex--img { perspective: 900px; }
.ep-hex__inner {
  width: 100%; height: 100%; position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ep-hex--img:hover .ep-hex__inner { transform: rotateY(180deg); }
.ep-hex__front {
  position: relative;
  width: 100%;
  height: 100%;
}
.ep-hex__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.ep-hex__back {
  position: absolute; inset: 0; width: 100%; height: 100%;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  background: radial-gradient(circle at center, #fff 40%, #c9973a 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; transform: rotateY(180deg);
}
.ep-hex__back p { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a2e; text-align: center; line-height: 1.5; }
.ep-panal__titulo { position: absolute; top: 0; left: 0; overflow: hidden; z-index: 10; }
.ep-panal__titulo h2 {
  background: #192136; color: #fff; font-size: 32px; font-weight: 700;
  padding: 24px 48px; white-space: nowrap;
  transform: translateX(-110%); transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.ep-panal__titulo h2.visible { transform: translateX(0); }

/* ══ COLABORA ══ */
.ep-colabora {
  background: linear-gradient(to bottom, rgba(201,151,58,0.75), rgba(13,27,46,0.60));
  padding: 100px 120px;
}
.ep-colabora__content { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; }
.ep-colabora__title { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 700; color: #fff; line-height: 1.3; }
.ep-colabora__text { font-size: 19px; font-weight: 500; line-height: 1.9; color: rgba(255,255,255,0.90); text-align: justify; }
.ep-colabora__img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; }
.ep-colabora__right { display: flex; flex-direction: column; gap: 24px; }
.ep-colabora__btn {
  display: block; background: #1a2d45; color: #fff; padding: 18px 0; width: 100%;
  border: none; border-radius: 8px; font-size: 18px; font-weight: 700;
  cursor: pointer; text-align: center; transition: background 0.2s;
}
.ep-colabora__btn:hover { background: #243d63; }
.ep-colabora__form {
  display: flex; flex-direction: column; gap: 12px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease; opacity: 0;
}
.ep-colabora__form.open { max-height: 600px; opacity: 1; }
.ep-colabora__input {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 14px 18px; font-size: 14px;
  font-family: 'Inter', sans-serif; color: #fff; outline: none; transition: border-color 0.2s;
}
.ep-colabora__input::placeholder { color: rgba(255,255,255,0.4); }
.ep-colabora__input:focus { border-color: var(--gold); }
.ep-colabora__textarea { resize: vertical; min-height: 100px; }
.ep-colabora__submit {
  background: #fff; color: #1a2d45; border: none; border-radius: 8px;
  padding: 14px; font-size: 15px; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.ep-colabora__submit:hover { background: var(--gold); color: #fff; }

/* ══ CONTACTO ══ */
.ep-contacto {
  position: relative;
  background: url('imagenes/home/f2.jpg') center/cover no-repeat;
  min-height: 680px; display: flex; align-items: center; justify-content: center;
}
.ep-contacto__overlay {
  position: absolute; inset: 0;
  background:
    url('imagenes/home/v1.png') center/cover no-repeat,
    linear-gradient(to left, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 35%, rgba(255,255,255,0.10) 70%, transparent 100%);
}
.ep-contacto__content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 100px 120px; width: 100%;
}
.ep-contacto__left { display: flex; flex-direction: column; gap: 16px; }
.ep-contacto__title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.2; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.ep-contacto__right { display: flex; flex-direction: column; gap: 50px; width: 100%; max-width: 360px; margin-left: auto; }
.ep-contacto__sub { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.4); letter-spacing: 0.02em; text-align: center; }
.ep-contacto__form { display: flex; flex-direction: column; gap: 14px; }
.ep-contacto__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ep-contacto__input {
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px; padding: 14px 24px; font-size: 14px;
  font-family: 'Inter', sans-serif; color: #fff; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.ep-contacto__input::placeholder { color: rgba(255,255,255,0.6); }
.ep-contacto__input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,151,58,0.2); }
.ep-contacto__select {
  cursor: pointer; color: rgba(255,255,255,0.6); appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 18px center; padding-left: 40px;
}
.ep-contacto__select option { color: #1a1a2e; background: #fff; }
.ep-contacto__textarea { resize: vertical; min-height: 110px; border-radius: 12px; }
.ep-contacto__submit {
  background: var(--gold); color: #fff; border: none; border-radius: 12px;
  padding: 14px 48px; font-size: 16px; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.2s; margin-top: 4px;
  width: fit-content; align-self: center;
}
.ep-contacto__submit:hover { background: var(--gold-lt); transform: scale(0.98); }

/* ══ FOOTER ══ */
.ep-footer { background: var(--navy); border-top: 1px solid rgba(201,151,58,0.25); }
.ep-footer__content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 120px 48px; }
.ep-footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ep-footer__logo img { height: 32px; width: auto; }
.ep-footer__logo span { font-size: 15px; font-weight: 600; color: #fff; }
.ep-footer__logo em { font-style: normal; font-weight: 300; color: #bbb; }
.ep-footer__tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.ep-footer__socials { display: flex; gap: 14px; }
.ep-footer__socials a {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: border-color 0.2s, color 0.2s;
}
.ep-footer__socials a:hover { border-color: var(--gold); color: var(--gold); }
.ep-footer__socials svg { width: 16px; height: 16px; }
.ep-footer__heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 20px; }
.ep-footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ep-footer__list a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.ep-footer__list a:hover { color: #fff; }
.ep-footer__list--contact li { font-size: 13px; color: rgba(255,255,255,0.6); }
.ep-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 120px 28px; border-top: 1px solid rgba(255,255,255,0.06); background: #fff;
}
.ep-footer__bottom p { font-size: 12px; color: #1a1a2e; }
.ep-footer__legal { display: flex; gap: 12px; align-items: center; font-size: 12px; color: #1a1a2e; }
.ep-footer__legal a { color: #1a1a2e; transition: color 0.2s; }
.ep-footer__legal a:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   RESPONSIVE COMPLETO
   ════════════════════════════════════════════ */

/* ── ≤1440px ── */
@media (max-width: 1440px) {
  .ep-intro__content { padding: 80px 160px; }
  .ep-listo__content { padding: 120px 160px; gap: 80px; }
  .ep-stats__content { gap: 250px; }
}

/* ── ≤1280px ── */
@media (max-width: 1280px) {
  .ep-intro__content { padding: 80px 100px; }
  .ep-intro__card { padding: 48px; }
  .ep-intro__card-text { font-size: 18px; }
  .ep-listo__content { padding: 100px 100px; gap: 60px; }
  .ep-colabora { padding: 80px 80px; }
  .ep-colabora__content { gap: 60px; }
  .ep-contacto__content { padding: 80px 80px; }
  .ep-stats__content { gap: 180px; }
  .ep-footer__content { padding: 64px 80px 48px; }
  .ep-footer__bottom { padding: 20px 80px 28px; }
  .ep-panal__row--offset { margin-left: 84px; }
}

/* ── ≤1100px ── */
@media (max-width: 1100px) {
  .ep-intro__content { padding: 60px 60px; }
  .ep-intro__card { grid-template-columns: 1fr; gap: 28px; }
  .ep-intro__card-text { font-size: 17px; }
  .ep-intro__card-btns { flex-direction: row; min-width: unset; }
  .ep-intro__btn-dark, .ep-intro__btn-gold { flex: 1; }
  .ep-intro__cols { gap: 32px; }
  .ep-intro__cols p { font-size: 16px; }

  .ep-qs__content { padding: 60px 60px; }
  .ep-qs__grid { padding: 0 4%; gap: 16px; }
  .ep-qs__grid img { width: 90%; }

  .ep-listo__content { padding: 80px 60px; gap: 48px; }
  .ep-stats__content { gap: 100px; padding: 80px 40px; }

  .ep-colabora { padding: 80px 60px; }
  .ep-colabora__content { gap: 48px; }
  .ep-colabora__text { font-size: 17px; }

  .ep-contacto__content { padding: 80px 60px; gap: 48px; }
  .ep-contacto__right { max-width: 100%; }

  .ep-footer__content { grid-template-columns: 1fr 1fr; padding: 64px 60px 48px; gap: 36px; }
  .ep-footer__col--brand { grid-column: 1 / -1; }
  .ep-footer__bottom { padding: 20px 60px 28px; }

  /* Panal escala media */
  .ep-hex { width: 130px; height: 150px; }
  .ep-hex__back p { font-size: 14px; }
  .ep-panal__row--offset { margin-left: 69px; margin-top: -32px; }
  .ep-panal__row + .ep-panal__row:not(.ep-panal__row--offset) { margin-top: -32px; }
  .ep-panal__wrap { max-width: 620px; }
}

/* ── ≤900px ── */
@media (max-width: 900px) {
  .ep-intro__content { padding: 48px 40px; }
  .ep-intro__card-text { font-size: 15px; }
  .ep-intro__cols p { font-size: 15px; }

  /* Quiénes somos: 2 cols en tablet */
  .ep-qs__content { padding: 60px 20px; }
  .ep-qs__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 0;
    position: relative;
    height: 260px;
    grid-template-columns: unset;
  }
  .ep-qs__grid img {
    position: absolute;
    width: 48%;
    margin: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    user-select: none;
    -webkit-user-select: none;
  }
  .ep-qs__grid img:last-child {
    grid-column: unset;
    width: 48%;
    margin: 0;
  }
  .ep-listo__content { padding: 60px 40px; gap: 40px; }
  .ep-stats__content { gap: 60px; padding: 60px 32px; }

  .ep-colabora { padding: 60px 40px; }
  .ep-colabora__content { gap: 36px; }

  .ep-contacto__content { padding: 60px 40px; gap: 36px; }

  .ep-footer__content { padding: 48px 40px 36px; }
  .ep-footer__bottom { padding: 20px 40px; }

  /* Panal */
  .ep-hex { width: 110px; height: 127px; }
  .ep-hex__back p { font-size: 12px; padding: 12px; }
  .ep-panal__row--offset { margin-left: 59px; margin-top: -27px; }
  .ep-panal__row + .ep-panal__row:not(.ep-panal__row--offset) { margin-top: -27px; }
  .ep-panal__wrap { max-width: 520px; }
  .ep-panal { padding: 140px 20px 60px; }
  .ep-panal__titulo h2 { font-size: 26px; padding: 20px 36px; }
}

/* ── ≤768px ── */
@media (max-width: 768px) {
  /* Navbar */
  .ep-nav { padding: 14px 20px; }
  .ep-nav__links {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.08); gap: 0; overflow: visible;
  }
  .ep-nav__links.open { display: flex; }
  .ep-nav__links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ep-nav__links a { display: block; padding: 12px 0; }
  .ep-nav__cta { margin-top: 8px; text-align: center; width: 100%; display: block; }
  .ep-nav__hamburger { display: flex; }
  .ep-nav__dropdown { padding-bottom: 0; margin-bottom: 0; }
  .ep-nav__submenu {
    position: static; transform: none; box-shadow: none; border: none; border-radius: 0;
    background: rgba(255,255,255,0.04); padding: 0 0 0 16px;
    visibility: hidden; opacity: 0; pointer-events: none; height: 0; overflow: hidden; transition: none;
  }
  .ep-nav__dropdown.open .ep-nav__submenu { visibility: visible; opacity: 1; pointer-events: auto; height: auto; }
  .ep-nav__submenu li a { padding: 8px 0 !important; font-size: 12px !important; }

  /* Hero */
  .ep-hero__img { margin-top: -30px; }

  /* Intro */
  .ep-intro__content { padding: 24px 16px; }
  .ep-intro__card { grid-template-columns: 1fr; padding: 20px 18px; gap: 16px; }
  .ep-intro__card-text { font-size: 13px; line-height: 1.6; }
  .ep-intro__card-btns { flex-direction: column; min-width: unset; gap: 10px; }
  .ep-intro__btn-dark, .ep-intro__btn-gold { padding: 12px 16px; font-size: 13px; border-radius: 8px; }
  .ep-intro__cols { grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
  .ep-intro__cols p { font-size: 13px; line-height: 1.7; }

  /* Quiénes somos — slider apilado */
  .ep-qs__content { padding: 40px 20px; }
  .ep-qs__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 0;
    position: relative;
    height: 220px;
    grid-template-columns: unset;
  }
  .ep-qs__grid img {
    position: absolute;
    width: 52%;
    margin: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    user-select: none;
    -webkit-user-select: none;
  }
  .ep-qs__grid img:last-child {
    grid-column: unset;
    width: 52%;
    margin: 0;
  }
  .ep-qs__grid img:hover { transform: none; }
  .ep-qs__grid img.qs-front {
    transform: translateX(0) scale(1) rotate(0deg);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  }
  .ep-qs__grid img.qs-mid {
    transform: translateX(30%) scale(0.82) rotate(8deg);
    opacity: 0.75;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
  .ep-qs__grid img.qs-back {
    transform: translateX(-30%) scale(0.82) rotate(-8deg);
    opacity: 0.75;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  }
  /* Listo */
  .ep-listo__content { grid-template-columns: 1fr; padding: 60px 20px; gap: 36px; }
  .ep-listo__right { order: -1; }
  .ep-listo__right img { border-radius: 12px; }

  /* Stats */
  .ep-stats__content { flex-direction: column; align-items: center; gap: 48px; padding: 60px 20px; }
  .ep-stats__ring { width: 150px; height: 150px; }
  .ep-stats__ring span { font-size: 1.8rem; }

  /* Panal centrado mobile */
  .ep-panal {
    padding: 80px 0 60px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
  .ep-panal__titulo h2 { font-size: 18px; padding: 14px 20px; white-space: normal; }
  .ep-panal__wrap {
    width: auto;
    max-width: none;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    padding: 0;
  }
  .ep-panal__row {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
  }
  .ep-hex { width: 88px; height: 102px; }
  .ep-hex__back p { font-size: 10px; padding: 8px; }
  .ep-panal__row--offset { margin-left: 48px; margin-top: -22px; }
  .ep-panal__row + .ep-panal__row:not(.ep-panal__row--offset) { margin-top: -22px; }

  /* Contenedor centrador del panal */
  .ep-panal > .ep-panal__titulo ~ * { display: flex; justify-content: center; }

  /* Colabora */
  .ep-colabora { padding: 60px 20px; }
  .ep-colabora__content { grid-template-columns: 1fr; gap: 36px; }
  .ep-colabora__img { height: 240px; }
  .ep-colabora__text { font-size: 15px; }

  /* Contacto */
  .ep-contacto { min-height: auto; }
  .ep-contacto__overlay {
    background: linear-gradient(to bottom, rgba(13,27,46,0.5) 0%, rgba(13,27,46,0.85) 100%);
  }
  .ep-contacto__content { grid-template-columns: 1fr; padding: 60px 20px; gap: 32px; }
  .ep-contacto__right { margin-left: 0; max-width: 100%; gap: 24px; }
  .ep-contacto__row { grid-template-columns: 1fr; }
  .ep-contacto__submit { width: 100%; }

  /* Footer */
  .ep-footer__content { grid-template-columns: 1fr; padding: 48px 20px 32px; gap: 36px; }
  .ep-footer__col--brand { grid-column: auto; }
  .ep-footer__bottom { flex-direction: column; gap: 10px; padding: 20px; text-align: center; }
}

/* ── ≤480px ── */
@media (max-width: 480px) {
  .ep-nav__logo span { font-size: 13px; }
  .ep-nav__logo img { height: 28px; }
  .ep-intro__card-text { font-size: 12px; }
  .ep-intro__btn-dark, .ep-intro__btn-gold { font-size: 12px; padding: 10px 14px; }
  .ep-qs__title { font-size: 1.6rem; }
  .ep-qs__grid { height: 220px; }
  .ep-qs__grid img,
  .ep-qs__grid img:last-child { width: 46%; }
  .ep-listo__title { font-size: 1.3rem; }
  .ep-listo__text { font-size: 14px; }
  .ep-stats__ring { width: 120px; height: 120px; }
  .ep-stats__ring span { font-size: 1.5rem; }
  .ep-stats__item p { font-size: 14px; }
  .ep-hex { width: 80px; height: 92px; }
  .ep-hex__back p { font-size: 9px; padding: 6px; }
  .ep-panal__row--offset { margin-left: 44px; margin-top: -20px; }
  .ep-panal__row + .ep-panal__row:not(.ep-panal__row--offset) { margin-top: -20px; }
  .ep-colabora__btn { font-size: 16px; }
  .ep-contacto__title { font-size: 1.6rem; }
  .ep-contacto__sub { font-size: 1.3rem; }
  .ep-footer__legal { flex-direction: column; gap: 6px; }
}

/* ── ≤360px ── */
@media (max-width: 360px) {
  .ep-intro__card { padding: 16px 14px; }
  .ep-intro__card-text { font-size: 11px; }
  .ep-qs__grid { height: 190px; }
  .ep-qs__grid img,
  .ep-qs__grid img:last-child { width: 44%; }
  .ep-hex { width: 68px; height: 79px; }
  .ep-hex__back p { font-size: 8px; padding: 5px; }
  .ep-panal__row--offset { margin-left: 38px; margin-top: -17px; }
  .ep-panal__row + .ep-panal__row:not(.ep-panal__row--offset) { margin-top: -17px; }
  .ep-stats__ring { width: 100px; height: 100px; }
  .ep-stats__ring span { font-size: 1.3rem; }
}
/* ===== ICONOS DE CONTACTO EN FOOTER ===== */
.ep-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ep-footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== ICONOS DE CONTACTO EN FOOTER ===== */
.ep-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ep-footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
