/* Estilos del enlace */
.btn-menu {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e63232;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}
/* Fondo oscuro */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000;
}
/* Menú deslizante */
.menu-slide {
    overflow: hidden;
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 85%;
    background: white;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease-in-out;
    text-align: center;
    z-index: 100000;
    border-radius: 20px;
}

/* Clases activas */
.overlay.active {
    visibility: visible;
    opacity: 1;
}
.menu-slide.active {
    bottom: 0;
}

.subElementos{
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.contContenidoContactoMovil {
    width: 89%;
    padding: 21px;
}
.triCMovil1 {
    width: 17%;
    height: 19%;
    right: 0px;
    top: 0px;
    position: absolute;
    z-index: -1;
    background-color: #e63232;
    clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
}
.triCMovil2 {
    width: 77%;
    height: 50%;
    right: 0px;
    bottom: 0px;
    position: absolute;
    z-index: -1;
    background-color: #ccc6c6;
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}
.datosContactoMovil {
    width: 100%;
    text-align: left;
}
.iconRedesCM {
    display: flex;
    margin-top: 15px;
}
.contIconCM {
    width: 40px;
    height: 33px;
}
.contIconCM img{
    width: 100%;
    height: 100%;
}
.textoImputCM {
    margin-top: 11px;
    background-color: transparent;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(94, 93, 93);
    outline: none;
    padding: 5px 0;
    font-size: 16px;
    text-align: left;
}
.LlamadoCM {
    font-size: 27px;
    margin-bottom: 37px;
    font-weight: 800;
    color: #161616;
}
.datoInfoCM {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.contBtnSalidaCM {
    width: 43px;
    height: 43px;
    position: fixed;
    right: 0px;
}
.btnSalidaCM{
    border: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
    font-size: 40px;
    color: white;
}
@media (min-width:560px){
    .datosContactoMovil {
        width: 70% !important;
        text-align: left;
    }
    .contContenidoContactoMovil {
        width: 93% !important;
        display: flex !important;
        padding: 21px;
        justify-content: center;
    }
}