*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background-image:
    linear-gradient(rgba(0,0,0,.55),
                    rgba(0,0,0,.55)),
    url("baldes.jpg");

    background-size:cover;
    background-position:center;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

}

.overlay{

    text-align:center;
    color:white;

}

.logo{

    width:350px;
    margin-bottom:40px;

}

h1{

    font-size:60px;
    margin-bottom:15px;

}

h2{

    font-size:36px;
    color:#1FA5E2;
    margin-bottom:20px;

}

p{

    width:700px;
    max-width:90%;
    margin:auto;
    font-size:22px;
    line-height:1.6;
    margin-bottom:45px;

}

.botones{

    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

}

.boton{

    background:#0B2E5E;
    color:white;

    text-decoration:none;

    padding:18px 40px;

    border-radius:50px;

    font-size:20px;

    transition:.3s;

}

.boton:hover{

    background:#178ED1;
    transform:scale(1.05);

}

.rojo{

    background:#D63031;

}

.rojo:hover{

    background:#B71C1C;

}
.correo-flotante{

    position:fixed;
    right:30px;
    top:50%;
    transform:translateY(-50%);

    display:flex;
    flex-direction:column;
    gap:25px;

    z-index:999;
}

.correo-flotante a{

    width:70px;

    display:flex;
    flex-direction:column;
    align-items:center;

    color:white;
    text-decoration:none;
}

.correo-flotante i{

    width:55px;
    height:55px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;
    background:#0B2E5E;

    font-size:24px;

    box-shadow:0 5px 15px rgba(0,0,0,.35);

    transition:.3s;
}

.correo-flotante span{

    margin-top:8px;

    font-size:14px;

    font-weight:bold;

    color:white;

    text-shadow:1px 1px 3px black;
}

.correo-flotante a:hover i{

    background:#18A3DD;
    transform:scale(1.1);
}

.mensaje-construccion{

    position:fixed;

    bottom:25px;
    left:25px;

    width:360px;

    background:rgba(11,46,94,.90);

    color:white;

    padding:20px;

    border-radius:12px;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

    backdrop-filter:blur(6px);

    z-index:1000;

}

.construccion h3{

    margin:0;

}

.construccion p{

    margin:0;

}