@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;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080202;
    font-family: 'Poppins', sans-serif;
}

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

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

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

.swiper-button-next {
    color: #DB241B;
}

.swiper-button-prev {
    color: #DB241B;
}

.swiper-pagination-bullet {
    background-color: #D3D2D2;
    opacity: 1;
}

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

.navbar {
    display: flex;
}

.menu {
    max-width: 100%;
    padding: 10px 0;
    position: fixed;
    background-color: #000000;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.menu-1 {
    margin-right: 180px;
    display: flex;
    align-items: center;
}

.menu-2 {
    margin-left: 180px;
    display: flex;
    align-items: center;
    /* background-color: #5a0606; */
    position: relative;
}

.w {
    position: relative;
    /* background-color: #555555; */
}

.w::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    border-bottom: 5px solid #DB241B;
    border-right: 5px solid #DB241B;
    bottom: 10px;
    right: 10px;
    transition: .4s;
}
.w:hover::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 40px;
    border-bottom: 5px solid #DB241B;
    border-right: 5px solid #DB241B;
    bottom: 10px;
    right: 5px;
}
.w::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    border-top: 5px solid #DB241B;
    border-left: 5px solid #DB241B;
    top: 10px;
    left: 10px;
    transition: .4s;
}
.w:hover:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 40px;
    border-top: 5px solid #DB241B;
    border-left: 5px solid #DB241B;
    top: 10px;
    left: 5px;
}
.logo-1 {
    width: 0;
}

.logo-2 {
    width: 120px;
}

.what {
    width: 20px;
}

.socials {
    /* background-color: #5a0606; */
    display: flex; /*se coloca una alado del otro*/
}

.social {
    margin: 0 10px;
    height: 40px;
    width: 40px;
    border: 1px solid #DB241B;
    border-radius: 50%;
}

.social:hover {
    background-color: #DB241B;
}

.social img {
    /* background-color: #91ff00; */
    margin: 9px 0 0 9px;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #FFFFFF;
    display: block;
}

.menu .navbar ul li a:hover {
    color: #DB241B;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

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

.header-content {
    margin-top: 150px;
    padding-bottom: 50px;
}

.slider {
    display: flex;
    align-items: center;
}

.slider-txt {
    margin-left: 85px;
    width: 50%;
}

.slider-txt h1 {
    font-size: 70px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 800;
}

.slider-txt p {
    font-size: 18px;
    color: #A7A7A7;
}

.botones {
    margin-top: 50px;
}

.btn-1 {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #DB241B;
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 20px;
    border-radius: 50px;
    transition: .3s;
}

.btn-1:hover {
    background-color: #DB241B;
    transform: scale(1.1);
    box-shadow: 0 0 15px #5a0606;
    text-shadow: 0 0 5px #000000;
}

.slider-img {
    width: 50%;
}

.slider-img img {
    margin-right: 225px;
    width: 550px;
}

.ancla_produc {
    color: #000000;
    /* padding: 40px 0; */
}

.products {
    background-color: #0d0d0d;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}

.tabs label {
    width: 15%;
    order: 1;
    display: block;
    padding: 20px 0;
    text-align: center;
    cursor: pointer;
    color: #A7A7A7;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    transition: background ease 0.2s;
}

.tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding-top: 25px;
}

.tabs input[type="radio"] {
    display: none;
}

.tabs input[type="radio"]:checked + label {
    border-bottom: 2px solid #DB241B;
    color: #FFFFFF;
}

.tabs input[type="radio"]:checked + label + .tab {
    display: block;
}

.product {
    display: flex;
    align-items: center;
    padding: 25px;
    margin: 0 10px;
}

.product-img {
    width: 50%;
    text-align: left;
}

.product-img h4 {
    display: inline-block;
    padding: 5px 7px;
    line-height: 15px;
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    border: 2px solid #555555;
    border-radius: 10px;
    margin-bottom: 50px;
}

.product-img img {
    width: 150px;
    height: 120px;
}

.product-txt {
    width: 50%;
    margin-left: 10px;
    text-align: left;
}

.product-txt h4 {
    color: #FFFFFF;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 5px;
}

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

.product-txt span {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
}

.info {
    padding: 100px 0px;
    display: flex;
    align-items: center;
}

.info-img {
    width: 50%;
}

.info-img img {
    width: 500px;
    height: 250px;
}

.info-txt {
    width: 50%;
}

.info-txt h2 {
    font-size: 75px;
    color: #FFFFFF;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 5px;
}

.info-txt p {
    font-size: 18px;
    color: #A7A7A7;
    margin-bottom: 0px;
}

.btn-2 {
    display: inline-block;
    padding: 15px 35px;
    background-color: #DB241B;
    color: #FFFFFF;
    text-transform: uppercase;
    border-radius: 50px;
    transition: .3s;
}

.btn-2:hover {
    background-color: #DB241B;
    transform: scale(1.1);
    box-shadow: 0 0 15px #5a0606;
    text-shadow: 0 0 5px #000000;
}

.sec_ancla {
    /* padding: 80px 0px; */
    /* padding: 20px 0px; */
    background-color: #000000;
}

.ancla_hora p {
    text-align: center;
    color: #000000;
}

.horario {
    padding: 100px 0px;
    background-color: #0d0d0d;
}

.horario-info h2 {
    font-size: 75px;
    color: #FFFFFF;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.horario-txt {
    display: flex;
    justify-content: space-between;
}

.txt {
    color: #FFFFFF;
}

.txt h4 {
    font-size: 20px;
    color: #A7A7A7;
    margin-bottom: 10px;
}

.txt p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.ancla_mapa p {
    color: #000000;
    /* padding-bottom: 20px; */
    /* padding: 0px 0px; */
}

.map {
    /* margin-top: -117px; */
    filter: grayscale(100%) invert(92%) contrast(93%);
}

.footer {
    padding: 100px 0px;
    display: flex;
    justify-content: space-between;
}

.links h4 {
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.links ul li a {
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
}

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

    .menu-2 {
        display: initial;
    }

    .menu-2 .socials {
        display: none;
    }

    .logo-1 {
        width: 100px;
    }

    .logo-2 {
        width: 0;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #181818;
        display: none;
    }

    .menu .navbar ul li {
        width: 100%;
    }

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


    .header-content {
        padding: 20px 20px;
        margin-top: 100px;
    }

    .slider {
        flex-direction: column;
    }

    .slider-txt {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .slider-txt h1 {
        font-size: 35px;
    }

    .slider-txt p {
        font-size: 15px;
    }

    .slider-img {
        width: 100%;
        text-align: center;
    }

    .slider-img img {
        margin-right: 0px;
        width: 300px;
        margin-bottom: 30px;
    }

    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets,.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: -7px;
    }

    .tabs {
        padding: 20px 20px;
    }

    .tabs label {
        margin-top: 50px;
        width: 33%;
        font-size: 14px;
    }

    .product {
        padding: 0px 20px;
    }

    .product-txt {
        padding: 0px 20px;
    }

    .product-txt .price {
        font-size: 15px;
    }

    .product-txt p {
        font-size: 15px;
        text-align: center;
    }

    .info {
        padding: 20px 20px;
        flex-direction: column;
    }

    .info-img {
        width: 100%;
        text-align: center;
    }

    .info-img img {
        width: 350px;
        height: 150px;
        margin-bottom: 15px;
    }

    .info-txt {
        width: 100%;
        text-align: center;
    }

    .info-txt h2 {
        font-size: 50px;
    }

    .info-txt p {
        font-size: 16px;
    }

    .btn-1 {
        display: inline-block;
        padding: 8px 15px;
        margin-bottom: 70px;
        font-size: 15px;
    }

    .horario {
        padding: 20px 20px;
        text-align: center;
    }

    .horario-info h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .horario-txt {
        flex-direction: column;
    }

    .socials {
        justify-content: center;
    }

    .socials {
        padding-bottom: 20px;
    }

    .social img {
        margin: 8px 0 0 0;
    }

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

    .links h4 {
        margin: 20px 20px;
    }
}