*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    height:100%;
}

body{
    background:#000c93;
    font-family:Arial, Helvetica, sans-serif;
    overflow:hidden;
}

.contenedor{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#000c93;
}

/* Logo principal */
.logo-principal{
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:500px;
    max-width:60%;
    z-index:20;
}

/* Logo Toni */
.logo-toni{
    position:absolute;
    top:20px;
    right:40px;
    width:150px;
    z-index:20;
}

/* Fondo estadio */
.fondo-estadio{
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:100%;
    height:auto;
    z-index:1;
}

/* Imagen principal */
.imagen-central{
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:900px;
    max-width:90%;
    z-index:10;
}

/* Tablet */
@media (max-width:991px){
    .logo-principal{width:320px;}
    .logo-toni{width:90px;right:20px;}
    .fondo-estadio{width:150%;}
    .imagen-central{width:700px;max-width:95%;}
}

/* Móvil */
@media (max-width:767px){
    body{overflow:auto;}
    .contenedor{height:100svh;}
    .logo-principal{
        width:220px;
        top:15px;
    }
    .logo-toni{
        width:65px;
        top:15px;
        right:15px;
    }
    .fondo-estadio{
        width:260%;
        bottom:120px;
    }
    .imagen-central{
        width:110%;
        bottom:0;
    }
}
