.elementor-301 .elementor-element.elementor-element-3a00581b{--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;--flex-wrap:nowrap;}.elementor-301 .elementor-element.elementor-element-22f20233{width:var( --container-widget-width, 20% );max-width:20%;--container-widget-width:20%;--container-widget-flex-grow:0;}.elementor-301 .elementor-element.elementor-element-22f20233.elementor-element{--align-self:center;--flex-grow:1;--flex-shrink:1;}.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-22f20233 */.main-footer {
  background-color: #001a41; /* Azul oscuro de la imagen */
  color: #ffffff;
  padding: 60px 0 30px 0;
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ESTO CONTROLA LOS ANCHOS */
.footer-column {
  flex: 1; /* Todas las columnas ocupan 1 parte */
  min-width: 200px;
}

.contact-column {
  flex: 1; /* LA ÚLTIMA COLUMNA ES UN 50% MÁS ANCHA */
}

/* Estilos de texto y enlaces */
.logo-text { font-weight: bold; font-size: 1.2rem; color: white; }
.column-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #e74c3c; /* Línea roja bajo títulos */
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: white; }

/* Estilos del Formulario */
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-form textarea, .footer-form input {
  padding: 12px;
  border-radius: 5px;
  border: none;
  width: 100%;
}
.footer-form button {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Estilos inferiores */
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 40px 0 20px 0;
}
.footer-bottom { text-align: center; font-size: 0.8rem; color: #888; }
.legal-links { margin-bottom: 15px; }
.legal-links a { color: #3498db; text-decoration: none; margin: 0 5px; }
/* Forzar que el pie de página no se rompa y la última columna sea más grande */
.footer-top {
    display: flex !important;
    flex-wrap: nowrap !important; /* Evita las dos líneas */
    align-items: flex-start !important;
    gap: 20px !important;
}

.footer-column:last-child {
    flex: 1.8 !important; /* Le da prioridad de ancho al formulario */
    min-width: 300px !important;
}

/* Ajuste para que el formulario no sea infinitamente largo hacia abajo */
.footer-form textarea {
    min-height: 80px !important;
    max-height: 120px !important;
}

/* Responsivo: Solo en móviles permitimos que se ponga en una columna */
@media (max-width: 768px) {
    .footer-top {
        flex-wrap: wrap !important;
    }
    .footer-column {
        flex: 1 0 100% !important;
    }
}/* End custom CSS */