@import url(./article.css);
@import url(./header.css);

/*ESTILOS GENERALES*/
*{/*a todo el archivo se le resetea al padding y margin y se le indica un tipo de letra*/
    padding: 0;
    margin: 0;
    box-sizing: border-box; /*padding y border formar parte del calculo del ancho de la caja y no los suma posteriormente, evita el desbordamiento*/
    font-family: 'Oswald', sans-serif;
}

html { 
    max-width: 100% !important; /*evita desbordamiento*/
    overflow-x: hidden !important; /*evita desbordamiento*/
    scroll-behavior: smooth;
}

#logo p{
    padding: 0px;
}

body{
    height: 100vh !important;
    margin: 0;
    background-color: #EBD723;
    max-width: 100% !important; /*evita desbordamiento*/
    overflow-x: hidden !important; /*evita desbordamiento*/
    scroll-behavior: smooth;
}

.container { /* a todos los container aplicamos max widht para que el contenido quede mejor centrado*/
    max-width: 1200px;
    margin: auto;
}

#banner { /*BANNER / HERO , CARGA Y APLICACION DE EFECTOS*/
    background-image: url("../imagenes/hamburguesa.jpg");
    background-size: cover; /*renderiza imagen preservando su proporcion propia*/
    background-position: center; /*que la imagen quede siempre centrada*/
    height: 376px; 
    box-shadow: inset 0 0 0 2000px rgb(137 133 133 / 57%); /* SOMBRA */
}

#botonflotante { /*BOTON DE PEDI AHORA*/ 
    font-weight: bold;
    position: fixed;
    bottom: 10%;
    right: 17px;
    z-index: 99;
    background-color: #EBD723;
    box-shadow: -3px 4px rgb(71 71 71 / 50%);
    padding: 0px 60px;
    margin: 0;
    border-radius: 15px 0 0 15px;
    color: black;
    font-size: 30px;
    text-decoration: none;
    text-align: center;
    font-family: 'OmbudsmanStencil', fantasy;
    }

iframe { 
    border-radius: 20px;
}

#ContainerNuestrasSucursales{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 65px;
}

.ContainerUbicacion h2 {
    text-align: center;
    font-size: 30px;
    padding-bottom: 37px;
    text-decoration: underline;
    font-weight: bold;
    padding-top: 17px;
}

.ContainerNosotros h2{
    font-size: 2em;
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
    padding-bottom: 20px;
}

.col-4{ /*ancho de formulario*/
    width: 50%;
}

/*FOOTER*/

#taxi{
    background-image: url("../imagenes/trama_taxi_negra.png");
    width: 100%;
    height: 5%;
    background-repeat: repeat-x;
    background-size: contain;
}

footer{
    background-color: #000;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 170px;

}

.footerContent{
    display: flex;
    flex-direction: column;
    align-items: center;

}

.imagenFooter{
    height: auto;
    width: 40%;
}

.footerContent p{
    color: #808080;
}

