.elementor-763 .elementor-element.elementor-element-d1ad6bd{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-763 .elementor-element.elementor-element-d1ad6bd{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-923b1db *//* Colores base */
:root {
  --ba-footer-bg: #050505;
  --ba-footer-gold: #f5c86b;
  --ba-footer-gold-soft: rgba(245, 200, 107, 0.25);
  --ba-footer-text: #f5f5f5;
  --ba-footer-muted: #b3b3b3;
}

/* Contenedor principal */
.ba-footer {
  position: relative;
  background: radial-gradient(circle at top center, rgba(245, 200, 107, 0.08), #050505 55%);
  padding: 40px 20px 40px;
  color: var(--ba-footer-text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}

/* Brillo dorado superior */
.ba-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 70%;
  height: 2px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--ba-footer-gold), transparent 60%);
  opacity: 0.7;
}


/* Layout interno */
.ba-footer-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  z-index: 1;
}

/* Columnas */
.ba-footer-col {
  flex: 1;
  min-width: 0;
}

/* Línea vertical entre columnas (solo desktop) */
.ba-footer-inner::before,
.ba-footer-inner::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(245, 200, 107, 0.25) 50%,
    rgba(255, 255, 255, 0.05) 80%,
    transparent
  );
}

.ba-footer-inner::before {
  left: 33.33%;
}

.ba-footer-inner::after {
  left: 66.66%;
}

/* Columna 1: marca */
.ba-footer-brand {
  padding-right: 40px;
}

.ba-footer-logo {
  max-width: 100px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.7));
}

.ba-footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ba-footer-muted);
  margin: 0 0 12px;
}

.ba-footer-tagline {
  font-size: 0.9rem;
  color: var(--ba-footer-gold);
  margin-top: 12px;
}

/* Columna 2: navegación */
.ba-footer-nav {
  text-align: center;
}

.ba-footer-title {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ba-footer-gold);
  margin: 0 0 28px;
}

.ba-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ba-footer-menu li {
  margin-bottom: 8px;
}

.ba-footer-menu a {
  color: var(--ba-footer-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.ba-footer-menu a:hover {
  color: var(--ba-footer-gold);
  transform: translateY(-1px);
}

/* Columna 3: contacto */
.ba-footer-contact {
  padding-left: 40px;
  text-align: right;
}

.ba-footer-contact a {
  color: var(--ba-footer-text);
  text-decoration: none;
}

.ba-footer-contact a:hover {
  color: var(--ba-footer-gold);
}

/* Botón CTA */
.ba-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid rgba(245, 200, 107, 0.7);
  background: radial-gradient(circle at top, rgba(245, 200, 107, 0.25), rgba(245, 200, 107, 0.12));
  color: #111;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: none;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(245, 200, 107, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ba-footer-cta:hover {
  transform: translateY(-1px);
  background: radial-gradient(circle at top, rgba(245, 200, 107, 0.35), rgba(245, 200, 107, 0.15));
  box-shadow: 0 0 25px rgba(245, 200, 107, 0.55);
}

/* Franja inferior */
.ba-footer-bottom {
  position: relative;
  margin-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ba-footer-muted);
  z-index: 1;
}

/* ------------------ Responsive ------------------ */

@media (max-width: 900px) {
  .ba-footer-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .ba-footer-inner::before,
  .ba-footer-inner::after {
    display: none; /* sin líneas verticales en mobile */
  }

  .ba-footer-brand,
  .ba-footer-contact {
    padding: 0;
    text-align: center;
  }

  .ba-footer-cta {
    width: 100%;
    justify-content: center;
  }

  .ba-footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .ba-footer {
    padding: 50px 18px 32px;
  }

  .ba-footer-bottom {
    font-size: 0.75rem;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-d1ad6bd */.elementor-763 .elementor-element.elementor-element-d1ad6bd{ display: block;}/* End custom CSS */