.elementor-1557 .elementor-element.elementor-element-89c1536{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-85ec051 */.footer {
  width: 100%;
  background: #ccff00;
  border-radius: 80px 80px 0 0;
  margin-top: -70px;

  display: flex;
  flex-direction: column;      /* Columna para poner copyright debajo */
  justify-content: center;
  align-items: center;
  padding: 20px 0;            /* Más espacio interno */
  gap: 15px;                   /* Separación entre logos y copyright */
  height: auto;                /* Ajusta la altura automáticamente */
  box-sizing: border-box;      /* Incluye padding en el tamaño total */
}

.footer__socials {
  display: flex;
  gap: 20px;                  /* Espacio entre íconos */
}

.footer__socials img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.footer__socials img:hover {
  transform: scale(1.1);
}

.footer__copyright {
  font-size: 14px;
  color: #000;                 /* Color de texto general, visible sobre el verde */
  text-align: center;
}

.footer__copyright a {
  color: #333;                 /* Color inicial del enlace */
  text-decoration: none;       /* Quita subrayado */
  font-weight: 600;            /* Resalta un poco */
  transition: color 0.3s ease; /* Transición suave al hacer hover */
}

.footer__copyright a:hover {
  color: #fff;                 /* Cambia a blanco al pasar el mouse */
  text-decoration: underline;  /* Subrayado opcional al hover */
}/* End custom CSS */