*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    background: #1e173f;
    position: fixed;
    z-index: 100;
    width: 100%;
}
body{
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(#5e17ea, #ededed, #b7f200);
}
p{
    -webkit-user-select: none;
    user-select: none;
}
ul{
    list-style: none;
}
nav, .contacto{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.logo > img{
    width: 50%;
}
.logo_hero_tlf{
    display: none;
}
.contacto > div{
    border: 2px solid black;
    border-radius: 10px;
    margin: 1%;
    width: 30%;
    box-shadow: #1e173f 5px 5px;
}
.custom-dropdown{
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    background: #e1359d;
    color: #fff;
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.1s;
    width: 200px;
    height: 40px;
}
.custom-dropdown:hover{
    background-color: #556;
    border-radius: 20px 20px 0 0;
}

.custom-dropdown ul{
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #e1359d;
    border-radius: 0px 0px 10px 10px;
    z-index: 1;
}
.custom-dropdown ul li{
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.8s;
}
.custom-dropdown ul li:hover{
    background-color: #b7f200;
}
.custom-dropdown:hover ul{
    display: block;
}
.botones-tlf{
    display: none;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa toda la altura del viewport */
    background: url('../imagen/hero_4.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.contenedor-elementos > a{
    margin: 2%;
}
.bi-whatsapp{
    font-size: 2rem;
    color: #25D366;
}
.bi-calendar-check{
    font-size: 2rem;
    color: #006bff;
}
.contenedor-servicios, .servicios{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}
.servicios{
    margin: 1%;
    height: 400px;
    width: 45%;
    background: #e1359d;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: #1e173f 5px 5px;
    transition: transform 0.3s ease;
}
.brinca{
    animation: bounce 0.8s ease;
}
@keyframes bounce{
    0% { transform: scale(1); }
    30% { transform: scale(1.05); }
    50% { transform: scale(0.9); }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.serv_desc{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
footer{
    text-align: center;
    background: #1e173f ;
    color: #fff;
}
@media(max-width: 800px){
    .servicios{
        width: 500px;
    }
}
@media(max-width: 600px){
    .servicios{
        width: 80%;
    }
    .logo_hero{
        display: none;
    }
    .logo_hero_tlf{
        display: inline-block;
    }
    .hero{
        background: url('../imagen/bg_3.webp') no-repeat center center/cover;
    }
}
@media(max-width: 500px){
    .contacto > div{
        width: 40%;
    }
}
@media(max-width: 400px){
    .servicios{
        height: 300px;
    }
    .serv_desc{
        font-size: 20px;
    }
}
@media(max-width: 350px){
    .contacto > div{
        width: 50%;
    }
}