@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Arial', sans-serif;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px; /* Máximo ancho del contenido */
    margin: 0 auto; /* Centrar el contenido en la página */
}

.header {
    display: flex;
    top: 0;
    left: 0;
    position: fixed;
    height: 90px;
    background-color: #7DA668; 
    color: #ffffff; 
    padding: 1.3rem 10%; 
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0px 4px 5px 0x rgba(191, 122, 122, 0.71);
    -webkit-box-shadow: 0px 4px 5px 0px rgba(19, 35, 17, 0.71)
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #7DA668;
    backdrop-filter: blur(50px);
    z-index: -1;
}

#check {
    display: none;
}

.logo-search {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px; /* Ajusta la altura del logo según tu necesidad */
}

.navbar a {
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: auto;
    margin-right: 2.5rem;
}

.iconos {
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/* BREAKPOINTS */
@media (max-width: 991px) {
 header {
    padding: 1.3rem 5%;
}
}

@media (max-width: 768px) {
    .iconos {
        display: inline-flex;
    }

    #check:checked~.iconos #menu-icono {
        display: none;
    }

    .iconos #close-icono {
    display: none;
    }

    #check:checked~.iconos #close-icono {
        display: inline-flex;
    }

    .navbar {
        position: absolute;
        top: 80%;
        left: 0;
        width: 100%;
        height: 0;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    #check:checked~.navbar {
        display: block;
        height: 15rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        transition: .3s ease;
        color: #000000;

    }

    #check:checked~.navbar a {
        transform: translateY(0);
    }

    .logo {
        display: flex;
    }
}


.segunda-barra {
    position: fixed;
    background-color: #ffffff;
    z-index: 999;
    margin-top: 90px;
    width: 100%;
    padding: 15px 0;
    height: 50px;
    line-height: 25px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
    margin-top: -65px;
}

.wrapper {
    max-width: 1250px;
    padding: 0 30px;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.nav-links li a:hover {
    color: #7DA668;
}

.bx-chevron-down {
    color: #000000;
    font-size: 16px;
    margin-left: -10px;
    cursor: pointer;
}

.product-chevron:hover,
.product-toggle:hover .product-chevron {
    color: #7DA668; /* Cambia de color al pasar el cursor sobre la categoría o el producto */
}
 
.nav-links li:hover .mega-box, 
.category-toggle:hover .category-menu,
.product-toggle:hover .product-menu {
    top: 35px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.mega-box {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mega-box .content {
    background: #ffffff;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.content .row {
    width: calc(25% - 30px);
    line-height: 30px;
}

.content .row header {
    color: #030303;
    font-size: 16px;
    font-weight: 600;
}

.content .row .mega-links {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    margin-left: -40PX;
}

.content .row:nth-child(1),
.content .row:nth-child(2) {
    border-left: 0px;
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0 20px;
    color: #202020;
    font-size: 14px;
    display: block;
}

.row .mega-links li a:hover {
    color: #7DA668;
}

.row .ver-mas a {
    color: #000000;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    margin-left: -14px;
}

.ver-mas a:hover {
    text-decoration: underline;
    color: #749a63;
}

@media (max-width: 768px) {
    .segunda-barra {
        visibility: hidden;
    }
}




.route {
    margin-top: 150px;
    margin-left: 50px;
}

.route a {
    display: inline-block; 
    vertical-align: middle; 
    text-decoration: none; 
    color: #0000005e; 
}

.route p {
    display: inline-block; 
    margin-left: 2px; 
}

@media (max-width: 768px) {
    .route {
        margin-left: 7px;
        margin-top: 110px;
    }
}



.products-container {
    margin: 0 auto;
    max-width: 1200px;
    color: #333;
}

.title {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 40px 0;
    margin-top: 20px;
}

.container-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
}

.item {
    border-radius: 10px;
}

.item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.20);
}

.item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: all 0.5s;
}

.item figure {
    overflow: hidden;
}

.item:hover img {
    transform: scale(1.2);
}

.info-product {
    padding: 15px 30px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.information {
    font-size: 15px;
    font-weight: 500;
}

.info-product button {
    border: none;
    background: none;
    background-color: #000;
    color: #fff;
    padding: 15px 140px;
    cursor: pointer;
    width: auto;
    display: inline-block;
    text-decoration: none;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .container-items {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}

@media (max-width: 480px) {
    .title {
        flex-direction: column;
        align-items: center;
    }

    .info-product button {
        width: 100%;
    }
}



.next-page {
    margin-top: 20px;
    text-align: center;
}
.next-page .text {
    background-color: #f0f0f0;
    padding: 10px 20px;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
}
.next-page .text a {
    color: black;
    text-decoration: none; /* Para eliminar el subrayado de los enlaces */
}
.next-page .text:hover {
    background-color: #e0e0e0;
}






.footer {
    margin-top: 120px;
    background-color: #749a63;
    color: #ffffff;
    padding: 10px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .row {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.ul {
    list-style: none;
}

.footer-col {
    width: 40%;
    padding: 0 40px;
}

.footer-col2 {
    width: 40%;
    padding: 0 40px;
    margin-left: 50px;
}

.footer-col2 h4,
.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    margin-top: 30px;
}

.footer-col2 h4::before,
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #7BA6C3;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col2 ul p,
.footer-col ul p {
    margin-bottom: 10px;
    text-align: justify;
}

.footer-col ul p a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
}

.footer-col .social-links a {
    display: inline-block;
    height: 60px;
    width: 60px;
    border-color: rgba(255, 255, 255, 0.2);
    margin-right: 10px;
    margin: 0 10px 10px 10px 0;
    text-align: center;
    line-height: 60px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 30px;
}

.footer-col .social-links a:hover {
    color: #14162b;
    background-color: #ffffff;
}

@media only screen and (max-width: 768px) {
    .footer .row {
        flex-direction: column; 
    }

    .footer-col {
        width: 100%; 
        padding: 0 15px; 
        box-sizing: border-box; 
        margin-bottom: 40px;
        margin-left: 15px;
    }

    .footer-col2 {
        width: 100%; 
        padding: 0 15px; 
        box-sizing: border-box; 
        margin-bottom: 40px;
        margin-left: 15px;
    }

    .footer-col2 ul p,
    .footer-col ul p {
        margin-right: 25px;
    }
}



.copyright {
    text-align: center;
    margin-top: 1px;
    color: #ffffff;
    font-size: 14px;
    background-color: #485144;
    display: flex;
    justify-content: space-evenly; 
    padding: 10px; 
}

.copyright p {
    margin: 0;
}

.copyright p:first-child {
    text-align: left;
}

.copyright p:last-child {
    text-align: right;
}






