@charset "utf-8";

/* ----------------
   reglas generales
   ---------------- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}

/* ----------
   encabezado
   ---------- */

nav{
    background: #0f1c30;
    height: 5em;
    width: 100%;
    position: fixed;
    box-shadow: 0 3px 8px #afb0b1; 
    z-index: 9001;
}

.enlace{
    position: absolute;
    margin: 10px;
    padding: 0.2em 0 0 .5em;
}

.logo {
    height: 3.5em;
    
}

nav ul{
    float: right;
    margin-right: 20px;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{
    color: white;
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    text-transform: uppercase;    
}

nav ul li a:hover{
    font-weight: 600;
    transition: .2s;
    color: #74f0ac;
}

.checkbtn{
    font-size: 30px;
    fill: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
    
}

#check{
    display: none;
}



/* index */ 

main{
    background-color: #ffffff;
    padding: 2.8em 0;
}

#presentacion{
    height: 15em;
    /*background-color: rgb(14, 219, 168);*/
    background-image: url(../imagenes/centro_ayuda.webp);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    margin-top: 3em;  
    margin-bottom: .5em;
    padding: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

#presentacion h1{
    text-align: center;
    max-width: 100%;    
    padding: 1em;
    font-size: 2.5em;
}


/* ----- interior de los cuadros del index -----*/

.cuadros h2{
    text-align: left;
    font-size: 1.7em;
    margin-block-end: .5em;
}

.cuadros p{
    text-align: left;
    font-size: 1em;
    padding: 0;
    margin-block-end: .5em;
}

.cuadros figure{
    margin: 1em;
    padding: 2em 0 0 0 ;
    
}

.cuadros figure img {
    object-fit: cover;
    width: 15em;

}

.cuadros a {
    color: rgb(0, 0, 0);
    border-radius: 1em;
    background-color: #74f0ac;
    padding: 1em;
    margin-top: 2em;
    font-weight: 600;
    text-transform: uppercase;
    display: block;    
}

/* ----- tips ----- */

#slider{
    width: 100%;
    overflow: hidden;
    background-color:#cccece46;
    box-shadow: 0 1em 1.5em #afb0b1;
    scale: 100%;
    border-radius: 1em;
    margin: auto;
    max-width: 89%;

}

#slider h2{
    display: block;
    padding: .5em;
    color: white;
    background-color: #253b61;
}

#slider h3{
    font-size: 4vw;
    padding: 2em;
    text-align: center;
}

#slider ul{
    display: flex;
    animation: cambio 40s infinite alternate linear;
    width: 400%;
}

#slider li{
    width: 100%;
}

#slider img{
    width: 100%;
    height: 100%;
}

@keyframes cambio{
    0%{margin-left: 0;}
    20%{margin-left: 0;}

    25%{margin-left: -100%;}
    45%{margin-left: -100%;}

    50%{margin-left: -200%;}
    70%{margin-left: -200%;}

    75%{margin-left: -300%;}
    100%{margin-left: -300%;}
}

#newsletter {
    font-size: 1em;
    padding: 1em 0;
    text-align: center;  
}


#newsletter input {
    text-align: center;
    width: 50%;
    margin: 0.5em 0;
    padding: 1em;
}

#newsletter figure{
    padding: 1em 0 0 0;
}

#newsletter img{
    width: 2em;  
    margin: 1em;  
}



.explorar {     
    cursor: pointer;
    width: 3em;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9000;

}

.explorar:hover{    
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    filter: saturate(250%);
}

#vent{
    background: #131f33;
    width: 70%;
    padding: 33px;
    min-height: 250px;
    border-radius: 22px 22px 0 22px;
    position: fixed;
    right: 5.2em;
    bottom: 4.8em;
    z-index: 9000;
    opacity: .98;
    display: none;
}

#vent p{
    color: white;
    font-size: 1.2em;
    text-align: left;
}

#cerrar {
    width: 2em;
    position: absolute;
    right: .7em;
    top: .7em;  
    cursor: pointer;
}

#cerrar:hover {
    filter:brightness(2); 
}


/* --- Footer ---*/

footer{
    text-align: left;
    padding: 1em;
    font-size: x-small;
    background-color: #0f1c30;
    color: white;
    width: auto;
    height: 14em;
}

.footer_flex{
    padding: 2.5em;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.footer_flex ul li a{
    color: white;
}

#footer img {
    height: 5em;
}

#intro_index{
font-size: 1em;
text-align: center;
padding: 2em;
}

#logo_acumar{
    width: 2em;
    padding: 0 .5em;
}

.texto_footer li{
    margin: .3em ;
}

/* ----------------------------------------
   reglas compartidas en diferentes paginas
   ---------------------------------------- */


.introduccion_pagina h2 {
    text-align: center;
    padding: 1em;
}
 
.introduccion_pagina p{
    text-align: center;
}

.texto_pagina{
    text-align: center;
    margin: 1em;
}

.texto_pagina h2{
    text-align: center;
    margin: 2em;
}

.texto_pagina p {
    margin: 1em;
    text-align: left;
}

#texto_intro{
    padding: 0;
}

.ruta{
    margin-left: 1em;
    margin-top: 1em;
    font-size: .9em;
}

.ruta a{
    color: #000000;
}



/* ----- Sección "Primeros testeos" -----*/
.seleccion_productos {
    text-align: center;   
    margin: 3em 1em;
}

.slider_productos ul li{
    margin: 0 5em;
}

.listado_productos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    flex-direction: row;
    text-align: left;
    border: solid 1px rgb(103, 103, 103, 0.824);

}

.listado_productos a, p {
    padding: 1em;
}

#selecciona_tipo{
    font-weight: 600;
    text-align: left;
    margin: 1em;
}

.cuadros_seleccion_productos a{
    border-right: #19273e;
    max-height: max-content;
    border-width: 1em;
}

.catalogo_productos {
    width: 10em;
    margin-bottom: 1em;
}   

.cuadros_seleccion_productos{
    border: solid rgb(135, 135, 135, 0.824) 1px;      
    border-radius: 1.5em;
    box-shadow: 0 1em 1.5em #afb0b1;
    text-align: center;
    padding: 10vw 6vw;
    margin: 1.5em;
    height: 100%;
}

.titulo_productos{
    background-color: #cdd0d3;
    font-weight: 600;
    border-bottom: solid 1px rgba(135, 135, 135, 0.824);
}

.modelos_equipos{
    background-color: #e2e5e8;
}

.equipo{
    font-weight: 600;
}

.descargas {
    width: 1em;
    margin: 0 0.5em;
}


/* ----- Freezer y Heladera ----- */

.slider_productos{
    width: 100%;
    overflow: hidden;
}

#slider_freezer ul{
    display: flex;
    animation: cambio 20s infinite alternate linear;
    width: 400%;
}

#slider_freezer li{
    width: 100%;
}

#slider_freezer img{
    width: 100%;
    scale: 70%;
}

.numeracion{
    background-color: #74f0ac;
    padding: 0.2em 0.4em;
    margin-right: .5em;
    border-radius: 1em;
}

.listado_soluciones p{
    margin: 0 2em;
    justify-content: baseline;
}

.listado_soluciones h3 {
    font-size: x-large;
    margin: 2em 1em;
}

.listado_soluciones h4 {
    margin: 1em;
}

.alternativa_servicio {
    text-align: center;
}

/* -----  Sección "Taller más cercano" ----- */

#busqueda_mapa {
    border: solid rgb(228, 228, 228) 1px;      
    border-radius: 1.5em;
    box-shadow: 0 1em 1.5em #afb0b1;
    text-align: center;
    margin: 2.5em 3em;
    padding: 1em;
    height: 100%;
}

.taller{
display: none;
}

#busqueda_mapa h3{
    margin: 0.5em;
    font-size: xx-large;
}

#busqueda_mapa p {
    font-size: 1em;
    text-align: left;
}

.desplegable_productos{
    padding: 0 3em;
    margin: auto;
}

#mapa_google {
    border-radius: 1em;
}

.general_talleres {
    margin: 1em;
    text-align: center;
}

.texto_info_soporte p{
    text-align: start;
    margin-right: 1em;
    margin-top: 2em;
}

.taller {
    margin: 1.5em 0;
}


.local {
    border-radius: 1em;
    background-color:#00064F; 
    color:#FFF;
    font-weight: 700;
}

.dirección {
    font-weight: 700;
}

.telefono {
    font-weight: 700;
    color: #00064F;
}

#listado_talleres{
    margin: 2em 3em;
}


/* ----- Sección "Asesoramiento Técnico" ----- */

#sin_garantia, #en_garantia{
    display: none;
}

#sin_garantia {
    color: red;
}

#en_garantia{
    color: green;
}

.listado_tecnicos{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.listado_tecnicos a{
    color: #000000;
    padding: .4em;
}

.listado_tecnicos ul{
    padding: 1em 0;
}

.listado_tecnicos ul li{
    margin-bottom: .5em;
}


.btn-reservar_turno{
background-color: #74f0ac;
border-radius: 0.5em;
padding: .2em;
}

.seleccion_turno h3{
margin: 1em;
}

/* ----- Sección "Garantía extendida" -----*/

.garantia_extendida {
    margin: 2em;
}

.garantia_extendida h3{
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 2em;
}


#verifGarantia{
    display: none;
}

#titulo_garantia{
    display: flex;
    justify-content: center;
    margin: 2em 0;
}

#titulo_garantia img{
    height: 3em;
    margin: 0 1em;
}

#video_garantia{
display: flex;
flex-direction: column;
align-items: center;
}

#video_garantia iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 2em;
}

#protege_garantia{
    margin: 0;
}

.instrucciones_numero_serie {
    border: solid rgb(228, 228, 228) 1px;      
    border-radius: 1.5em;
    box-shadow: 0 1em 1.5em #afb0b1;
    padding: 2em 1.5em;
    margin: 2em;
    height: 100%;
}


.instrucciones_numero_serie h2{
    text-align: left;
    padding: 0 0 1em 0;
}

.instrucciones_numeracion p {
    margin-top: .8em ;
    padding: 0.3em 0;
}

#form_garantia_0810{
display: flex;
flex-direction: c;
background-color: #d7d8da;
font-size: 1em;
text-align: left;
margin: 2em;
padding: 1.5em 1.5em 1.5em 0;
border-radius: 1em;
align-items: center;

}

#celu{
    height: 4em;
    margin: 1em;
}

/* ----- Quienes somos -----*/

  #nombre_empresa h3{
    font-size: 2em;
    padding: 1em;
    font-weight: 100;
    text-align: center;
}

#siam{
    font-weight: 600;
}

#referencias_clientes{
    display: flex;
    flex-direction:column;
    align-items: center;
}

#referencias_clientes img{
    width: 80vw;
    padding: 1em 0;
}  

.texto_pagina video{
    width: 100%;
    height: 100%;
    box-shadow: 0 8px 8px #afb0b1; 
    scale: 91%;

}

.referencia_clientes{
    border: solid 1px rgb(161, 161, 161);
    border-radius: 1em;
    padding: 1em;
    margin: 3em 6em;
    width: 25em;
    height: 13em;
}

.refe_flex{
    display: flex;
    position: relative;
}

.refe_nombre{
    display: flex;
    flex-direction: column;
    padding-left: .6em;
    padding-top: 1em;
}

.refe_nombre h4{
    color: #000000;
}

.refe_fecha{
    padding: 0;
    margin-top: .2em;
    font-size: .7em;
}

.refe_cara{
    margin: .5em;
}

#logo_google{
    position: absolute;
    right: .1em;
    top: .5em;
    width: 2.5em;
}

.refe_texto{
font-size: .8em;
font-weight: 100;
color: rgb(73, 73, 73);
}

.refe_estrella{
    margin-left: .8em;
}

.refe_estrella img{
   margin-top: .5em;
    width: 1em;
}




/* ----- Reservá tu turno ----w- */ 

.datos_prestador {
    text-align: center;
    border: solid rgb(228, 228, 228) 1px;      
    border-radius: 1.5em;
    box-shadow: 0 1em 1.5em #afb0b1;
    padding: 2em 3em;
    margin: 3em 15em;
    height: 100%;
    background-color: #002f5ce6;
    color: white;
    font-weight: 600;
}

.modalidad_servicio h3{
    margin: 1em;
}


.turno_presencial, .turno_virtual {
    padding: 2em;
    display: flex;
    flex-direction: column;
}

.turno_presencial input, .turno_virtual input{
    padding: .5em;
    margin: 1em 0;
}

#garantiaCheck{
    margin-top: 1em;
}

#garantiaCheck span{
    margin: 0 .7em 0 0;
}

.confirmacionCorreo{
    margin-top: 1em;
    padding: 0;
}

.seleccion_turno{
    margin: 1em;
}

.seleccion_turno form{
    text-align: center;
    margin-top: 2em;
}

.seleccion_turno p{
    text-align: left;
}

#modalidadTiempo{
    margin-top: 2em;
}


.turno_presencial, .turno_virtual{
    display: none;
}



#asesoramientoVirtual{
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    justify-items: center;
    align-items: center;  
}

#asesoramientoVirtual img{
    width: 100%;
    height: 100%;
}

.form-validador{
margin: 0 1em;
}

.contacto{
    display: flex;
    flex-direction:column;
    margin: 2em;
}

.contacto input{
    margin: .5em;
    padding: .5em;
}

.contacto label{
    padding: .5em;
}

.btn-enviar{
    width: 7em;
    padding: .6em;
    justify-items: center;
    font-weight: 600;
    background-color: #74f0ac;
    border-radius: 0.5em;
    color: #000000;    
}

.btn-restablecer{
    padding: .2em;
    justify-items: center;
    font-weight: 600;
    background-color: #74f0ac;
    border-radius: 0.5em;
    color: #000000;    
    display: block;
}

.btn-verificador{
    width: 9em;
    padding: .6em;
    justify-items: center;
    font-weight: 600;
    background-color: #74f0ac;
    border-radius: 0.6em;
    color: #000000;
    display: block;
    margin-top: .5em;
}

#numeroSerie{
    margin: 2em .4em .6em 0;
    padding: .6em;
    width: 15em;
}

.validar_garantia input{
 width: 15em;
 margin: .2em 0;
}

#validador{
    margin-top: 1em;
    font-size: .8em;
    font-style: italic;
}

/* ---------------------------------
   media queries (modif. apariencia)
   --------------------------------- */

/* Dispositivos móviles (hasta  768px) */
   @media (max-width: 48em) {
    .checkbtn{
        display: block;
    }
    nav ul{
        top: 100vh;
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #19273e;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 13px;
    }
    nav ul li a:hover{
        display: block;
        font-weight: 600;
    }
    #check:checked ~ ul{
        top: 5em;
    }
    #mapa_google{
        height: 50vw;
    }
   
    .datos_prestador {
        margin: 3em;
        padding: 2em;
        background-color: #002f5ce6;
        color: white;
    }

    .cuadros {
        border: solid rgb(228, 228, 228) 1px;      
        border-radius: 1.5em;
        box-shadow: 0 1em 1.5em #afb0b1;
        text-align: center;
        padding: 10vw 6vw;
        margin: 2.5em;
        height: 100%;
        background-color:#cccece46;
    }
        
    
    #slider_refe{
        width: 100%;
        overflow: hidden;
        scale: 100%;
        margin: auto;
    
    }
    
    #slider_refe ul{
        display: flex;
        animation: cambio 40s infinite alternate linear;
        width: 400%;
    }
    
    #slider_refe li{
        width: 100%;
        display: flex;
        justify-content: center;
        
    }
 
    .referencia_clientes{
        border: solid 1px rgb(161, 161, 161);
        border-radius: 1em;
        padding: 1em;
        margin: 3em 1em;
        width: 20em;
        height: 13em;
    }

   }


/* hasta los 960px */
@media (min-width: 48em) and (max-width: 60em){
    .checkbtn{
        display: block;
    }
    nav ul{
        top: 100vh;
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #19273e;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 13px;
    }
    nav ul li a:hover{
        display: block;
        font-weight: 600;
    }
    #check:checked ~ ul{
        top: 5em;
    }

    #presentacion{
        height: 18em; 
        margin: 3em 0 0;      
    }
    #presentacion h1 {
        font-size: 4em;
    }

    #intro_index{
        margin: 2em ;
    }

    #slider{
        margin: auto;
        max-width: 78%;
    }

    #newsletter {
        font-size: 1.2em;
    }

    #newsletter input{
        font-size: 0.6em ;
    }

    .cuadros {
        border: solid rgb(228, 228, 228) 1px;      
        border-radius: 1.5em;
        box-shadow: 0 1em 1.5em #afb0b1;
        text-align: center;
        padding: 8vw 6vw;
        margin: 6em;
        height: 100%;
        background-color:#cccece46;
    }

    .cuadros p{
        text-align: left;
        font-size: 2vw;
        padding: 0;
        margin-block-end: .5em;
    }
    
    .cuadros h2{
        border-radius: 0.5em;
        font-size: 2.3em;
        font-weight: 900;
    }


    .texto_pagina, .garantia_extendida, .form_garantia{
        padding: 0 5em;
    }
        
    .seleccion_productos {
        text-align: center;   
        margin: 3em 5em;
    }

    .descargas {
        max-width: 1em;
        max-height: 1em;
        margin: 0 0.5em;
    }

    .equipo{
        font-size: x-large;
        font-weight: 600;
    }

    .cuadros_seleccion_productos{
        padding: 5vw 6vw;
    }

    .cuadros_seleccion_productos img{
        width: 17em;
    }

    .slider_productos{
        width: 50%;
        overflow: hidden;
        margin: auto;
    }

    .listado_soluciones{
        margin: 0em 6em;
    }

    .datos_prestador {
        margin: 3em 14em;
    }

    .seleccion_turno{
        margin: 6em;
    }

    .instrucciones_numero_serie {
        margin: 2.5em 10em;
    }

    #numeroSerie{
        width: 20em;
    }

    .turno_virtual {
        margin: 0 6em;
    }
    
    .turno_presencial{
        margin: 0 6em;
    }

    .desplegable_productos{
        margin: 0 5em;
    }


    #referencias_clientes img{
        width: 45vw;
    }

    .texto_pagina video{
        width: 60vw;
    }

    #slider_refe{
        width: 100%;
        overflow: hidden;
        scale: 100%;
        margin: auto;
    
    }
    
    #slider_refe ul{
        display: flex;
        animation: cambio 40s infinite alternate linear;
        width: 400%;
    }
    
    #slider_refe li{
        width: 100%;
        display: flex;
        justify-content: center;
        
    }

    #busqueda_mapa {
        margin: 2.5em 6em;
    }
    
    #listado_talleres{
        margin: 2em 6em;
    }

}

/* cambios a partir de los 960px*/
@media(min-width: 60em) {
    
    nav ul li a{
        font-size: 1.1vw;
    }

    .secciones {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3em;
        margin: 1em;
        scale: 100%;
    }    

    #intro_index{
        margin: 2em;
    }

    #presentacion{
        height: 16em;    
    }
    
    #presentacion h1 {
        font-size: 5em;
    }

    #newsletter {
        font-size: 1.2em;
        padding: 0;
    }
    #newsletter img{
        width: 2em;
    }
   
    #slider {
        max-width: 60%;
    }

    #newsletter figure {
        padding: 0;
    }
  
    .cuadros {
        border: solid rgb(228, 228, 228) 1px;      
        border-radius: 1.5em;
        box-shadow: 0 1em 1.5em #afb0b1;
        text-align: center;
        margin: 2em 0.5em;
        height: 100%;
        padding: 1em; 
        margin-inline: auto;
        background-color:#cccece46;
        position: relative;
    }

    .cuadros h2{
        background-color: #bec5c082;
        border-radius: 0.5em;
        font-size: 2.3em;
        font-weight: 900;
        text-align: center;
    }

    .cuadros p{
        font-size: 1.3em;
        padding: 0.5em;
    }
    .cuadros figure img {
        width: 23em;  
        max-height: 100%;      
    }   
  
    .cuadros a{
        position: absolute;
        bottom: 2em;
        right: 3em;
        left: 3em
    }

    .cuadros:hover {
        background-color: hsl(209 100% 35% / 0.90);
        box-shadow: 0 .25em .25em hsl(0 0% 0% / 0.25);
        color: hsl(0 0% 90%);
        transition: .5s;
    }

    
    .secciones{
        scale: 90%;
    }   

    /* desde aca */

    .texto_pagina, .garantia_extendida, .form_garantia{
        padding: 0 8em;
    }
        

    .descargas {
        max-width: 1em;
        max-height: 1em;
        margin: 0 0.5em;
    }

    .equipo{
        font-size: x-large;
        font-weight: 600;
    }

    #selecciona_tipo{
        text-align: center;
        font-size: x-large;
    }

    .seleccion_productos ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .seleccion_productos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cuadros_seleccion_productos{
        padding: 5vw 6vw;
    }

    .cuadros_seleccion_productos img{
        width: 17em;
    }

    .listado_tecnicos ul{
        display: block;
    }

    .slider_productos{
        width: 50%;
        overflow: hidden;
        margin: auto;
    }

    .listado_soluciones{
        margin: 0em 6em;
    }

    .datos_prestador {
        margin: 3em 14em;
    }

    .seleccion_turno{
        margin: 3em 8em;
    }

    .instrucciones_numero_serie {
        margin: 2.5em 18em;
        padding: 2em;
    }

    #numeroSerie{
        width: 20em;
    }

    .turno_virtual {
        margin: 0 12em;
    }
    
    .turno_presencial{
        margin: 0 12em;
    }

    .desplegable_productos{
        margin: 0 8em;
    }

    #referencias_clientes img{
        width: 30vw;
    }

    .texto_pagina video{
        width: 50vw;
    } 

    #slider_refe{
        width: 100%;
        overflow: hidden;
        scale: 100%;
        margin: auto;
    
    }
    
    #slider_refe ul{
        display: flex;
        animation: cambio 40s infinite alternate linear;
        width: 400%;
    }
    
    #slider_refe li{
        width: 100%;
        display: flex;
        justify-content: center;
        
    }

    #busqueda_mapa {
        margin: 2.5em 8em;
    }
    
    #listado_talleres{
        margin: 2em 13em;
    }

  }