#s-contactenos {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 100vh;
    background-image: url("/src/img/imgs/fondo-contacto.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2px 50px;
    margin-top: 90px;
}

#content-contacto {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#content-contacto h1{
    font-size: 70px;
    font-weight: bold;
    color: var(--azul);
    margin-bottom: 10px;
}

#content-contacto h2{
    font-size: 30px;
    font-weight: bold;
    color: var(--azul-claro);
    margin-bottom: 40px;
}

#content-btns-cont {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

#content-btns-cont a{
    width: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    background-color: #DADADA;
    border-radius: 15px;
    transition: ease all 0.6s;
    box-shadow: var(--sadow);
}

#content-btns-cont a:hover{
    background-color: var(--rosado);
    box-shadow: var(--sadow2);
}

#content-btns-cont a:hover p{
    color: #fff;
}

#content-btns-cont a:hover span{
    background-color: var(--azul);
}

#content-btns-cont a span{
    background-color: var(--rosado);
    border-radius: 15px 50% 50% 15px;
}

#content-btns-cont a span svg{
    width: 60px;
    fill: #fff;
}

#content-btns-cont a p{
    font-size: 25px;
    margin: 0px;
    font-weight: bold;
    color: var(--azul);
}

#content-contacto>a {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content-contacto>a img{
    width: 60%;
}

#content-contacto>img{
    display: none;
}


@media screen and (max-width: 1024px) {
    #s-contactenos {
        background-image: none;
        min-height: auto;
        padding: 20px;
    }

    #content-contacto>img{
        display: flex;
        width: 100%;
    }

    #content-contacto {
        width: 100%;
    }

    #content-btns-cont {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #content-contacto h1 {
        text-align: center;
        font-size: 35px;
    }

    #content-contacto h2 {
        font-size: 22px;
        text-align: center;
        margin-top: 30px;
    }

    #content-btns-cont a span svg {
        width: 40px;
    }

    #content-btns-cont a span {
        background-color: var(--rosado);
        border-radius: 10px 50% 50% 10px;
    }

    #content-btns-cont a {
        border-radius: 10px;
    }

    #content-btns-cont a p {
        font-size: 20px;
    }

    #content-contacto>a {
        margin-top: 40px;
    }

    #content-contacto>a img {
        width: 80%;
    }
}
