/* Banner de Consentimiento de Cookies - L4VISION */

#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e0e0e0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 10000;
  display: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

#consent-banner.show {
  display: block;
}

#consent-banner .consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

#consent-banner .consent-text {
  flex: 1;
  min-width: 250px;
  color: #333333;
  font-size: 14px;
  line-height: 1.5;
}

#consent-banner .consent-text a {
  color: #1976d2;
  text-decoration: underline;
}

#consent-banner .consent-text a:hover {
  color: #1565c0;
}

#consent-banner .consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#consent-banner .consent-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

#consent-banner .consent-btn-accept {
  background-color: #1976d2;
  color: #ffffff;
}

#consent-banner .consent-btn-accept:hover {
  background-color: #1565c0;
}

#consent-banner .consent-btn-reject {
  background-color: #f5f5f5;
  color: #333333;
  border: 1px solid #e0e0e0;
}

#consent-banner .consent-btn-reject:hover {
  background-color: #e0e0e0;
}

#consent-banner .consent-btn-settings {
  background-color: transparent;
  color: #666666;
  text-decoration: underline;
  padding: 10px 15px;
}

#consent-banner .consent-btn-settings:hover {
  color: #333333;
}

/* Estilos para móviles */
@media (max-width: 768px) {
  #consent-banner {
    padding: 15px;
  }

  #consent-banner .consent-content {
    flex-direction: column;
    align-items: stretch;
  }

  #consent-banner .consent-text {
    margin-bottom: 10px;
    font-size: 13px;
  }

  #consent-banner .consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  #consent-banner .consent-btn {
    width: 100%;
  }
}

/* Estilos para móviles pequeños (480px y menos) */
@media (max-width: 480px) {
  #consent-banner {
    padding: 12px;
  }

  #consent-banner .consent-text {
    font-size: 12px;
    line-height: 1.4;
    min-width: auto;
  }

  #consent-banner .consent-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Estilos para móviles muy pequeños (360px y menos) */
@media (max-width: 360px) {
  #consent-banner {
    padding: 10px;
  }

  #consent-banner .consent-text {
    font-size: 11px;
    margin-bottom: 8px;
  }

  #consent-banner .consent-btn {
    padding: 7px 14px;
    font-size: 12px;
  }
}

/* Overlay oscuro cuando el banner está visible (opcional) */
#consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}

#consent-overlay.show {
  display: block;
}

