@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(-20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #0b1c2d, #123a5f);
  color: #ffffff;
  text-align: center;
}

/* CONTENEDOR PRINCIPAL */
.container {
  width: 90%;
  max-width: 800px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  animation: fadeIn 1.2s ease;
}

/* TITULOS */
h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #18c7c1;
}

h2 {
  font-size: 2em;
  margin: 20px 0 10px;
  color: #e6e6e6;
}

.subtitulo {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* BOTONES */
button {
  font-size: 1.1em;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #18c7c1;
  color: #0b1c2d;
  font-weight: bold;
  margin: 10px;
  transition: 0.3s;
}

button:hover {
  background: #14a8a3;
}

/* TEXTOS */
.descripcion {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.valores ul {
  list-style: none;
  padding: 0;
}

.valores li {
  margin: 10px 0;
  font-size: 1em;
  opacity: 0.9;
}

/* FORMULARIO */
.formulario {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.formulario label {
  font-weight: bold;
  margin-top: 10px;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 1em;
  outline: none;
}

.formulario button {
  align-self: center;
  background: #18c7c1;
  color: #0b1c2d;
}

.formulario button:hover {
  background: #14a8a3;
}

/* VOLVER */
.volver {
  margin-top: 30px;
}

/* VIDEO / IMAGEN */
.video-container img {
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: fadeIn 1.2s ease;
}

/* LOGOS */
.logo {
  width: 120px;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* LOGO EMPRESA */
.logo-empresa {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 200px;
  height: auto;
  z-index: 1000;
  border-radius: 0;      /* sin borde redondeado */
  background: none;     /* ❌ sin fondo */
  padding: 0;           /* ❌ sin relleno */
}



/* TEXTO VIGILANCIA */
.vig {
  color: #18c7c1;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: larger;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  h1 { font-size: 2em; }
  button { width: 100%; }
}
