/* Reseteo de márgenes y paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fuente Poppins */
body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    background-image: url('img1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Contenedor general */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
}

/* Contenido principal */
.landing-container {
    max-width: 1000px;
    width: 90%;
    text-align: center;
}

/* Logotipo */
.logo {
    width: 110px;
    margin-bottom: 20px;
}

/* Título */
h1 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Descripción */
.description {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.4;
    max-width: 740px;
    margin: 0 auto 20px;
}

/* Asegurar buena apariencia en móviles */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    .description {
        font-size: 1.1em;
    }
}

/* Animación de entrada */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease-out forwards;
}

/* Keyframes */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
}

/* Icono de Facebook */
.facebook-icon {
    color: white;
    font-size: 1.4em;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.facebook-icon:hover {
    color: #00275b;
}

/* Derechos de autor */
.copyright {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 80px;
}
