body {
    margin: 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background-color: #000;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease-in-out;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.5);
    /* Mejora legibilidad del contenido encima */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 17%), rgb(0 0 0 / 56%));
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
    animation: fade-in 1s ease-in-out;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.content h1 {
    font-size: 3.5em;
    margin-bottom: 25px;
    font-weight: 700;
}

.content p {
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Social Links */
.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #000;
    color: #fff0c2;
    border: 2px solid #fff0c2;
    border-radius: 50%;
    font-size: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.social-links a:hover {
    background-color: #fff0c2;
    color: #000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 240, 194, 0.7);
}

/* Footer styles */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    font-size: 0.9em;
    z-index: 2;
    text-align: center;
    color: #ccc;
}

/* Animaciones */
.animated-text {
    opacity: 0;
    transform: translateY(20px);
    animation-name: fade-in-up;
    animation-duration: 1.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}


.delay-1 {
    animation-delay: 0.6s;
}

.delay-2 {
    animation-delay: 1.2s;
}

.delay-3 {
    animation-delay: 1.8s;
}

.delay-4 {
    animation-delay: 2.4s;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}