﻿body.splash {
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: white;
}

    body.splash .splash-container {
        position: relative;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        body.splash .splash-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
           /* background-image: url('/img/1_INICIO.png');*/
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

    body.splash .video-fullscreen {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    body.splash .logo-centro {
        position: relative;
        z-index: 2;
        width: 380px;
        max-width: 70%;
        height: auto;
        display: none;
    }
.decoracion-superior {
    position: fixed;
    top: 0;
    right: 0;
    width: 180px; /* o usa 10vw si quieres que sea relativo */
    height: auto;
    z-index: 50; /* más alto que el video */
    pointer-events: none; /* opcional para que no interfiera con clics */
}

.decoracion-inferior {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 180px;
    height: auto;
    z-index: 50;
    pointer-events: none;
}
