@import url(https://fonts.googleapis.com/css?family=Raleway);
@import 'https://fonts.googleapis.com/css?family=Baloo+Tamma';
@import 'https://fonts.googleapis.com/css?family=Montserrat';

*{
    font-family: 'Raleway', sans-serif;
    /*margin: 0;*/
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: 0;
}

img{
    display: block;
    max-width: 100%;
}

.contenido{   
    padding-top: 65px;/*es el espacio entre el menú y el contenido para que no estorbe*/
    /*background: #c6c1c1;*/ /*fondo de la base principal*/
}

.wrapper{ /*clase llamada wrapper, permite delimitar el tamaño ancho tanto del menu, como del contenido o texto*/
    width: 100%;
    margin:auto;  
    overflow: hidden;
}

.contenedor{
    margin: auto;
    width: 90%;
}

/*--------------Estilos del Header--------------*/

header{
    height: 50px;
    background: orangered;
    color: white;
    display: flex;
    /*justify-content: flex-end;*/
    align-items: center;/*centra el boton menu*/
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.menu{
    float: right;
}

#btn-menu{
    display: none;
}

header label{
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.menu ul{
    background: orangered;
    display: flex;
    list-style: none;
    margin: 0; /*para corregir que el menú salga del header, improvisado*/

}

.menu ul ul{
    display: none;
}

.menu a{
    display: block;
    padding:  15px 20px;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px
}

.menu a:hover{
    background: darkorange;
}

/*.menu a span{
    display:none;
}*/

.icon-home, .icon-shop, .icon-shopping-bag, .icon-history, .icon-user, .icon-down-open, .icon-doc, .icon-file-pdf, .icon-chat, .icon-lock-filled{
    display: none;
}

.menu ul li:hover ul{
    display: block;
    position: absolute;
}

.logo{
    width: 60px;
    position: absolute;
    margin-top: -5px;
    
}

.logo2{
    display: none;
}

.icon-down-open-1{
    font-size: 11px;
    margin-left: 5px;
    /*padding-right: 0px;*/
}



@media(max-width:1024px){
    
    header label{
        display: block;
        float: right;
    }
    
    .menu{
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        transform: translateX(-100%);
        transition: all 0.3s;
    }
    
    .menu ul{
        display: block;
        background-color: orange/*#555;*/
    }
    
    .menu ul li:hover ul{
        display: none;
        position: static;
    }
    
    /*.menu a span{
        position: absolute;
        right: 5px;
    }*/
    
    /*.menu a span{
        display: inline;
        margin-right: 10px;
    }*/
    
    .icon-home, .icon-shop, .icon-shopping-bag, .icon-history, .icon-user, .icon-down-open, .icon-doc, .icon-file-pdf, .icon-chat, .icon-lock-filled{
        display: inline;
        margin-right: 10px;
}
    
    .icon-down-open{
        position: absolute;
        right: 5px;
        /*display: none;*/
        font-size: 20px;
    }
    
    .icon-down-open-1{
        display: none;
    }

    
    #btn-menu:checked ~  .menu {
        transform: translateX(0%);
    }
    
    .menu ul ul{
        background-color: #fcb22a;/*#333;*/
    }
    
    .menu ul ul a{
        padding:  15px 40px;
    }
    

    
}





/*-----------Info-----------*/

.info__columna{
    /*background: #eee;*/
    color: #a09f9f;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.info__titulo{
    text-align: center;
    color: lightslategray;
}

.info__titulo2{
    display: none;
    
}

.info__txt{
    text-align: justify;
    color: lightslategray;
}

.info__img{
    margin: 0 auto;
}



/*-----------Cotizar-----------*/
.cotizar{
    /*background: #fcdfab;*/
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    margin-top: 0px;
    border-bottom-style: solid;
    border-top-style: solid;
    border-width: 1px;
    border-color:lightgray;
}

.cotizar_titulo{
    color: lightslategrey;/*#c06800;*/
    text-align: center;
    font-size: 40px;
    line-height: 0.8;
    padding-top: 10px;    
}

.cotizar_txt{
    color: lightslategray;
    text-align: justify;
    font-size: 20px;
}

.cotizar_btn_caja{
    width: 250px;
    margin: 0 auto;
    /*background: black;*/
    /*height: 50px;*/
    list-style: none;
    padding-bottom: 10px;
}

.cotizar_btn{
    background-color: lightslategray;
    color: white;
    font-size: 27px;
    border: none;   
    padding: 5px;
    width: inherit;
    display: block;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
 }

.cotizar_btn:hover{
    background-color: orange;
    color: white;
    font-size: 25px;     
}

.cotizar_btn_caja2{
    display: none;
}

.cotizar_btn2{
    display: none;
}

.cotizar_img{
    margin: 0 auto;
}

.cotizar_img2{
    display: none;
}

.cotizar_txt2{
    display: none;
}


/*-----------Info 2-----------*/
.info2__columna{
    /*background-color: aliceblue;*/
    background: #f6fbfe;
    color: #a09f9f;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
    border-radius: 50px;
}

.info2__titulo{
    text-align: center;
    color: cornflowerblue;
    font-size: 50px;
}

.info2__txt{
    text-align: justify;
    color: cornflowerblue;
    font-size: 20px;
}

.info2__img{
    margin: 0 auto;
    border-style: solid;
    border-radius: 200px;
    border-width: 10px;
    border-color: lightsteelblue;
}

/*-----------Domiclio-----------*/
.domicilio{
    /*background-color: dodgerblue;*/
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    margin-top: 0px;
    padding-bottom: 5px;
    border-bottom-style: solid;
    border-top-style: solid;
    border-width: 1px;
    border-color:lightgray;
}

.domicilio_titulo{
    color: lightslategray;/*#c06800;*/
    text-align: center;
    font-size: 40px;
    line-height: 1;
    padding-top: 10px;    
}

.domicilio_img1{
    margin: 0 auto;
}

.domicilio_img2{
    display: none;
}

.domicilio_txt{
    color: lightslategray;
    text-align: justify;
    font-size: 20px;
}

.domicilio_txt2{
    display: none;
    color: darkorange;
}


/*-----------Info 3-----------*/
.info3__columna{
    /*background: #eee;*/
    color: darkorange;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
    
}

.info3__titulo{
    text-align: center;
    color: lightslategray;
}

.info3__txt{
    text-align: justify;
    color: lightslategray;
}

.info3__img{
    margin: 0 auto;
}

/*-----------Semana-----------*/
.semana{
    background: white;
    width: 100%;
    height: auto;
    border-bottom-style: solid;
    border-top-style: solid;
    border-width: 10px;
    border-color:lightsteelblue;
}

.semana_titulo{
    color:  steelblue;
    text-align: center;
    font-size: 40px;
    line-height: 1;
    padding-top: 10px; 
}

.semana_titulo2{
    color: cornflowerblue;
    text-align: center;
    font-size: 40px;
    line-height: 1;
    padding-top: 10px;    
}

.semana_img{
    margin: 0 auto;
}

.semana_img2{
        display: none;
    }

.semana_txt{
    color: lightslategray;
    text-align: center;
    font-size: 25px;
}

.semana_precio{
    color: lightslategray;
    text-align: center;
    font-size: 45px;
}


/*-----------Llama-----------*/
.llama{
    /*background-color: #439c4c;*/
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    margin-top: 0px;
    padding-bottom: 10px;
}

.llama_titulo{
    color: lightslategray;
    text-align: center;
    font-size: 50px;
    line-height: 1;
    padding-top: 10px; 
    font-family: 'Baloo Tamma', cursive;
}

.llama_lada{
    color: lightslategray;
    text-align: center;
    font-size: 60px;
    margin-top: 10px;
    font-family: 'Baloo Tamma', cursive;
}

.llama_numero{
    color: lightslategray;
    text-align: center;
    font-size: 50px;
    line-height: 1;
    margin-top: -50px;
    font-family: 'Baloo Tamma', cursive;      
}

.llama_numero2{
    display: none;
}

.llama_lada03{
    display: none;
}

.llama_numero3{
    display: none;
}

.llama_txt{
    color: lightslategray;
    text-align: center;
    font-size: 20px;
}

.llama_img2{
    display: none;
}



/*-----------Footer-----------*/
.footer{
    background: #eee;
    color: #333;
    padding: 10px;
    text-align: center;
}

.footer_borde01{
    display: none;
}

.footer_borde02{
    display: none;
}

.footer .social [class^="icon-"]{
    color: lightslategray;
    text-decoration: none;
    font-size: 28px;
    padding: 6px;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 40px;
    display: inline-block;
}

.footer .social .icon-facebook:hover{
        background-color: #3b5998;
        color: white;
    }
    
.footer .social .icon-twitter:hover{
        background-color: #1da1f2;
        color: white;
    }

.footer .copy:hover{
    font-weight: 700;
}

.footer_nav{
    display: none;
}
       


    
    










    
/*--------------Estilos Responsive -------------*/


@media(min-width:480px){
    
   /* .info, .info2, .info3 {
        display: flex;
        justify-content: space-between;        
    }
    
    .info__columna{
        width: 33%;
    }
    
    .info__titulo{
        font-size: 30px;
        margin: 5px 0;
    }*/
    
    .contenedor{
        width: 95%;
    }
    
    .info__titulo{
        font-size: 28px;
    }    
    
    .semana_titulo2{
        font-size: 35px;
        margin-top: -20px;
}
    
    .semana_img{
        border-radius: 5px;
    }
    
    .llama_titulo{
        font-size: 45px;
        /*letter-spacing: 3px;*/
    }
    
    .llama_lada, .llama_numero{
        display: none;
    }
    
    .llama_numero2{
        display: block;
        text-align: center;
        font-size: 35px;
        color: lightslategray;
        margin-top: 20px;
        font-family: 'Baloo Tamma', cursive;
    }
    
    .llama_txt{
        font-size: 20px;
    }
    
    .footer .social [class^="icon-"]{
        margin: 0 10px;
    }
    
    .copy{
        font-size: 20px;
        margin: 0;
        color: lightslategray;
    }
    
}



@media(min-width:768px){
    
    .contenedor{
        width: 90%;
    }
    
    .logo{
        display: none;
    }
    
    .logo2{
        display: block;
        width: 200px;
        position: absolute;

   
    }
    
    .logo3{
        display: none;
        width: 300px;
        margin: 4px;
        position:inherit;
    }
    
    .info, .info2, .info3 {
        display: flex;
        justify-content: space-between;        
    }
    
    .info{
        margin-bottom: 30px;
    }
    
    .info__columna{
        width: 33%;
        background: none;
    }
    
    .info__titulo{
        /*font-size: 30px;*/
        margin: 20px 0;        
        
    }
    
    .info2{
        margin-bottom: 30px;
    }
    
    .info2__columna{
        width: 49.9%;
    }
    
    .info2__titulo{
        font-size: 40px;
    }
    
    .info2__txt{
        font-size: 25px;
    }
    
    .info3{
        margin-bottom: 30px;
    }
    
    .info3__columna{
        width: 33%;
    }
    
    .cotizar{
        height: auto;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    
    .cotizar_titulo{
        font-size: 55px;
        margin-top: 10px;
    }
    
    .cotizar_txt{
        font-size: 25px;
    }
    
    .domicilio{
        margin-bottom: 30px;
    }
        
    .domicilio_titulo{
        font-size: 50px;
        margin-top: 10px;
    }
    
    .domicilio_txt{
        font-size: 25px;
    }
    
    .semana_borde1{
        height: 10px;
    }
    
    .semana_titulo{
        margin-top: 10px;
        font-size: 50px;
    }
    
    .semana_titulo2{
        font-size: 50px;
    }
    
    .semana_txt{
        font-size: 40px;
    }
    
    .semana_precio{
        font-size: 65px;
    }
    
    .llama_titulo{
        padding-top: 20px;
        font-size: 70px;
        margin-bottom: 10px;
    }
    
    .llama_numero2{
        font-size: 50px;
        margin-bottom: 0px;
    }

}



@media(min-width:1024px){
    
   /* .contenedor{
    margin: auto;
    width: 1100px;
    }*/
    
    .logo2{
        margin-top: 7.5px;
    }
    
    .info{
        margin-top: 30px;
    }
    
    .contenedor{
        width: 90%;
    }
    
    .info__columna{
    /*background: black;*/
    color: #a09f9f;
    padding: 5px;
    margin-bottom: 20px;
    margin-top: 10px;
}
    
    .info__titulo2{
        display: none;
    }
            
    .icon-menu{
        display: none;
       
    }  
    
    .cotizar{
        height: 550px;
    }
    
    .cotizar_img{
        display: none;
    }
    
    .cotizar_txt{
        display: none;
    }
    
    .cotizar_titulo{
        font-size: 65px;      
        margin-top: 10px;
    }
    
    .cotizar_img2{
        display: flex;
        width: 50%;
        float: left;
        border-radius: 5px;
    }
    
    .cotizar_txt2{
        display: flex;
        font-size: 23px; 
        padding-left: 50px;       
        color: lightslategrey;
        text-align: justify;
}
    
    .cotizar_btn_caja{
        display: none;
    }    
    
    .cotizar_btn_caja2{
        display: flex;
        width: 400px;
        float: right;        
        list-style: none;   
    }
    
    .cotizar_btn2{
        background-color: lightslategray;
        color: white;
        font-size: 27px;
        border: none;   
        padding: 5px;
        width: 250px;
        display: block;
        text-decoration: none;
        text-align: center;
        margin: 0 auto;
    }
    
    .cotizar_btn2:hover{
        background: orange;
        font-size: 25px;
    }
    
    .info2__columna{
        width: 49%;
    }
    
    .info2__titulo{
        font-size: 60px;
    }
    
    .info2__txt{
        font-size: 25px;
    }
    
    .info2__img{
        width: 70%;
        
    }
    
    .domicilio{
        height: 485px;
    }
    
    .domicilio_titulo{
        font-size: 65px;
        margin-top: 10px;
    }
    
    .domicilio_txt{
        display: none;
    }
    
    .domicilio_txt2{
        display: flex;
        font-size: 25px; 
        padding-left: 30px;       
        color: lightslategray;
        text-align: justify;
    }
    
    .domicilio_img1{
        display: none;
    }
    
    .domicilio_img2{
        display: flex;
        width: 480px;
        float: left;
        border-radius: 5px;
    }
    
    .semana{
        height: 450px;
    }
    
    .semana_img{
        display: none;
    }
    
    .semana_img2{
        display: flex;
        float: left;
        margin-top: 20px;
    }
    
    .semana_titulo{
        width: 450px;
        float: right;
        font-size: 50px;
        margin-top: 20px;
    }
    
    .semana_titulo2{
        width: 450px;
        float: right;
        margin-top: -30px;
        
    }
    
    .semana_txt{
        width: 450px;
        float: right;
        font-size: 30px;
        margin-top: -30px;
    }
    
    .semana_precio{
        width: 450px;
        float: right;
        font-size: 65px;
        margin-top: -10px;
    }
    
    .semana_borde2{
        margin-top: 440px;
        height: 10px;
    }
    
    .llama{
        height: 400px;
        margin-top: 30px;
    }
    
    .llama_titulo{
        font-family: 'Baloo Tamma', cursive;
        font-size: 70px;
        width: 500px;
        float: right;
        margin-top: 0px;
        margin-bottom: 40px;
    }
    
    .llama_numero2{
        display: none;
    }
    
    .llama_linea03{
        width: 500px;
        /*background: black;*/
        float: right;
        height: 200px;
        margin-top: -70px;
    }
    
    .llama_lada03{
        display: flex;
        float: left;
        font-family: 'Baloo Tamma', cursive;
        color: lightslategray;
        font-size: 120px;
        padding: 10px;
        padding-left: 35px;
        margin-top: 0px;
        height: 200px;
    }
    
    .llama_numero3{
        display: flex;
        font-family: 'Baloo Tamma', cursive;
        color: lightslategray;
        font-size: 65px;
        margin-top: 0;
        float: right;
        height: 200px;
        line-height: 1;
        padding-top: 35px;
    }
    
    .llama_img{
        display: none;
    }
    
    .llama_img2{
        display: flex;
        width: 41%;
        float: left;
        margin-top: 50px;
        border-radius: 10px;
    }    
    
    .llama_txt{
        width: 500px;
        float: right;        
        margin-top: -10px;
    }
    
    .footer{
        margin-bottom: 20px;
        border-bottom-style: solid;
        border-top-style: solid;
        border-width: 5px;
        border-color: lightslategray;
    }
    
    .footer_borde01{
        display: none;
        height: 5px;
        background: white;
        margin-top: -5px;
        margin-bottom: 20px;
    }
    
    .footer_borde02{
        display: none;
        height: 5px;
        background: white;
        margin-top: 25px;
       
    }
    
    .footer_nav{    
        display: block;
        width: 100%;
        /*background: black;*/
        height: auto;
        margin-bottom: 20px;
       
    }
    
    .footer_menu2{
        display: flex;
        list-style: none;
        padding: 0px;
        margin: 0 auto;
        width: 100%;
        justify-content: center;
        
}

    .footer_menu__link{
        display: inline-block;
        padding: 20px;
        /*background: orange;*/
        text-decoration: none;
        color: lightslategray;

}

    .footer_menu__link:hover{
        background-color: lightslategray;
        color: white;
}
    
    
}



@media(min-width:1200px){
    
    .contenedor{
    margin: auto;
    width: 1000px;
    }
    
    .info__titulo{
        /*color:blue;*/
    }
    
    .cotizar_titulo{
        margin-top: 20px;
    }
    
    .cotizar_btn_caja2{
        display: flex;
        width: 450px;
        float: right;        
        list-style: none;       
    }
    
    .domicilio{
        height: 520px;
    }
    
    .domicilio_img2{
        width: 500px;
        margin-right: 20px
    }
    
    .domicilio_txt2{
        font-size: 27px;
    }
    
    .semana_titulo{
        width: 550px;
    }
    
    .semana_titulo2{
        width: 550px;
    }
    
    .semana_txt{
        width: 550px;
    }
   
    .semana_precio{
        width: 550px;
    }
}