/* Asegurando que el H2 ocupe el 100% */
h2 {
  margin: 0;
}

/* Estilo general para las columnas */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-widgets-container {
  padding: 80px 40px 10px 40px !important;
}

/* Cada columna ocupa el 50% del ancho */
.col {
  width: 48%; /* Deja un pequeño espacio entre las columnas */
  box-sizing: border-box; /* Incluye el padding dentro del ancho total */
  padding-left: auto;

  .btn-dark {
    margin-top: 20px;
  }
}

/* Opcional: agrega márgenes, padding o estilos específicos */
.col p {
  margin: 5px 0;
}

.menu-ft {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
}

.footer-widgets {
  background-color: var(--c-blanco);
  border-radius: 50px 50px 0px 0px;
  margin-top: -50px;
  position: relative;
  z-index: 4;
}

h2.fadeIn {
  em {
    color: var(--c-primario);
  }
}

.inside-site-info {
  padding: 0px 40px !important;
}

.copiright-bar {
  display: flex;
  flex-direction: column;
 
}

.fila-1 {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 40px;
  flex: wrap;

  img {

    width: 150px; 
    height: auto !important;
    object-fit: contain;
    
  }

  img:last-child {
    width: 120px; 
    height: auto !important;
    object-fit: contain;
  }

}
.fila-2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid var(--c-borde);
  padding-top: 30px;
  gap: 10px;
  opacity: 0;
  filter: blur(10px);
  animation: fadeIn 0.5s linear forwards;
  animation-delay: 2s;

  /* p:first-of-type {
    font-family: var(--f-serif);
    font-size: 25px;
  }

  p:nth-of-type(2){
    opacity: 0.8;
    font-weight: 300;
  } */
  
  p:first-of-type {
    opacity: 0.8;
    font-weight: 300;
  }

  .logo-footer {
    max-width: 120px !important;
  }
}

@media screen and (max-width: 768px) {
  .footer-widgets-container {
    padding: 80px 30px 10px 30px !important;
    h2 {
      margin-bottom: 30px !important;
    }
  }

  .menu-ft {
      flex-direction: column;
      margin-top: 50px;
      text-align: center;
  }
  .fila-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 20px;

    p {
      margin-bottom: 0px !important;
    }
  }

  .col {
    width: 100%;
  } 
  
  .footer-container {
    flex-direction: column;
  }

  .inside-site-info {
    padding: 0px 0px !important;
  }
  .fila-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }

  body.mega-menu-primary button.menu-toggle {
      display: none;
  }
  nav#mobile-menu-control-wrapper {
      display: none;
  }

  #mega-menu-wrap-primary .mega-menu-toggle {
    background-color: transparent !important;
    margin-top: -50px !important;
  } 

 #mega-menu-wrap-primary {
  display: block !important;
 }

 #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {

    height: 2px !important;
    background-color: var(--c-primario) !important;
    
}

div#mega-toggle-block-0 {
    margin-top: -50px;
}

    #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
        background-color: transparent !important;
    }

    .inside-article {
      padding-top: 0px !important;
    }
}