﻿body{
    font-family: 'Lato', sans-serif;
}


.cabecera-ayuda{
    height: 110px;
}
.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: white;
    padding-top: 5px;
    padding-bottom: 5px;

    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.logotipo{
    text-align: center;
}
.logotipo img{
    width: 100%;
    display: inline-block;
}

nav a, nav a:hover{
    color: white;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 19%;
    float: left;
    margin: 0 0.5%;
}
.menu-r{
    display: none;
}
.menu, .menu-r{
    background: #f7f7f7;
    width: 100%;
    color: #072566;
    font-size: 18px;
    line-height: 23px;
    font-weight: lighter;
    text-align: center;
    padding: 5px 0 6px;
    cursor: pointer;
}
.menu:hover, .activo, .menu-r:hover{
    background: red;
    font-weight: bold;
    font-size: 17px;
    color: white;
}

.datos{
    text-align: center;
    font-size: 18px;
}
.datos img{
    width: 30px;
}




.leyenda{
    background: #00854f;
    background-color: #ce0000;
    background: #006039;
    color: white;
    font-weight: lighter;
    font-family: 'Roboto', sans-serif;
    font-size: 23px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
}
.leyenda strong{
    font-size: 24px;
    text-shadow: 2px 2px 2px black;
}
.leyenda img{
    border-radius: 20px;
}


.iconos span{
    font-size: 80px;
}
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 000,
    'GRAD' 0,
    'opsz' 8
}

.efecto{
    padding:0;
}


.quehacemos{
    background: white;
    padding-top: 20px;
    padding-bottom: 60px;
}



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


.marcas{
    text-align: center;
    margin: 30px 0;
}
.marcas img{
    height: 50px;
    margin: 0 40px;
}



.modelo{
    background: #072566;
    color: white;
    font-size: 42px;
    padding-top: 60px;
    padding-bottom: 60px;
}
.modelo p{
    font-size: 30px;
}

.imagen img{
    width: 100%;
}



.cuadro{
    background: #f7f7f7;
    color: #f87372;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    line-height: 32px;
    margin-bottom: 20px;
    padding: 20px;
}





.cuadro_aviso {
    position: relative;
    width: 100%;
    perspective: 1000px;
}
  
.cuadro_aviso:hover .carta {
    transform: rotateY(180deg);
}
  
.carta {
    transform-style: preserve-3d;
    transition: all 0.5s linear;
}
  
.cara {
    backface-visibility: hidden;
    background: #f7f7f7;
    width: 100%;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    padding: 20px 15px;
    border-radius:10px;
}
.cara img{
    width: 100%;

    border-radius: 20px;
}
.cara span{
    font-size: 50px;
    font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 80
}
  
.detras {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    background:black;
    min-height: 300px;
    text-align: left;
    font-size: 20px;
    line-height: 28px;
    color: white;
    padding: 10px;
}
.detras strong{
    color: #f87372;
    font-size: 19px;
}


.seccion{
    font-size: 20px;
    line-height: 30px;
}
.seccion strong{
    width: 100%;
    font-size: 23px;
    color: red;
    display: inline-block;
}


.images{
    text-align: center;
}
.images img{
    margin:0 12px 12px;
}


.form-group{
    margin-bottom: 12px;
}


.nosotros{
    background:url(../images/fondo-gris.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 30px;
}


footer{
    background: #00854f;
    background: black;
    font-size: 18px;
    line-height: 28px;
    color: white;
    font-weight: lighter;
    padding-top: 30px;
    padding-bottom: 50px;
}
footer strong{
    width: 100%;
    font-weight: normal;
    color: white;
    font-size: 23px;
    display: inline-block;
    margin-bottom: 12px;
}
footer a{
    color: white;
}


.leyenda p, .iconos span, .titulo, .cuadro, .imagenes img{
    opacity: 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){

}

@media screen and (max-width:768px){
    nav{
        margin: 20px 0 !important;
    }
    .logotipo img{
        width: 60%;
    }
    .imagen{
        margin-top: 30px;
    }
}

@media screen and (max-width:576px){
    .logotipo img{
        width: 80%;
    }
    .menu-r{
        display: block;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
}