/* LOGOS */
.logo {
  max-height: 55px;
  max-width: 80%;
  object-fit: contain;
}
.container-footer{ 
    display: flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:4rem;
}
footer {
    background-image: url('../img/footer.jpg'); /* Ajusta según tu ruta */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: bold;
    /* margin-bottom: 15px; */
    font-size: 18px;
    text-align: center;
    padding: 15px;
  }
  .information_footer { 
    display: flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:6rem;
    padding: 10px;
  }
  .btn-warning {
      font-weight: 600;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .btn-warning:hover {
      background-color: #e6ac00;
      transform: scale(1.05);
    }
    /* Centrar texto en columnas */
    footer .col-md-4, footer .col-md-8 {
      text-align: center;
    }
    /* Responsive iframe dentro del modal */
    .modal-body iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }
/* BOTÓN ANIMADO */
.btn-animated {
  background-color: #FFD700;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 5px #FFD700;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  cursor: pointer;
}

.btn-animated:hover {
  box-shadow: 0 0 15px #FFC107, 0 0 25px #FFC107;
  transform: scale(1.05);
}

.flecha_preguntas {
  font-weight: bold;
  transition: transform 0.2s ease;
}

.btn-animated:hover .flecha_preguntas {
  transform: translateX(5px);
}
.contenedor_privacidad { 
  display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:center;
    padding:10px;
}
.btn-privacidad { 
background-color:  #003752 ;
color: #FFD700;
padding: 10px 20px;
border-radius: 8px;
font-weight: 600;

}
@media screen and (max-width: 991px) and (min-width: 751px) {

  .logo {
    max-height: 50px;
  }
  .information_footer { 
    display: flex;
    flex-direction:column;
    justify-content:center;
  
  }
  .contenedor_privacidad { 
    display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items:center;
      padding:10px;
}
  }

  @media screen and (max-width : 750px){
  .logo {
    max-height: 30px;
  }
  .information_footer { 
    display: flex;
    flex-direction:column;
    justify-content:center;
    /* border:2px solid red; */
  
  }
    .modal-body iframe {
          height: 300px;
  }
  .contenedor_privacidad { 
    display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items:center;
      padding:10px;
}
.texto-derechos { 
  font-size:12px;
}
}
