/* General */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-size: cover;
    background-color: #000e78;
    background-attachment: fixed;
}

* {
    box-sizing: border-box;
}

/* Contenedor General */
.contenedor {
    position: relative;
    top: -1em;
    width: 99%;
    margin: auto;
}

/* Video de Fondo */
.video-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Login Formulario */
.formulario {
    position: relative;
    padding: 3em;
    margin: 20px auto;
    max-width: 500px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.formulario input[type="text"], 
.formulario input[type="password"], 
.formulario input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #00BFFF;
}

.formulario .submit-btn {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background-color: #769766;
    color: white;
    cursor: pointer;
}

/* TÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­tulos */
.titulo, .titulologin {
    position: relative;
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: #fbffca;
    text-align: center;
    text-shadow: 2px 2px 10px #000;
    letter-spacing: 0.1em;
    z-index: 10;
}

/* Marco del TelÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©fono */
.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background-color: #000;
    border-radius: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-inside-phone {
    width: 95%;
    height: 90%;
    object-fit: cover;
    border-radius: 20px;
}

/* Bola con Candado */
.circle-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle {
    width: 150px;
    height: 150px;
    background: #ccc;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.hidden-video {
    display: none;
}

.hidden-video.visible {
    display: block;
}

/* Idiomas */
.language-selector {
    position: fixed;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 16px;
}

.language-selector span {
    margin-right: 10px;
    cursor: pointer;
    opacity: 0.7;
}

.language-selector span:hover {
    opacity: 1;
}

/* Footer */
.footer {
    top: 1em;
    position: relative;
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    border-radius: 20px 20px 0 0; /* Solo redondea las esquinas superiores */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* (Opcional) Agrega un efecto de sombra */
    z-index: 1;
}



.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    margin: 15px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fbffca;
}

.footer-section p, 
.footer-section ul {
    font-size: 1rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fbffca;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00BFFF;
}

.socials {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.socials li {
    margin: 0 10px;
}

.socials li a {
    color: #fbffca;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.socials li a:hover {
    color: #00BFFF;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}



.olvido {
    color: aliceblue; /* Cambia el color del texto a aliceblue */
    text-decoration: none; /* Elimina el subrayado del enlace */
    transition: color 0.3s ease; /* Agrega una transiciÃ³n suave al color */
}

.olvido:hover {
    color: #00bfff; /* Cambia el color al pasar el ratÃ³n, si lo deseas */
    text-decoration: underline; /* AÃ±ade un subrayado al pasar el ratÃ³n */
}
.icono.izquierda {
    margin: 14px -6px;
    right: 24em;
    position: absolute;
    color: wheat;
    font-size: 15px;
}

/* Estilo para el icono de usuario */
.fa-user {
    color: wheat; /* Cambia 'wheat' por el color que prefieras */
}

/* Estilo para el icono de candado (password) */
.fa-lock {
    color: wheat; /* Cambia 'wheat' por el color que prefieras */
}

/* Estilo para el icono de flecha en el botÃ³n de submit */
.submit-btn.fa-arrow-right {
    color: wheat; /* Cambia 'wheat' por el color que prefieras */
}










/* CONTENEDOR DE OLAS */
.wave-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1598%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.wave-svg {
  width: 100%;
  height: 100%;
}

/* Movimiento suave para cada ola */
.wave-path {
  fill-opacity: 0.5;
  animation: waveMotion 10s infinite ease-in-out;
  transform-origin: center;
}

/* Colores personalizados */
.wave-stop-1 { stop-color: #4DA8DA; }
.wave-stop-2 { stop-color: #6786B7; }
.wave-stop-3 { stop-color: #A0D7F3; }

.wave-stop-4 { stop-color: #C5E4EA; }
.wave-stop-5 { stop-color: #73C2FB; }
.wave-stop-6 { stop-color: #87CEEB; }

/* Movimiento leve vertical + horizontal + zoom horizontal */
@keyframes waveMotion {
  0% {
    transform: translateX(0) translateY(0) scaleX(1.05);
  }
  25% {
    transform: translateX(-10px) translateY(-4px) scaleX(1.5);
  }
  50% {
    transform: translateX(-20px) translateY(0px) scaleX(4.4); /* 440% */
  }
  75% {
    transform: translateX(-10px) translateY(4px) scaleX(1.5);
  }
  100% {
    transform: translateX(0) translateY(0) scaleX(1.05);
  }
}

/* Alternancia entre olas */
.wave-path:nth-of-type(odd) {
  animation-duration: 11s;
  animation-direction: alternate;
}
.wave-path:nth-of-type(even) {
  animation-duration: 13s;
  animation-direction: alternate-reverse;
}

