@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
}

:root {
    --font-family-Karla:'Karla', 'sans-serif';
    --color-two: rgb(171, 144, 84);
}

a:hover {
    cursor: pointer;
    color: black;
}

.todas:hover {
    cursor: pointer;
    color: var(--color-two);
}

.special::after {
    content: "|";
}

.suscribete {
    color: black;
}

.suscribete:hover {
    color: var(--color-two);
}

#product {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media screen and (min-width: 801px)  {

    header {
        position: fixed;  
        top:0;
        width: 100%;
        height: auto;
        background-color: white;
        z-index: 100;
    }

    .header-up {
        display: flex;
        justify-content: center;
        padding: 18px 18px 10px 18px;
    }

    .header-down {
        display: flex;
        justify-content: center;
        padding: 10px 18px 10px 18px;
    }

    .logo {
        width: 150px;
    }

    ul, span, li, a {
        list-style: none;
        text-decoration: none;
    }

    h1 {
        display: flex;
        justify-content: center;
        font-family: var(--font-family-Karla);
        font-size: 12px;
        font-weight: 400;
    }

    h3, h4 {
        font-size: 12px;
        padding-bottom: 5px;
    }

    p {
        font-size: 12px;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .navbar {
        display: flex;
        text-align: center;
        justify-content: center;
        background-color: white;
    }

    .burguer {
        visibility: hidden;
    }

    #chkToggle {
        display: none;
    }

    .menu > li:hover > ul {
        display: flex;
        justify-content: space-evenly;
        position: absolute;
    }

    .menu {
        display: flex;
        justify-content: center;
    }

    .menu > li:hover {
        text-decoration: underline;
    }

    .menu > li {
        padding: 10px;
    }

    .menu > li:hover > ul {
        display: flex;
        justify-content: space-evenly;
        position: absolute;
    }

    .menu > li > span::after { 
        content: "|";  
    }

    .menu > li > a::after { 
        content: "|";  
    }

    .last::after {
        visibility: hidden;
    }

    span:hover {
        cursor: pointer;
        color: rgb(171, 144, 84);
    }

    span, .special {
        display: flex;
        gap: 25px;
        font-size: 16px;
        font-family: var(--font-family-Karla);
        color: black;
        transition: all .8s ease;
    }

    .submenu {
        display: none;
        padding: 1rem;
        left: 0;
        width: 100%;
        height: 6rem;
        background-color: white;
    }

    .submenu  > li {
        padding: 20px 0 0 20px;
    }

    main {
        padding-top:10rem;
    }

    .banner-container {
        position: relative;
        display: flex;
        width: 100%;
    }

    .leftpic {
        width: 100%;
        object-fit:cover;
    }

    .cta-principal {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 250px;
        height: 50px;
        display: flex;
        position: absolute;
        top: 35%;
        left: 2%;
        justify-content: center;
        background-color: #00000055;
        border-color: transparent;
        border-radius: 5px;
        font-size: 16px;
        color: white;
    }

    .cta-box {
        display: flex;
        height: auto;
        text-align: center;
        justify-content: center;
        background-color: black;
        padding: 10px;
    }

    button {
        background-color:transparent;
        border-radius: 5px;
        border-color:transparent;
        padding: 20px;
    }

    button > a {
        color: white;
        border-color:transparent;
        font-family: karla;
        font-size: 20px;
        font-weight: 300;
    }

    .gallery-container { 
        display: grid;
        width: 100%;
        padding: 1rem;
        justify-items: center;
        gap: 1rem;
        grid-template-columns: repeat(5, 1fr);
        
    }

    .gallery-container > div {
        min-width: 0;
        display: flex;
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        background-color: whitesmoke;
        box-sizing: border-box;
    }

    .gallery-container > div:hover {
        transition:all 500ms ease-in-out;
        cursor: pointer;
        transform:scale(1.05);
        border: 1px solid rgb(87, 86, 86);
    }


    footer {
        display: flex;
        position: relative;
        background-color: #efefef;
        height: 10rem;
        margin: 2rem;
    }

    footer > .footer-container {
        width: 100%;
        align-items: center;
        display: flex;
        text-align: center;
        justify-content: space-between;
        padding: 0 2rem 0 2rem;  
    }
    .social-media > a  {
        padding: 10px 10px 10px 0;
    }

    h4 {
        font-size: 14px;
        font-weight: 400;
        padding: 5px;
    }

    .newsletter {
        display: flex;
        text-align: center;
        align-items: center;
    }

    fieldset {
        border-color: transparent;
    }

    fieldset > button {
        padding: 5px;
    }

    .suscribete, input {
        padding: 5px;
        font-family:var(--font-family-Karla);
    }

    .newsletter {
        order: 3;
    }

    .product-name {
        font-size: 10px;
    }
}




@media screen and (max-width: 425px) {

    .header-up, .header-down {
        display: flex;
        justify-content: center;
        padding: 15px 9px 0px 9px;
    }

    .logo {
        width: 100px;
    }

    h1 {
        display: flex;
        justify-content: center;
        font-family: var(--font-family-Karla);
        font-size: 8px;
        font-weight: 300;
    }

    h3, h4 {
        font-weight: 200;
        font-size: 12px;
        padding-bottom: 5px;
    }

    p {
        font-size: 10px;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    li, ul, a {
        list-style: none;
        text-decoration: none;
    }

    .navbar {
        padding-left: 1rem;
        padding-bottom: 20px;
    }

    .navbar-toggle {
        position: relative;
        cursor: pointer;
    }
    
    #chkToggle {
        display: none;
        width: 40px;
        height: 40px;
    }
    
    #chkToggle:checked +ul.menu {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        z-index: 100;
        background-color: rgba(255, 255, 255, 0.937);
    }

    .menu, .submenu {
        padding: 1rem 0 0.5rem 1rem;
    }

    .submenu > li {
        position: relative;
        padding-left: 3rem;
    }

    span:hover {
        cursor: pointer;
        color: rgb(171, 144, 84);
    }
    
    span, .special {
        display: block;
        padding: 10px;
        color: black;
        font-size: 10px;
        font-family: var(--font-family-Karla);
    }

    .banner-container {
        position: relative;
        width: 100%;
        height: auto;
    }
    
    .leftpic {
        width: 100%;
        position: relative;
        object-fit:contain;
    }
     
    button {
        background-color: black;
    }
    
    button > a {
        color: white;
        border-color: transparent;
        font-family: karla;
        font-size: 12px;
        font-weight: 300;
    }

    .cta-principal {
        display: flex;
        position: absolute;
        top: 0;
        justify-content: end;
        text-align: center;
        width: 100%;
        height: 30px;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.28);
        color: white;
        border-color: transparent;
        padding-right: 30px;
        font-size: 10px;
    }

    .cta-box {
        display: flex;
        position: relative;
        justify-content: center;
        height: 30px;
        align-items: center;
        text-align: center;
        bottom: 0.5em;
        background-color: black;
    }

    .cta-box > button {
        border: none;
    }
    
    .gallery-container { 
        display: grid;
        width: 100%;
        justify-items: center;
        gap: 10px;
        padding: 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-container > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 5px;
        gap: 5px;
    }
    
    footer {
        background-color: #efefef;
        width: 100%;
        height: 250px;
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
    }

    .social-media {
        display: block;
        text-align: center;
        justify-content: center;
    }
    
    fieldset {
        border-color: transparent;
    }

    .suscribete {
        padding-bottom: 0.5rem;
        display: flex;
        text-align: center;
    }
    
    fieldset > button {
        padding: 0px 20px 0px 20px;
        border-color: var(--color-two);
        border-radius: 5px;
        background-color: transparent;
    }
    
    fieldset > button:hover {
        cursor: pointer;
    }

    .newsletter {
        order: 3;
    }

    .product-name {
        font-size: 8px;
    }

}



@media screen and (min-width: 426px) and (max-width: 800px) {

    header {
        position: fixed;  
        top:0;
        width: 100%;
        background-color: white;
        z-index: 100;
    }
    
    
    .header-up {
        display: flex;
        justify-content: center;
        padding: 18px 18px 10px 18px;
    }
    
    .header-down {
        display: flex;
        justify-content: center;
        padding: 10px 18px 10px 18px;
    }
    
    .logo {
        width: 150px;
    }
    
    ul, span, li, a {
        list-style: none;
        text-decoration: none;
    }
    
    h1 {
        display: flex;
        justify-content: center;
        font-family: var(--font-family-Karla);
        font-size: 12px;
        font-weight: 400;
    }
    
    h3 {
        font-size: 12px;
        padding-bottom: 5px;
    }

    h4 {
        font-size: 14px;
        font-weight: 200;
        padding: 5px;
    }

    p {
        font-size: 12px;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    
    .navbar {
        display: flex;
        justify-content: center;
        padding: 10px;
        text-align: center;
        background-color: white;
    }

    .navbar-toggle {
        display: none;
    }
    
    .burguer {
        visibility: hidden;
    }
    
    #chkToggle {
        display: none;
    }
    
    .menu > li:hover > ul {
        display: flex;
        justify-content: space-evenly;
        position: absolute;
    }
    
    .menu {
        display: flex;
        justify-content: center;
    }
    
    .menu > li:hover {
        text-decoration: underline;
    }

    .menu > li:hover > ul {
        display: flex;
        justify-content: space-evenly;
        position: absolute;
    }
    
    .menu > li {
        padding-top: 12px;
    }
      
    .menu > li > span::after { 
        content: "|";  
    }
    
    .last::after {
        visibility: hidden;
    }

    span:hover {
        cursor: pointer;
        color: rgb(171, 144, 84);
    }
    
    span, .special {
        display: flex;
        gap: 10px;
        padding: 0px 5px 0px 5px;
        font-size: 8px;
        font-family: var(--font-family-Karla);
        color: black;
        transition: all .8s ease;
    }

    
    .submenu {
        display: none;
        padding: 1rem;
        left: 0;
        width: 100%;
        height: 6rem;
        background-color: white;
    }
    
    .submenu  > li {
        padding: 20px 0 0 20px;
    }
    
    main {
        padding-top:10rem;
    }
    
    .banner-container {
        display: flex;
        height: auto;
        width: 100%;
    }
    
    .leftpic {
        width: 100%;
        object-fit:cover;
    }
     
    
    .cta-principal {
        display: flex;
        width: 100%;
        height: 40px;
        position: absolute;
        align-items: center;
        justify-content: end;
        background-color: #00000033;
        border-color: transparent;
        color: white;
        font-size: 12px;
        padding-right: 30px;
    }
    
    .cta-box {
        display: flex;
        width: 100%;
        height: 40px;
        text-align: center;
        justify-content: center;
        align-items: center;
        background-color: black;
        padding: 5px;
    }
    
    button {
        background-color:transparent;
        border-radius: 5px;
        border-color:transparent;
        padding: 20px;
    }
    
    button > a {
        color: white;
        border-color:transparent;
        font-family: karla;
        font-size: 16px;
        font-weight: 300;
    }
    
    .gallery-container {
        display: grid;
        width: 100%;
        justify-items: center;
        text-align: center;
        gap: 10px;
        grid-template-columns: repeat(3, 1fr);
        padding: 10px;
    }

    .gallery-container > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 30px;
        background-color: whitesmoke;
    }
    
    footer {
        display: flex;
        position: relative;
        background-color: #efefef;
        height: 10rem;
        margin: 2rem;
    }
    
    footer > .footer-container {
        width: 100%;
        align-items: center;
        display: flex;
        text-align: center;
        justify-content: space-between;
        padding: 0 2rem 0 2rem;  
    }

    .social-media > a  {
        padding: 10px 10px 10px 0;
    }
    
    .newsletter {
        display: flex;
        text-align: center;
        align-items: center;
    }
    
    fieldset {
        border-color: transparent;
    }
    
    fieldset > button {
        padding: 5px;
    }
    
    .suscribete, input {
        padding: 5px;
        font-family:var(--font-family-Karla);
    }

    .newsletter {
        order: 3;
    }

    .product-name {
        font-size: 8px;
    }

}



    






