.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #002f5c; /* azul Higoma */
  color: white;
  text-align: center;
  padding: 1rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-banner p {
  margin: 0 0 10px;
  font-size: 15px;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-btn.accept {
  background-color: #f9b233; /* amarillo corporativo */
  color: #002f5c;
}

.cookie-btn.accept:hover {
  background-color: #e6a300;
}

.cookie-btn.reject {
  background-color: #ffffff;
  color: #002f5c;
  border: 2px solid #f9b233;
}

.cookie-btn.reject:hover {
  background-color: #f9b233;
  color: #002f5c;
}


/* 📌 Responsividad */
@media screen and (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
    }

    .cookie-btn {
        width: 80%;
    }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  width: 500px;
  max-width: 90%;
  border-radius: 10px;
  overflow: hidden;
}

.popup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Botón Ver más */
.popup-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F7A800;
  color: white;
  padding: 12px 30px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Botón cerrar */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  color: white;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  text-shadow: 1px 1px 4px black;
}

@media (max-width: 480px) {
  .popup-btn {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}
/* ✅ Ampliar tamaño solo en escritorio */
@media (min-width: 1024px) {
  .popup-content {
    width: 650px;
  }
}

/* ✅ Reducir el botón en móviles */
@media (max-width: 480px) {
  .popup-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .popup-content {
    width: 95%;
  }}