@charset "utf-8";
*{ box-sizing:border-box; font-family:Arial, Helvetica, sans-serif; text-decoration:none;}

/*Paralax ppal*/
#fondo-paralax{
  background-image:url('images/fondo.jpg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
}

/*Burbuja menú y logo*/
nav{
    position: relative;
    height: 150px;
}
#burbuja{
    display: inline-block;
    position: fixed;
    left: 40px;
    top: 30px;
    width: 90px;
    transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    z-index: 5;
}
#burbuja:hover{
    width: 100px;
    left: 35px;
    top: 25px;
}
#burbuja:visited{
    left: 40px;
    top: 30px;
    width: 90px;
}

#logo{
    display: block;
    position: relative;
    top: 50px;
    height: 70px;
    left:150px;
}

/*Contenido home*/
#contenedor{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 150px;
    margin-top:50px;
}
#caja-mapa{
    margin-right: 30px;
    margin-bottom: 50px;
    width: 460px;
    height: 420px;
}
#mapa{
    position: relative;
    width: 460px;
    height: 350px;
    margin-top: 15px;
    margin-bottom: 20px;
    border: 4px solid #1f120d;
    box-shadow:0px 5px 4px #000000;
	-webkit-box-shadow:0px 5px 4px #000000;
	-moz-box-shadow:0px 5px 4px #000000;
	filter:progrid:DXImageTransform.Microsoft.dropShadow(color=#000000, offX=0, offY=5, positive=true);
}

#donde_estamos{
    font-size: 20px;
    font-weight: bold;
    color: #1f120d;
}

#calle{
    font-size: 15px;
    color: #1f120d;
}

td{
    font-size: 14px;
}

.tds-horarios{
    padding-left: 30px; 
}

#tabla-horarios{
    height: 390px;
    width: 350px;
    margin-bottom: 15px;
    margin-right: 30px;
    background-color: #abca61;
    border-radius: 10px;
    box-shadow: 2px 2px 8px #242424; 
	-webkit-box-shadow:2px 2px 8px #242424;
	-moz-box-shadow:2px 2px 8px #242424; 
	filter:progrid:DXImageTransform.Microsoft.dropShadow(color=#242424, offX=2, offY=2, positive=true);
}

#tabla-contacto{
    width: 320px;
    height: 355px;
    margin-bottom: 30px;
    margin-top:35px;
    background-color: #abca61;
    border-radius: 10px; 
    box-shadow: 3px 3px 6px #727272; 
	-webkit-box-shadow:3px 3px 6px #727272;
	-moz-box-shadow:3px 3px 6px #727272; 
	filter:progrid:DXImageTransform.Microsoft.dropShadow(color=#727272, offX=3, offY=3, positive=true);
}

/*SECCIÓN SERVICIOS*/

.servicios{
    width: 100%;
    min-height: 400px;
    position: relative;
    padding-right: 150px;
    padding-left: 150px;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
.servicios-toggle{
    width: 100%;
    min-height: 0px;
    max-height: 0px;
    overflow: hidden!important;
    position: relative;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-transition: min-height 500ms ease-out;
    -moz-transition: min-height 500ms ease-out;
    -o-transition: min-height 500ms ease-out;
    transition: min-height 500ms ease-out;
}
.servicios-toggle.desplegado{
    width: 100%;
    min-height: 500px;
    max-height: inherit;
    position: relative;
    padding-right: 150px;
    padding-left: 150px;
    padding: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
    align-items: center;
    -webkit-transition: min-height 500ms ease-out;
    -moz-transition: min-height 500ms ease-out;
    -o-transition: min-height 500ms ease-out;
    transition: min-height 500ms ease-out;
}

.fotos-muestra{
    width: 200px;
    height: 300px;
    margin-bottom: 10px;
}

.fotos-muestra-horizontal{
    width: 300px;
    height: 200px;
    margin-bottom: 10px;
}

.contenedor-fotos{
    margin: 40px;
    width: 200px;
}

.textos{
    text-align: center;
}

h1{
    font-size: 33px;
    line-height: 40px;
}

h3{
    font-size: 23px;
    font-weight: lighter;
    line-height: 38px;
}

.subtitulos{
    font-size: 16px;
    line-height: 19px;
    text-align: center;
}

.correo{
        text-decoration: none !important;
        color: #1f120d !important;
        cursor: pointer !important;
    }

    .correo:hover{
        color: #815745 !important;
    }

    .correo:visited{
        color: #1f120d !important;
    }

#boton{
        color: #1f120d;
        border: 2px solid #1f120d;
        background-color: #ffffff;
        cursor: pointer;
        width: 150px;
        height: 45px;
        border: 2px solid #1f120d;
        padding: 12px;
        margin: auto;
        margin-top: 25px;
}

    #boton:hover{
        color: #ffffff;
        background-color: #1f120d;
    }

    #boton:visited{
        color: #1f120d;
        background-color: #ffffff;
    }

/*Footer*/

footer{
    height: 100px;
    width: 100%;
    background-color: #1f120d;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#logo-footer{
    display: inline-block;
    position: relative;
    top: 30px;
    height: 40px;
    left:40px; 
}

#mamur-logo{
    display: inline-block;
    position: relative;
    top: 30px;
    height: 40px;
    margin-left: 50px; 
}

#ig-mamur{
    align-content: flex-end;
    display: inline-block;
    position: relative;
    top: 30px;
    height: 35px;
    margin-right: 40px;
}

/*Responsive Móviles*/
@media (max-width: 600px){

    /*Fondo paralax*/
    
    #fondo-paralax{
        background-image:url('images/fondo.jpg');
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 100vh;
    }
    
    /*Burbuja menu logo*/
    nav{
    position: relative;
    height: 100px;
    }
    #burbuja{
        display: inline-block;
        position: fixed;
        left: 15px;
        top: 30px;
        width: 70px;
        transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -ms-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        z-index: 5;
    }
    #burbuja:hover{
        width: 80px;
        left: 10px;
        top: 25px;
    }

    #logo{
        display: block;
        position: relative;
        top: 50px;
        height: 40px;
        left: 100px;
    }

    /*Contenido home*/
    #contenedor{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: 100px;
        margin-top:50px;
    }
    #caja-mapa{
        margin-right: 30px;
        margin-bottom: 50px;
        width: 460px;
        height: 91%;
    }
    #mapa{
        position: relative;
        width: 100%;
        height: 60vw;
        margin-top: 15px;
        margin-bottom: 20px;
        border: 4px solid #1f120d;
        box-shadow:0px 5px 4px #000000;
        -webkit-box-shadow:0px 5px 4px #000000;
        -moz-box-shadow:0px 5px 4px #000000;
        filter:progrid:DXImageTransform.Microsoft.dropShadow(color=#000000, offX=0, offY=5, positive=true);
    }
    
    #donde_estamos{
        font-size: 16px;
        font-weight: bold;
        color: #1f120d;
    }

    #calle{
        font-size: 10px;
        color: #1f120d;
    }
    td{
        font-size: 11px;
    }

    .tds-horarios{
        padding-left: 14px; 
    }

    #tabla-horarios{
        height: 290px;
        width: 250px;
        margin-bottom: 15px;
        margin-right: 30px;
        background-color: #abca61;
        border-radius: 10px;
        box-shadow: 2px 2px 8px #242424; 
        -webkit-box-shadow:2px 2px 8px #242424;
        -moz-box-shadow:2px 2px 8px #242424; 
        filter:progrid:DXImageTransform.Microsoft.dropShadow(color=#242424, offX=2, offY=2, positive=true);
    }
    
    #tabla-contacto{
        width: 250px;
        height: 272px;
        margin-bottom: 30px;
        margin-top:35px;
        background-color: #abca61;
        border-radius: 10px; 
        box-shadow: 3px 3px 6px #727272; 
        -webkit-box-shadow:3px 3px 6px #727272;
        -moz-box-shadow:3px 3px 6px #727272; 
        filter:progrid:DXImageTransform.Microsoft.dropShadow(color=#727272, offX=3, offY=3, positive=true);
    }
    /*SECCIÓN SERVICIOS*/

    .servicios{
        width: 100%;
        min-height: 300px;
        position: relative;
        padding-right: 180px;
        padding-left: 180px;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }
    .servicios-toggle{
        width: 100%;
        min-height: 0px;
        max-height: 0px;
        overflow: hidden!important;
        position: relative;
        padding-right: 0px;
        padding-left: 0px;
        -webkit-transition: min-height 500ms ease-out;
        -moz-transition: min-height 500ms ease-out;
        -o-transition: min-height 500ms ease-out;
        transition: min-height 500ms ease-out;
    }
    .servicios-toggle.desplegado{
        width: 100%;
        min-height: 500px;
        max-height: inherit;
        position: relative;
        padding-right: 150px;
        padding-left: 150px;
        padding: 30px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-content: space-around;
        align-items: center;
        -webkit-transition: min-height 500ms ease-out;
        -moz-transition: min-height 500ms ease-out;
        -o-transition: min-height 500ms ease-out;
        transition: min-height 500ms ease-out;
    }

    .fotos-muestra{
        width: 200px;
        height: 300px;
        margin-bottom: 10px;
    }

    .fotos-muestra-horizontal{
        width: 200px;
        height: 134px;
        margin-bottom: 10px;
    }

    .contenedor-fotos{
        margin: 40px;
        width: 200px;
    }

    .textos{
        text-align: center;
    }

    h1{
        font-size: 20px;
        line-height: 30px;
    }

    h3{
        font-size: 15px;
        font-weight: lighter;
        line-height: 23px;
        margin-top: 8px;
    }

    .subtitulos{
        font-size: 12px;
        line-height: 16px;
        text-align: center;
    }

    .correo{
        text-decoration: none !important;
        color: #1f120d !important;
        cursor: pointer !important;
    }

    .correo:hover{
        color: #815745 !important;
    }

    #boton{
        color: #1f120d;
        border: 1px solid #1f120d;
        background-color: #ffffff;
        cursor: pointer;
        width: 100px;
        height: 30px;
        border: 2px solid #1f120d;
        padding: 5px;
        margin: auto;
        margin-top: 10px;
    }
    #boton:hover{
        color: #ffffff;
        background-color: #1f120d;
    }

    /*Footer*/
    footer{
        height: 60px;
        width: 100%;
    }
    
    #logo-footer{
        top: 20px;
        height: 20px;
        left:20px; 
    }
    
    #mamur-logo{
        display: inline-block;
        position: relative;
        top: 20px;
        height: 20px;
        margin-left: 20px; 
    }
    
    #ig-mamur{
        top: 20px;
        height: 18px;
        margin-right: 20px;
    }
}

@media (max-width: 450px){
    #fondo-paralax{
        background-image:url('images/fondo.jpg');
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 100vh;
    }
}















