*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== HEADER (LIMPIO) ===== */
.eba-header{
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}

.eba-header__wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 1px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.eba-header__brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.eba-header__logo{
  height: 60px;
  width: auto;
  display: block;
}

/* Menú desktop */
.eba-header__nav{
  display: flex;
  align-items: center;
  gap: 26px;
}

.eba-header__link{
  color: #111;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.eba-header__link:hover{ border-bottom-color: #cfcfcf; }
.eba-header__link.is-active{ border-bottom-color: #111; }

/* Botón toggle (solo móvil) */
.eba-navToggle{
  display: none;
  background: #fff;
  border-radius: 10px;
  height: 45px;
  width: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Icono 3 rayas */
.eba-navToggle__icon{
  position: relative;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition: background .15s ease;
}

.eba-navToggle__icon::before,
.eba-navToggle__icon::after{
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition: transform .18s ease, top .18s ease;
}
.eba-navToggle__icon::before{ top: -7px; }
.eba-navToggle__icon::after{ top:  7px; }

/* Abierto => X */
.eba-navToggle[aria-expanded="true"] .eba-navToggle__icon{
  background: transparent;
}
.eba-navToggle[aria-expanded="true"] .eba-navToggle__icon::before{
  top: 0;
  transform: rotate(45deg);
}
.eba-navToggle[aria-expanded="true"] .eba-navToggle__icon::after{
  top: 0;
  transform: rotate(-45deg);
}

/* Menú móvil (animado) */
.eba-mobileNav{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  padding: 10px 18px 14px;
  z-index: 50;

  transform-origin: top;
  transform: translateY(-8px);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease, opacity .18s ease, transform .18s ease;
}

.eba-mobileNav.is-open{
  transform: translateY(0);
  opacity: 1;
  max-height: 260px;
}

.eba-mobileNav__link{
  display: block;
  padding: 12px 4px;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  border-bottom: 1px solid #f1f1f1;
}
.eba-mobileNav__link:last-child{ border-bottom: 0; }
.eba-mobileNav__link.is-active{ text-decoration: underline; }

/* ✅ Responsive */
@media (max-width: 760px){
  .eba-header__nav{ display: none; }
  .eba-navToggle{ display: inline-flex; }
  .eba-header__logo{ height: 44px; }
}

/* ===== LOGO VERTICAL (EBA NETWORK) ===== */
.eba-header__brand--stack{
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

/* Texto EBA (oro) */
.eba-header__eba{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #d4af37; /* oro */
  line-height: 1;
  margin-top: -10px;
}

/* Texto NETWORK (azul) */
.eba-header__network{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #1f3550; /* azul */
  line-height: 1;
}









.eba-heroBg{
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.eba-heroBg__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* clave para que cubra toda la sección */
  object-position: center;
  transform: scale(1.02);
}


.eba-heroBg__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.30) 0%,
    rgba(0,0,0,.48) 55%,
    rgba(0,0,0,.55) 100%
  );
}

.eba-heroBg__content{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 18px;
  max-width: 980px;
}

.eba-heroBg__title{
  margin: 0 0 14px;
  color: #fff;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.eba-heroBg__text{
  margin: 0 auto 26px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

.eba-heroBg__actions{
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.eba-heroBg__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s ease, opacity .15s ease;
}

.eba-heroBg__btn:hover{
  transform: translateY(-1px);
}

.eba-heroBg__btn--outline{
  color: #fff;
  border: 1.6px solid rgba(255,255,255,.95);
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(2px);
}

.eba-heroBg__btn--link{
  color: rgba(255,255,255,.95);
  padding: 0 6px;
  height: auto;
  border-radius: 0;
  border: 0;
  text-decoration: none;
  opacity: .95;
}

.eba-heroBg__btn--link:hover{
  opacity: 1;
  transform: none;
  text-decoration: underline;
}

/* ✅ Responsive */
@media (max-width: 900px){
  .eba-heroBg{ min-height: 460px; }
  .eba-heroBg__title{ font-size: 48px; }
}

@media (max-width: 520px){
  .eba-heroBg{ min-height: 420px; }
  .eba-heroBg__title{ font-size: 36px; }
  .eba-heroBg__text{ font-size: 14px; }
  .eba-heroBg__btn{ width: 100%; max-width: 320px; }
  .eba-heroBg__actions{ gap: 12px; }
}
















/*estilos para tercera sección*/



.eba-hero{
  padding: 70px 0;
  background: #fff;
}

.eba-hero__wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.eba-hero__title{
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: #111;
}

.eba-hero__text{
  margin: 0 0 26px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.eba-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border: 1.6px solid #111;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #111;
}

.eba-hero__btn:hover{
  transform: translateY(-1px);
}

.eba-hero__media{
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.eba-hero__img{
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
}

.eba-hero__stats{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86%;
  background: #1976d2; /* azul tipo tu imagen */
  color: #fff;
  padding: 22px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.eba-hero__num{
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.eba-hero__label{
  font-size: 13px;
  opacity: .95;
}

/* Responsive */
@media (max-width: 980px){
  .eba-hero__wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .eba-hero__title{
    font-size: 44px;
  }

  .eba-hero__img{
    height: 380px;
  }

  .eba-hero__stats{
    width: 100%;
  }
}

@media (max-width: 520px){
  .eba-hero{
    padding: 50px 0;
  }

  .eba-hero__title{
    font-size: 36px;
  }

  .eba-hero__img{
    height: 320px;
  }

  .eba-hero__stats{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .eba-hero__num{
    font-size: 34px;
  }
}












/*estilos para cuarta sección*/

.eba-services{
  padding: 80px 0;
  background: #1f3550; /* azul tipo tu captura */
}

.eba-services__wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.eba-services__head{
  text-align: center;
  margin-bottom: 36px;
}

.eba-services__title{
  margin: 0 0 8px;
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.eba-services__sub{
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.6;
}

.eba-services__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.eba-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  display: grid;
  grid-template-rows: 220px 1fr;
}

.eba-card__media{
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.eba-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eba-card__body{
  padding: 20px 20px 24px;
}

.eba-card__title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.eba-card__text{
  margin: 0;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.7;
}

/* Hover suave (opcional) */
.eba-card:hover{
  transform: translateY(-2px);
  transition: transform .15s ease;
}

/* ✅ Responsive */
@media (max-width: 980px){
  .eba-services__grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .eba-card{
    grid-template-rows: 210px 1fr;
  }
}

@media (max-width: 560px){
  .eba-services{
    padding: 60px 0;
  }
  .eba-services__title{
    font-size: 34px;
  }
  .eba-services__grid{
    grid-template-columns: 1fr;
  }
  .eba-card{
    grid-template-rows: 200px 1fr;
  }
}




/*estilos para el footer*/

/* Footer base */
.eba-footer{
  background: #1f3550; /* mismo azul */
  color: #fff;
}

/* CTA */
.eba-footerCta{
  padding: 70px 0 90px;
}

.eba-footerCta__wrap{
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.eba-footerCta__title{
  margin: 0 0 10px;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.eba-footerCta__sub{
  margin: 0 0 22px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
}

.eba-footerCta__form{
  display: grid;
  justify-content: center;
  gap: 16px;
}

.eba-footerCta__label{
  display: grid;
  gap: 8px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  width: min(520px, 92vw);
  margin: 0 auto;
}

.eba-footerCta__input{
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.eba-footerCta__btn{
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  background: #1976d2;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
}

.eba-footerCta__btn:hover{
  transform: translateY(-1px);
}

/* Bottom bar */
.eba-footerBottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 26px 0;
}

.eba-footerBottom__wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.eba-footerCol__title{
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}

.eba-footerCol__mini{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 800;
  opacity: .95;
}

.eba-footerCol__mini--label{
  display: block;
}

.eba-footerCol__text{
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.6;
}

.eba-footerBottom__input{
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
}

/* ✅ Responsive */
@media (max-width: 900px){
  .eba-footerCta__title{ font-size: 44px; }
  .eba-footerBottom__wrap{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px){
  .eba-footerCta{ padding: 60px 0 70px; }
  .eba-footerCta__title{ font-size: 36px; }

  .eba-footerBottom__wrap{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
