/*TIPOGRAFÍAS*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans');
/*INICIALIZACIÓN DE ESTILOS*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background-color:#f6f6f6;
}

/*PERSONALIZACIÓN DE P.MANTENIMIENTO*/
.contenedor{
    position: fixed;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mantenimiento{
    width: 65.57vh;
    padding:3.50vh;
    border: 0.11vh solid #000;
    border-radius: 1.09vh;
    background-color:#fff;
}
.mantenimiento h1, .mantenimiento h2, .mantenimiento p{
    font-family:"noto sans", sans-serif;
}

.mantenimiento h1{
    font-size:5vh;
    text-align:center;
    padding:1.75vh;
}
.mantenimientoima{
    text-align:center;
    font-size:3.50vh;
    font-style:italic;
}
.mantenimiento p{
    font-size: 1.75vh;
    margin:1.75vh 0;
    line-height:2.62vh;
}
.whatsapp-btn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    background-color: #25D366;
    color: #fff;
    width: 6.56vh;
    height: 6.56vh;
    border-radius: 50%;
    text-align: center;
    font-size: 3.28vh;
    line-height: 6.56vh;
    box-shadow: 0 0.44vh 0.88vh rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}