*{
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}
:root {
    --Dark-Gray: hsl(0, 0%, 63%);
    --Black: hsl(0, 0%, 0%);
    --White: hsl(0, 0%, 100%);
    --Very-Dark-Gray: hsl(0, 0%, 27%);
}

body {
    max-width: 1440px;
    background-color: var(--White);
    color: var(--Black);
    font-family: "League Spartan", sans-serif;
    font-size: 12px;
    margin: 0;
}

.grid-container {
    display: grid;
    height: 100vh;
    width: 100vw;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.item1, .item2{
    height: 70vh;
}
.item3, .item4, .item5{
    height: 30vh;
}
p {
    font-size: clamp(0.6rem, 2vw, 1.2rem);
    line-height: 1.5;
    color: var(--Dark-Gray);
    margin-top: 0.8em;
    margin-bottom: 1.5em;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

    /* item 1, navbar y logo */
.item1 {
    padding: 0%;
    grid-column: 1 / 7;
    grid-row: 1; 
    text-align: center;
    position: relative;
}
#menuImagen{
    display: none;
}
.containerLogo {
    position: absolute;
    top: 10%;
    left: 7%;
    display: flex;
}
.logo {
    width: 80px;
    height: auto;
    margin-right: 10px;
}
.imagen-logo{
    width: 100%;
    object-fit:contain;
}
.navBar{
    min-width:300px; 
    display: flex;
    list-style: none;
    justify-content: space-around;
}
.navBar a{
    text-decoration: none;
    color: var(--White);
    font-size: 1.5em;
}
.navBar a:hover{
    text-decoration: underline;
}

.item2 {
    padding: 20% 19%;
    grid-column: 7 / 11;
    grid-row: 1; 
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
h2 {
    font-size: clamp(1rem, 4vw, 3rem);
    margin-bottom: 0.5em;
}

.shopNow {
    display: flex;
    justify-content: start;
    align-items: center;
}
.flecha {
    width: 10%;
    height: 5%;
}
.containerFlechasMobile {
    display: none;
}
.containerFlechas {
    grid-column: 7 / 8;
    grid-row: 1;
    display: flex;
    justify-content:space-around;
    align-items: center;
    background-color: var(--Black);
    height: 70px;
    align-self: end;
    padding-top: 1em;
    padding-bottom: 1em;
}

.item6, .item7 {
    background-color: var(--Black);
    background: none;
    border: none;
}

h4 {
    font-size: clamp(0.3rem, 3vw, 1rem);
    letter-spacing: 1em;
    padding-right: 20px;
}

.item3 {
    padding: 0%;
    grid-column: 1 / 4;
    grid-row: 2;
    text-align: center;
}
.item4 {  
    padding: 10%;
    grid-column: 4 / 8;
    grid-row: 2;
    box-sizing: border-box;
    overflow: hidden;
}

h3 {
    font-size: 1.1rem;
    letter-spacing: 6px;

}

.item5 {
    padding: 0%;
    grid-column: 8 / 11;
    grid-row: 2;

}

@media (max-width: 375px) {
    html, body {
        overflow-x: hidden;
    }
    .grid-container {
        display: block;
        width: 100vw;
    }
    .item1, .item2, .item3, .item4, .item5{
        height: auto;
        display: block;
    }
    .item1 {
        width: 100vw;
    }
    picture img{
        object-fit: cover;
        width: auto;
        height: auto;
    }
    .containerLogo .navBar{
        display: none;
    }
    .containerLogo .navBar {
        display: none;
        width: 0;
        min-width: 0;
        overflow: hidden;
    }
    .containerLogo {
        width: 100vw;
        display: flex;
        flex-direction: row-reverse;
        justify-content: start;
    }
    .logo {
        width: 75%;
        height: 14px;
    }
    .menu{
        height: 14px;
    }
    #menuImagen{
        display: block;
        height: 14px;
    }


    .containerFlechas {
        display: none;
    }

    .containerFlechasMobile {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 10;
        display: flex;
    }

    .item6, .item7 {
        background-color: var(--Black);
        border: 0.8em solid var(--Black);
        padding: 1em;
        height: auto;
    }
    .item6 img, .item7 img{
        width: 10px;
        object-fit: contain;
    }

    /* hasta aca no tocar */

    .item2 {
        padding:6% 7% 11% 7%;
    }
    p {
        font-size: 1rem;
        padding: 0 0.2rem;
        margin: 0;
    }
    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }
    .shopNow{
        padding: 2rem 0;
    }
    h4 {
        font-size: 1rem;
        letter-spacing: 0.8rem;
    }
    .flecha {
        width: 11%;
        height: 6%;
    }
    .item4 {
        padding: 10% 7%;
    }
    h3 {
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }
}
