@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 {
    background-color: rgb(245,245,245);
    font-family: 'poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: rgb(245,245,245);
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.swiper-slide {
    padding: 0 80px 50px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-prev::after {
    font-size: 25px;
}

.swiper-button-next::after {
    font-size: 25px;
}

.swiper-button-prev {
    color: black;
    background-image: url('https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css') !important;
    background-size: contain !important;
}

.swiper-button-next {
    color: black;
    background-image: url('https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css') !important;
    background-size: contain !important;
}


.swiper-pagination-bullet {
    background-color: #747474;
}

.swiper-pagination-bullet-active {
    background-color: rgb(30, 54, 83);
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 20px;
}


.logo img {
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.menu .navbar {
    display: flex;
    align-items: center;
    margin: 0;
}

.menu .navbar ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menu .navbar ul li a {
    display: inline-block;
    font-size: 18px;
    padding: 20px;
    color:  rgb(30, 54, 83);
    font-weight: 600;
    line-height: 25px;
}

#menu {
    display: none;
}

.menu-icono {
    display: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.submenu {
    position: relative;
}


.header-content {
    padding: 200px 0 0px 0;
    position: relative;
}

.header-info {
    display: flex;
}

.header-txt {
    width: 50%;
}

.header-txt2 {
    width: 50%;
}

.header-txt2 h1 {
    font-size: 50px;
    color: rgb(30, 54, 83);
    text-transform: uppercase;
}

.header-txt h1 {
    font-size: 50px;
    color: rgb(30, 54, 83);
    text-transform: capitalize;
}

.header-img {
    width: 100%;
    text-align: right;
}

.header-img img {
    width: 500px;
    border-radius: 25px;
}

.price-1 {
    font-size: 18px;
    color: #747b8f;
    text-decoration-line: line-through;
    margin-right: 25px;
}

.price-2 {
    font-size: 30px;
    color: rgb(19, 40, 65) !important;
}

.infodash {
    font-size: 18px;
    color: #747b8f;
    margin-right: 25px;
}

.btn-1 {
    display: inline-block;
    background-color: rgb(30, 54, 83);
    box-shadow: 2px 2px 10px rgb(0,0,0,0.5);
    color: #feffff;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 25px;
    margin-top: 40px;
}

.btn-1:hover {
    background-color: rgb(19, 40, 65);
}

hr {
    border: 1px solid #7a7b8f16;
}

.promos {
    padding: 50px 0;
    text-align: center;
}

.promos h2 {
    font-size: 50px;
    color: rgb(30, 54, 83);
    margin-bottom: 35px;
}

.categories {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.categorie {
    display: flex;
    align-items: center;
    padding: 35px;
}

.categorie img {
    width: 150px;
    border-radius: 25px;
}

.categorie-1 {
    width: 50%;
}

.categorie-1 h3 {
    color: rgb(30, 54, 83);
    font-size: 22px;
    font-weight: 600;
}

.categorie-1 p {
    color: #747b8f;
    font-size: 18px;
}

.categorie-img {
    width: 50%;
}

.products {
    padding: 50px;
}

.products h2 {
    text-align: center;
    font-size: 50px;
    color: rgb(30, 54, 83);
    margin-bottom: 70px;
}

.product {
    text-align: center;
}

.product img {
    width: 150px;
    margin-bottom: 15px;
    border-radius: 25px;
}

.product-txt h3 {
    font-size: 18px;
    color: rgb(30, 54, 83);
    margin-bottom: 15px;
}

.product-txt p{
    color: #747b8f;
    font-size: 16px;
    margin-bottom: 15px;
}

.precio {
    color: rgb(30, 54, 83) !important;
}

.btn-3 {
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    color: rgb(30, 54, 83);
    border: 1px solid rgb(30, 54, 83);
    border-radius: 25px;
    margin-top: 15px;
}

.btn-3:hover {
    background-color: rgb(30, 54, 83);
    color: white;
}

.footer {
    background-color: rgb(245,245,245);
    padding: 150px 0 100px 0;
    background-image: url(../images/footer.png);
    background-size: cover;
    background-position: center center;
    text-align: center;
}

.footer ul {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer ul li {
    margin: 0 10px; /* Espacio entre cada elemento li */
}

.footer ul li:last-child {
    margin-right: 0; /* Elimina el margen derecho del último elemento li */
}

.footer ul li a {
    color: #1B293A;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #31527a;
}

.footer-txt {
    margin-top: 0; /* Remueve el margen superior extra */
    border-top: none; /* Elimina la línea superior */
    padding: 0; /* Remueve el padding adicional */
}

.footer-txt p {
    color: #1B293A;
    font-size: 14px; /* Asegúrate de que el tamaño de la fuente sea consistente */
}


@media(max-width: 991px) {
    .menu {
        padding: 20px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1b293ad9;
        backdrop-filter: (10px);
        box-shadow: 0px 2px 20px 10px rgba(0, 0, 0, 0.25);
        display: none;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        padding: 0; /* Ajuste del padding */
    }

    .menu .navbar ul {
        display: flex;
        flex-direction: flex;
        align-items: center;
        padding: 0 20px;
    }
    .menu .navbar ul li {
        width: 100%;
        text-align: center; /* Centra el texto */
        padding: 10px 0; /* Ajuste del padding para evitar desbordamientos */
        font-size: 16px; /* Reducir el tamaño de fuente */
        margin: 10px;
    }

    .menu .navbar ul li a {
        color: #fff; /* Cambia el color del texto de los enlaces a blanco */
        font-size: 16px; /* Reducir el tamaño de fuente */
        padding: 5px 0; /* Ajuste del padding para evitar desbordamientos */
    }

    #menu:checked ~ .navbar {
        display: flex;
    }

    .submenu:hover #carrito {
        min-width: 100%;
    }

    .mySwiper-1 {
        width: 300px;
    }

    .swiper-slide {
        padding: 0 30px 50px 30px;
    }

    .header-content {
        padding: 100px 0 50px 0;
    }

    .header-info {
        padding: 0;
        flex-direction: column;
        text-align: center;
    }

    .header-txt {
        width: 100%;
    }

    .header-txt2 {
        width: 100%;
    }

    .header-txt h1 {
        font-size: 40px;
    }

    .header-img {
        width: 100%;
    }

    .header-img img {
        width: 200px;
        align-items: center;
        justify-content: center;
    }

    .prices {
        flex-direction: column;
    }

    .parrafo {
        flex-direction: column;
    }

    .price-1 {
        margin: 0;
    }

    .infodash {
        margin: 0;
    }

    .btn-1 {
        margin: 20px 0;
    }

    .promos {
        padding: 30px;
    }

    .promos hr {
        font-size: 40px;
        margin-bottom: 0;
    }

    .categories {
        grid-template-columns: repeat(1, 1fr);
    }

    .categorie {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .categorie-1 {
        width: 100%;
        margin-bottom: 25px;
        order: -1;
    }

    .categorie-img {
        width: 100%;
    }

    .products {
        padding: 30px;
    }

    .products h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }
}    