*{
  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: 14px 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; }
}












.eba-contact{
  padding: 60px 0;
}

.eba-contact__wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.eba-contact__title{
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.eba-contact__text{
  margin: 0 0 28px;
  font-size: 16px;
  opacity: .85;
}

.eba-contact__box{
  margin: 18px 0;
}

.eba-contact__box h4{
  margin: 0 0 6px;
  font-size: 15px;
}

.eba-contact__box p{
  margin: 0;
  font-size: 15px;
  opacity: .9;
}

.eba-contact__formCard{
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  background: #fff;
}

.eba-form{
  display: grid;
  gap: 14px;
}

.eba-label{
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.eba-input{
  width: 100%;
  height: 46px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
}

.eba-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.eba-btn{
  height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  background: #1a73e8;
  color: #fff;
}

.eba-note{
  margin: 12px 0 0;
  font-size: 12px;
  opacity: .7;
}

/* Responsive */
@media (max-width: 900px){
  .eba-contact__wrap{ grid-template-columns: 1fr; }
  .eba-contact__title{ font-size: 36px; }
}









/*seccion para el mapa*/

.eba-where{
  background: #1f3550;
  color: #fff;
  padding: 70px 0 0;
}

.eba-where__wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px 60px;
}

.eba-where__top{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}

.eba-where__title{
  margin: 0 0 14px;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.eba-where__text{
  margin: 0;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  max-width: 620px;
  font-size: 15px;
}

.eba-where__right{
  display: grid;
  gap: 26px;
  justify-items: start;
}

.eba-where__label{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.95);
}

.eba-where__value{
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

/* Mapa */
.eba-where__map{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.eba-where__map iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ✅ Responsive */
@media (max-width: 900px){
  .eba-where__top{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .eba-where__title{
    font-size: 44px;
  }
}

@media (max-width: 520px){
  .eba-where{
    padding-top: 55px;
  }
  .eba-where__wrap{
    padding-bottom: 45px;
  }
  .eba-where__title{
    font-size: 36px;
  }
  .eba-where__map iframe{
    height: 320px;
  }
}








/*estilos para el footer*/

.eba-foot2{
  background: #1f3550;
  color: #fff;
  padding: 46px 0;
}

.eba-foot2__wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: 34px;
  align-items: start;
}

.eba-foot2__title{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
}

.eba-foot2__text{
  margin: 0 0 18px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}

.eba-foot2__social{
  display: flex;
  gap: 14px;
  margin: 8px 0 26px;
}

.eba-foot2__icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 800;
  opacity: .95;
}

.eba-foot2__icon:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.eba-foot2__copy{
  margin: 0;
  font-size: 12px;
  opacity: .9;
}

.eba-foot2__miniTitle{
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 800;
  opacity: .95;
  margin: 0 0 10px;
}

.eba-foot2__info{
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}

.eba-foot2__label{
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  opacity: .95;
}

.eba-foot2__input{
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
}

.eba-foot2__btn{
  margin-top: 16px;
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  background: #1976d2;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  width: fit-content;
}

.eba-foot2__btn:hover{
  transform: translateY(-1px);
}

/* ✅ Responsive */
@media (max-width: 900px){
  .eba-foot2__wrap{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .eba-foot2__btn{
    width: 100%;
  }
}
 