.elementor-1213 .elementor-element.elementor-element-65f9b36c{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1213 .elementor-element.elementor-element-29b431c2 > .elementor-widget-container{margin:18px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-29b431c2 *//* === HERO BANNER FLEX === */
.hero-banner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: var(--espacio-seccion) 5%;
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  overflow: visible;
}

/* === BOX INFO === */
.box-info {
  background-color: rgba(242, 239, 223, 0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  animation: fadeIn 1s ease forwards;
  z-index: 2;
  text-align: left;
}

.box-info h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #260C03;
  margin-bottom: var(--espacio-titulo-subtitulo);
}

.box-info p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #0F3240;
  line-height: 1.6;
  margin-bottom: var(--espacio-subtitulo-contenido);
}

.box-info-list {
  list-style: none;
  margin: 1rem 0 var(--espacio-subtitulo-contenido) 0;
  padding-left: 0;
}

.box-info-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0F3240;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.box-info-list li::before {
  content: '✔';
  font-size: 1rem;
  color: #BFA26B;
}

.box-info-btn {
  display: inline-block;
  background-color: #735032;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.box-info-btn:hover {
  background-color: #F2EFDF;
}

/* === ANIMACIÓN === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .hero-banner {
    height: 70vh;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    overflow: visible;
  }

  .box-info {
    position: absolute;
    bottom: -55%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 95%;
    padding: 1.5rem;
    border-radius: 16px;
    background-color: rgba(242, 239, 223, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    text-align: left;
  }

  .box-info h1 {
    font-size: 1.4rem;
  }

  .box-info p,
  .box-info-list li {
    font-size: 0.95rem;
  }

  .box-info-btn {
    font-size: 0.9rem;
    width: 100%;
  }

  html, body {
    overflow-x: hidden;
  }
}/* End custom CSS */