/* <uniquifier>: Use a unique and descriptive class name
 <weight>: Use a value from 100 to 900 */

.montserrat-<uniquifier> {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

* {
    color: #503833;
    font-family: "Montserrat";
}


body {
    background-color: #FFD18D;
}

h1 {
    font-size: 1.2em;
    font-weight: bold;
    line-height: 2;
}

h2 {
    font-size: 1em;
    font-weight: 500;
}

li {
    list-style-type: none;
}

p {
    font-size: 1em;
    font-weight: 500;

}

/* Estilos header global */

header {
    display: grid;
    width: 100%;
    background-color: #FFD18D;
    padding: 20px 40px 20px 40px;
    grid-template-columns: 1fr 8fr 2fr;
    grid-template-rows: 1fr;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 100;;
}

@media screen and (max-width: 768px) {
    header {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

header #logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


header #logo img {
    width: 100%;
}

header #menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header #menu li {
    display: inline-block;
    padding: 0 10px 0 10px;
    font-size: 1em;
    font-weight: bold;
    list-style: none;
}

header #menu li a {
    text-decoration: none;
}

header #socialMedia {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header #socialMedia img {
    padding: 0 10px 0 10px;
}


/*Estilos main content */

main section div {
    margin: 0 auto;
}


/* Rows contained 1280px max width */
.contained {
    margin: 0 auto;
    max-width: 1280px;
    ;
}


#Hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #b0894e;
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    justify-content: center;
    align-items: center;
    background-image: url(img/home/Hero.webp);
}

@media screen and (max-width: 768px) {
    #Hero {
        height: 300px;
    }
}

#Hero h1,
#Hero h2 {
    text-align: center;
    /* Center text within the Hero section */
}

/* Estilos Texto SEO */

#textoSEO div {
    margin: 0 auto;
    max-width: 1440px;
    text-align: center;
    background-color: #b0894e3d;
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
}

#textoSEO ul li {
    text-align: left;
    padding-right: 20px;
}

/*Location estilos*/

    #sucursalesForma {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        margin-top: 40px;
    }

/* Footer estilos */

footer  {
    text-align: center;
    padding: 20px;
    box-shadow: #50383382 0px 0px 10px;
    margin-top: 40px;   
}

footer #socialMedia {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer #socialMedia img {
    padding: 0 10px 0 10px;
    margin-top: 20px;
}