﻿body{
    font-family: "Montserrat", sans-serif;
}


.cabecera-ayuda{
    height: 76px;
}

.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: black;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 5px solid #c49100;
}

.logotipo img{
    width: 100%;
}


.datos{
    font-size: 18px;
    text-align: center;
    color: white;
}


.carrito{
    text-align: end;
    color: white;
}


.efecto{
    border-bottom: 5px solid #c49100;
    padding: 0;
}


.contenido{
    padding-top: 50px;
    padding-bottom: 50px;
}

.titulo{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pre{
    border-bottom: 2px solid #c49100;
    background: #f7f7f7;
    padding: 20px;
    margin-bottom: 20px;
}
.dorada{
    border-bottom: 2px solid #c49100;
}
.pre strong{
    width: 100%;
    display: inline-block;
}
.pre b{
    width: 100%;
    text-align: center;
    font-size: 35px;
    display: inline-block;
}


.imagen img{
    width: 100%;
    margin-bottom: 30px;
}



.oficina{
    position: relative;
    background: url(../images/fondo-oficina.jpg) no-repeat center center;
    background-size: cover;
    color: white;
    padding-top: 220px;
    padding-bottom: 220px;
}
.oficina .container{
    position: relative;
    z-index: 2;
}
.fondo-negro{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
}

.oficina strong{
    font-size: 40px;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){

}

@media screen and (max-width:576px){
    
}


.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}
.pulse {
    animation-name: pulse
}