body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #152f6d;
  /* Fondo azul solicitado */
  overflow-x: hidden;
}

/* Barra superior */
.topbar {
  background: #11265c;
  /* Un tono más oscuro para contraste */
  color: white;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar h3 {
  margin: 0;
  font-size: 1.2rem;
}

/* Botón Menú Hamburguesa */
.menu-btn {
  font-size: 28px;
  cursor: pointer;
  margin-right: 15px;
  color: white;
  display: flex;
  align-items: center;
}

/* Eliminar estilos anteriores del botón */
.menu-btn div {
  display: none;
}

/* Fondo oscuro (Overlay) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}

/* Menú Lateral */
.login-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #3b73ba;
  color: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
}

.login-menu.open {
  left: 0;
}

.close-btn {
  text-align: right;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
}

.login-menu h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Formulario */
.login-menu form {
  width: 100%;
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 12px;
  background: #0f2027;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  transition: background 0.3s;
}

button:hover {
  background: #1c3b4a;
}

#mensaje {
  color: #ffcccc;
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

/* Contenido Principal y Video */
.content {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 60px);
  /* Altura total menos topbar aprox */
}

@media (max-width: 992px) {
  .content {
    flex-direction: column;
    padding: 15px;
    gap: 20px;
  }
}

/* Contenedor extra para las redes sociales, para controlar el móvil desde CSS */
.contact-container {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 30px;
  margin: 0;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background: black;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}