* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    color: #123c5a;
    background: linear-gradient(135deg, #7cc1dd, #9face6);
    min-height: 100vh;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7cc1dd, #9face6);
    z-index: -1;
}


.barra {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
}

.barra-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.barra-logo span {
    font-size: 20px;
    font-weight: bold;
    color: #1a2a4a;
    letter-spacing: 1px;
}

.logo-icon {
    width: 38px;
    height: 38px;
}

.contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
    gap: 20px;
}


.subtitulo {
    font-size: 20px;
    color: #1a2a4a;
    animation: aparecer 2s ease;
    text-align: center;
}


.video {
    width: 700px;
    height: 400px;
    border-radius: 12px;
    border: 1px solid rgba(255, 77, 109, 0.4);
    animation: aparecer 2.5s ease;
}


.boton {
    display: inline-block;
    padding: 13px 35px;
    background: #112a3f;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: 0.3s;
    animation: aparecer 3s ease;
}

.boton:hover {
    background: #1a4b74;
    transform: scale(1.07);
}

/* Animacion */
@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}