﻿body{
    font-family: 'PT Sans';
}

.cabecera-ayuda{
    height: 152px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: white;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.12);
}

.logotipo img{
    width: 100%;
}


.superior{
    font-size: 18px;
    text-align: right;
}
.superior span{
    margin: 0 10px;
}


.inferior{
    text-align: end;
    margin-top: 10px;
}


nav{
    width: 70%;
    float: right;
}
nav a{
    color: black;
    text-decoration: none;
}
nav ul{
    width: 100%;
    list-style: none;
    padding: 0;
}
nav ul li{
    position: relative;
    width: 33.33%;
    float: left;
}
.menu{
    font-size: 14px;
    text-align: center;
    font-weight: lighter;
}
.menu:hover{
    color: #60bf16;
}


nav ul li:hover .menuSup{
    display: block;
}

.menuSup{
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 1000;
    border-bottom:4px solid #60bf16;
    background: white;
    width: 100%;
    max-width: 100%;
    display: none;

    box-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
.menuSup ul li{
    width: 100% !important;
}
.menuSec{
    position: relative;
    border-bottom:1px solid #bbb;
    width: 100%;
    text-align: left;
    padding: 9px 10px;
    cursor: pointer;
}
.menuSec:hover{
    color: #358924;
}


.menuSup ul li:hover .menuTer{
    display: block;
}


.menuTer{
    position: absolute;
    top: 0;
    right: -80%;
    border-bottom:4px solid #60bf16;
    background: white;
    width: 80%;
    max-width: 200%;
    display: none;
    box-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.menuTerTer{
    border-bottom:1px solid #bbb;
    text-align: left;
    padding: 9px 10px;
    cursor: pointer;
}
.menuTerTer:hover{
    color: #358924;
}



.efecto{
    background: #358924;
}


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

.titulo{
    text-align: center;
    text-transform: uppercase;
    font-size: 33px;
    margin-bottom: 40px;
}


.sinEnlace a{
    color: black;
    text-decoration: none;
}

.pro{
    text-align: center;
}
.pro img{
    width: 100%;
    height: 200px;

    object-fit:contain;
}
.pro div{
    background: #f3f3f3;
    padding: 12px 0;
}
.pro strong{
    width: 100%;
    color: black;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 17px;
    display: inline-block;
}
.pro span{
    font-size: 13px;
}


.titulazo{
    background: #358924;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}


.categorias{
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
}

.categorias span{
    background: #358924;
    color: white;
    padding: 4px 10px;
}


.carousel-control-next span, .carousel-control-prev span{
    background: #358924 !important;
    color: white;
    font-size: 32px;
    font-weight: bold;
    padding: 10px 10px;
}



footer{
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    font-size: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer a{
    color: black;
    text-decoration: none;
}
footer strong{
    width: 100%;
    text-transform: uppercase;
    font-size: 23px;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 12px;
}
.e{
    border-bottom: 1px dashed #ddd;
    padding: 8px 0;
}

.buscador{
    width: 50%;
    text-align: right !important;
    float:right;
    margin: 12px 0;
}
.buscador input{
    width: 50% !important;
}

.redes{
    font-size: 30px;
    font-weight: bold;
}
.redes a{
    color: black;
    text-decoration: none;
}
.redes b{
    font-size: 20px;
    margin: 0 5px 0 0;
}


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

}

@media screen and (max-width:1200px){
    .cabecera-ayuda{
        display: none;
    }
    .cabecera{
        position: relative;
    }
}

@media screen and (max-width:992px){
    .superior, .inferior{
        text-align: center;
    }
    nav{
        width: 100%;
        margin-top: 20px;
    }
    nav ul li{
        width: 50%;
    }
    
    .menuSup{
        width: 100%;
        left: 0%;
    }
    .menu{
        font-weight: bold;
    }

    .buscador{
        width: 100% !important;
    }
}

@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
}