/* Video de fondo */
#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}

/* Encabezado similar al index */
.header {
  background: rgba(0, 0, 0, 0);
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.menu .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 24px;
  text-decoration: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-icono {
  width: 30px;
  cursor: pointer;
}

/* Formulario */
.contacto-contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.formulario-container {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 50px;
  border-radius: 12px;
  color: white;
  max-width: 500px;
  width: 100%;
}

.formulario-container h2 {
  margin-bottom: 20px;
  text-align: center;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #ff4c4c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #e63636;
}

/* Popup de confirmación */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.popup-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.popup-content button {
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 8px;
}
