@import url(header.css);
.whatsapp{
  
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: movimiento-top 1s;
}

.whatsapp .texto{
    position: fixed;
    content: '';
    right: 75px;
    bottom: 25px;
    font-size: var(--parrafo);
    background: #f5f7f9;
    padding: 5px 10px;
    z-index: 9;
    transform: translateY(-20%);
    display: none;
    animation: opacity 1s;

}
.texto::before{
    position: absolute;
    content: '';
    border-left: 8px solid #f1f1f1;
    border-right: 8px solid transparent;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;

}
.texto a span{
    color: var(--color-texto);

}
.whatsapp .fab{
    position: fixed;
    bottom: 15px;
    right: 15px;
    font-size: 28px;
    color: #ffffff;
    background: #25D366;
    padding: 10px;
    border-radius: 50%;
    z-index: 9;
    border: none;
    outline: none;
    transition: .5s ease all;
    cursor: pointer;
}
.whatsapp .fab:hover{
    background: #4ceb86;

}
.whatsapp .fab:active{
    transform: rotate(360deg);
}
.contenedor-whatsapp{
    position: fixed;
    right: 0;
    bottom: 110px;
    background: #ffffff;
    z-index: 99;
    max-width: 320px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 15px #7474749c;
    display: none;
    transition: .5s ease all;

}
.contenedor-whatsapp.aparece{
    display: inline-block;
    transition: .5s ease all;

}
.informacion{
    padding: 10px 10px;
    background: #25D366;
    display: grid;
    grid-template-columns: 50px 1fr;
    place-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;


}
.informacion i{
    color: var(--color-primario);
    font-size: 30px;
}
.informacion .columna2 h3{
    font-size: 16px;
    color: #f5f5f5;
    margin-bottom: 5px;
    text-align: center;
}
.informacion .columna2 p{
    font-size: 12px;
    color: #f5f5f5 !important;
}
.contenedor-whatsapp .box{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 80px;
    background: #f5f7f9;
    width: 100%;
    margin: 10px auto 10px auto;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 10px;
    max-width: 260px;
    border-left: 5px solid #1fb857;
    transition: .5s ease all;
}
.box:hover{
    background: #dadada;

}
.box:nth-child(4){
    margin-bottom: 20px;
}
.contenedor-whatsapp .box i{
    color: #ffffff;
    background: #25D366;
    font-size: 24px;
    border-radius: 50%;
    padding: 5px;
    font-weight: 500;
}
.dr{
    display: flex;
    align-content: center;
    justify-content: space-between;
    gap: 10px;
    z-index: 4;
    cursor: pointer;
}
.dr h3{
    font-weight: bold;
    color: #747474;
    font-size: 12px;
    transform: translateY(20%);
}
.dr i{
    color: #ffffff;
    font-size: 24px;
    background: #25D366;
    border-radius: 50%;
    padding: 5px;
    font-weight: 500;

}
.calendario{
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 9;
    background: #367cb6;
    padding: 10px;
    border-radius: 50%;
    animation: movimiento-top 1s ease;
    transition: background .5s ease;
}
.calendario:hover{
    background: #234f74;

}

.calendario a{
    color: var(--color-primario);
    font-size: 24px;
}
@media(min-width:850px){
    .contenedor-whatsapp{
        right: 5px;

    }
    .whatsapp .fab:active{
        transform: rotate(-360deg);
        background: #747474;
    }
    .whatsapp .fab{
        padding: 10px;
        font-size: 36px;
     
    }
    .calendario{
        bottom: 80px;
        right: 15px;
    }
    .calendario a{
        font-size: 36px;
    }
    .whatsapp .texto{
        right: 100px;
        bottom: 30px;
        display: block;
    }
    .texto{
        display: block;
        bottom: 15px !important;

    }
    .texto::before{
        right: -15px;
    }
}