@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: #080202;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #131212;
}

.menu {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.nav_bar {
    display: flex;
}

.menu_1 {
    display: flex;
    align-items: center;
    margin-right: 100px;
}

.menu_2 {
    margin-left: 100px;
    display: flex;
    align-items: center;
}

.logo_1 {
    width: 0;
}

.logo_2 {
    width: 380px;
    height: 70px;
}

.socials {
    display: flex;
}

.social {
    margin: 0 10px;
    height: 40px;
    width: 40px;
    border: 1px solid #db241b;
    border-radius: 50px;
}

.social:hover {
    background-color: #db241b;
}

.social img {
    margin: 8px 0 0 10px;
}

.menu .nav_bar ul li {
    position: relative;
    float: left;
}

.menu .nav_bar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #fff;
    display: block;

    transition: all 0.3s ease-in;
    border-radius: 10px;
}

.menu .nav_bar ul li a:hover {
    background-color: #db241b;
}

.menu .nav_bar ul li a.selected {
    color: #db241b;
    font-weight: 600;
}

.menu .nav_bar ul li a.selected:hover {
    color: #fff;
}

#menu {
    display: none;
}

.menu_icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header_content {
    margin-top: 200px;
    padding-bottom: 50px;
}

.cabecera {
    display: flex;
    flex-direction: column;
    width: 1150px;
}

.search-container {
    display: flex;
    margin-top: 180px;
    justify-content: center;
}

.search-bar {
    display: flex;
    align-items: center;
    width: 500px;
    border: 2px solid #ccc;
    padding: 10px;
    background-color: #585858;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    outline: none;
}

.search-button {
    font-size: 20px;
    border: 0;
    background-color: #da3024;
    border: 2px solid #ccc;
    padding: 1rem;
    color: #ececec;
    cursor: pointer;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.search-container input[type='text'] {
    padding: 10px 15px;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-container input[type='text']::placeholder {
    color: #aaa;
    font-style: italic;
    font-size: 16px;
}

.search-container input[type='text']:focus {
    border-color: #007bff;
    transition: border-color 0.3s ease;
}

.no-results {
    font-size: 20px;
    margin-top: 15px;
    color: red;
    text-align: center;
    display: none;
}

.swiper {
    width: 100%;
    padding: 0 0 50px 0;
}

.swiper-wrapper {
    margin-top: 3%;
}

.swiper-slide {
    max-width: 500px;
    max-height: 550px;
    background-color: #323232;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.842);
    padding: 30px;
    text-align: center;
    border-radius: 25px;
    font-family: Helvetica Neue, Helvetica;
}

.swiper-pagination-bullet {
    background-color: red;
}

.icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.icons i {
    font-size: 20px;
    color: #ffb900;
}

.icons img {
    width: 250px;
    height: 40px;
}

.product-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-texto {
    width: 290px;
}

.product-texto span {
    font-size: 20px;
    color: #ffb900;
    font-weight: bold;
}

.product-texto h3 {
    width: 280px;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-texto p {
    font-size: 15px;
    color: #c4c4c4;
    margin-bottom: 15px;
}

.product-texto h5 {
    color: #c4c4c4;
}

.product-imagen {
    flex-basis: 50%;
    text-align: right;
}

.product-imagen img {
    margin-top: 25px;
    width: 150px;
    height: 180px;
    border-radius: 10px;
}

.boton_1 {
    display: inline-block;
    padding: 13px 40px;
    border: 1px solid #ffb900;
    border-radius: 20px;
    color: #ffb900;
    text-decoration: none;
    margin-top: 5%;
    font-size: 19px;
}

.boton_1:hover {
    background-color: #ffb900;
    color: #fff;
    transition: all 0.3s ease-in;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 80px;
    height: 80px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.whatsapp-button.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-button:hover {
    transform: scale(1.2);
}

.whatsapp-button img {
    width: 100%;
    height: auto;
}

@media (max-width: 1030px) {
    .cabecera {
        width: 90%;
    }

    .menu_1 {
        margin-right: auto;
    }

    .menu_2 {
        margin-left: auto;
    }
}

@media (max-width: 991px) {
    .menu {
        margin-left: 10%;
    }

    .menu_2 {
        display: none;
    }

    .menu label {
        display: initial;
    }

    .menu .nav_bar {
        position: absolute;
        width: 60%;
        top: 100%;
        left: 0;
        right: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        background-color: #4b4a4a;
        display: none;
    }

    .menu .nav_bar ul li {
        width: 100%;
    }

    #menu:checked ~ .nav_bar {
        display: initial;
    }

    .header_content {
        padding: 30px;
        margin-top: 100px;
    }

    .slider {
        flex-direction: column;
    }

    .slider_txt {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    .slider_txt h1 {
        font-size: 50px;
    }

    .slider_txt p {
        font-size: 16px;
    }

    .btn_1 {
        padding: 10px 25px;
        font-size: 14px;
    }

    .slider_img {
        width: 100%;
        text-align: center;
    }

    .slider_img img {
        margin-right: 0;
        width: 300px;
    }

    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets,
    .swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: -7px;
    }

    .search-container {
        margin-top: 150px;
    }

    .tabs {
        padding: 50px 30px;
    }

    .tabs label {
        width: 33%;
    }

    .info {
        padding: 30px;
        flex-direction: column;
    }

    .info_img {
        width: 100%;
        text-align: center;
    }

    .info_img img {
        width: 400px;
        height: 200px;
        margin-bottom: 25px;
    }

    .info_txt {
        width: 100%;
        text-align: center;
    }

    .info_txt h2 {
        font-size: 10px;
    }

    .info_txt p {
        font-size: 16px;
    }

    .btn_1 {
        font-size: 16px;
    }

    .horario {
        padding: 30px;
        text-align: center;
    }

    .horario_info h2 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .horario_txt {
        flex-direction: column;
    }

    .socials {
        justify-content: center;
    }

    .social img {
        margin: 8px 0 0 0;
    }

    .footer {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .links h4 {
        margin: 25px 0 10px 0;
    }

    .mapa {
        margin-left: 50px;
    }
}

@media screen and (max-width: 435px) {
    header {
        width: 95%;
    }

    .logo_2 {
        margin-top: 0;
        width: 225px;
        height: 50px;
    }

    .menu {
        top: 2%;
        padding-left: 0;
    }

    .menu_2 {
        display: none;
    }

    .menu label {
        display: initial;
    }

    .menu .nav_bar {
        position: absolute;
        width: 50%;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        background-color: #4b4a4a;
        display: none;
    }

    .menu .nav_bar ul li {
        width: 100%;
    }

    #menu:checked ~ .nav_bar {
        display: initial;
    }

    .search-container {
        margin-top: 30%;
    }

    .search-bar {
        width: 73%;
    }

    .search-container input[type='text'] {
        padding: 8px 10px;
        font-size: 15px;
    }

    .search-container input[type='text']::placeholder {
        font-size: 13px;
    }

    .swiper-slide {
        width: 80%;
        height: 90%;
        padding-top: 3%;
    }
    .icons i {
        display: none;
    }

    .icons img {
        width: 85%;
        margin-left: 9%;
    }

    .product-texto {
        width: 80%;
        margin-bottom: 5%;
    }

    .product-texto h3 {
        position: absolute;
        width: 80%;
        margin-top: 35%;
        font-size: 15px;
    }

    .product-imagen {
        position: fixed;
        left: 33%;
        top: 9%;
    }

    .product-imagen img {
        width: 120px;
        height: 120px;
    }

    .product-texto p {
        width: 125%;
        margin-top: 85%;
    }

    .boton_1 {
        margin-top: 4%;
        padding: 13px 30px;
        font-size: 17px;
    }

    .whatsapp-button {
        bottom: 3%;
        right: 3%;
        width: 60px;
        height: 60px;
    }
}
