@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: #fff;
  font-family: "Poppins", sans-serif;
}

.hidden {
    overflow: hidden;
}
.centrado {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.border-black {
border: 1px solid #000;

}
.swiper-button-prev {
    color: #000;
    top:var(--swiper-navigation-top-offset,70%);
    left: var(--swiper-navigation-sides-offset,0px);
      
}
.swiper-button-next {
    color: #000;
    top:var(--swiper-navigation-top-offset,70%);
    right: var(--swiper-navigation-sides-offset,0px);
}
.swiper-button-prev::after {
    font-size: 30px;
}

.swiper-button-next::after {
    font-size: 30px;
}

.swiper-pagination-bullet {
    background-color: #D3D2D2;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #000;
}

.position-fixed {
    position: fixed;
}

.menu {
    top: 0px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.w-full {
    width: 100%;
}
.gray-color {
    background: #CACACA;
}

.black-color {
background: #000;
}
.section-color {
background: #AEB6FA;
}
.green-color {
    background: #128c7e;
    }

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu-2 {
    margin-left: 100px;
    display: flex;
    align-items: center;
}

.logo-1 {
    width: 0;
}

.logo-2 {
    width: 0px;
}
.logo-3 {
    width: 0px;
}

.socials {
    display: flex;
}

.social {
    margin: 0 10px;
    height: 40px;
    width: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 5px;
}
.pd1 {
    padding: 5px;
}
.pd2 {
    padding: 2px;
}

.social:hover {
    background-color: #EED250;
}

.social img {
    margin: 8px 0 0 10px;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #000;
    display: block;
}

.menu .navbar ul li a:hover {
    color: #fff;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
    height: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.slider {
    display: flex;
    align-items: center;
}

.botones {
    margin-top: 50px;
}

.btn-1 {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #AEB6FA;
    color: #000;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 20px;
    border-radius: 50px;
}

.btn-1:hover {
    background-color: #EED250;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 10px;
}

.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 #EED250;
    color: #FFFFFF;
}

.tabs input[type="radio"]:checked + label + .tab {
    display: block;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    margin: 0 10px;
}

.product-img {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-img span {
    display: inline-block;
    padding: 5px 7px;
    line-height: 15px;
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    border: 2px solid  #EED250;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    width: 100px;
}

.product-img img {
    width: 350px;
    height: 350px;
    object-fit: cover;
}

.product-txt {
    width: 60%;
    text-align: center;

    h3 {
        color: #FFFFFF;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 800;
        margin-bottom: 5px;
        margin-top: 10px;
        display: none;
    }
    p {
        color: #000;
        font-size: 16PX;
        margin-bottom: 15PX;
        display: none;
    }
}

.info {
    padding: 100px 0px;
    display: flex;
    align-items: center;
}

.btn-2 {
    display: inline-block;
    padding: 15px 35px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    min-width: 200px;
}

.btn-2:hover {
    background-color: #EED250;
}

.txt {
    color: #000;
}

.txt h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.txt p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

/* .map {
    filter: grayscale(100%) invert(92%) contrast(93%);
} */

.footer {
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2px;
}

.info-txt {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.info-txt h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}

.info-txt p {
    font-size: 16px;
    margin-bottom: 2rem;
}
.horario {
    padding: 30px;
    text-align: center;
    background-color: #AEB6FA;
}

.horario-info h2 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 15px;
}

.horario-txt {
    flex-direction: column;
}
.mt-20 {
    margin-top: 20px;
}

.slider-txt h1{
    font-size: 1.7rem;
    line-height: 1.7rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.slider-txt p {
    font-size: 16px;
    color: #000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    min-height: 100px;
}

.slider-img {
    width: 100%;
    text-align: center;
}

.slider-img img {
    width: 350px;
    object-fit: cover;
}

.tabs label {
    width: 33%;
    height: 50px;
    order: 1;
    display: block;
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    color: #000;
    font-weight: 700;
    transition: background ease 0.2s;
}

.info-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.info-img {
    width: 100%;
}

.flex-column{
    display: flex;
    flex-direction: column;
}
.just-cont-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.copyright{
    margin-top: 2rem;
    font-size: 0.8rem;
    display: none;
}
.links {
    display: flex;
    flex-direction: column;

    a {color: #000;
    } 
} 
.links h4{
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 10px 0px 25px 0px;
}
.links li {
    margin-bottom: 0.8rem;
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}
.libro-reclamaciones {
    width: 150px; 
}
.map-container {
    padding: 10px;
}
.slider-txt {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.header-content {
    padding: 30px 10px;
    margin-top: 65px;
}

@media(min-width: 768px){
    .header-content {
        padding: 30px;
    }
    .swiper-button-prev {
         top:var(--swiper-navigation-top-offset,70%); 
        left: var(--swiper-navigation-sides-offset,150px); 
    }
    .swiper-button-next {
         top:var(--swiper-navigation-top-offset,70%); 
        right: var(--swiper-navigation-sides-offset,150px);
    }
    .product-img img {
        height: 330px;
    }
    .product-txt {
        width: 35%;
    }
    .slider-txt p {
        min-height: 60px;
    }
}
@media(min-width: 1024px){
    .product {
        flex-direction: row;
    }
    .product-img {
        width: 60%;
    }
    .swiper-button-prev {
        top:var(--swiper-navigation-top-offset,50%); 
       left: var(--swiper-navigation-sides-offset,20px); 
   }
   .swiper-button-next {
        top:var(--swiper-navigation-top-offset,50%); 
       right: var(--swiper-navigation-sides-offset,20px);
   }
    .tabs {
        padding: 50px 0px;
    }
    .product-img img {
        width: 500px;
        height: 380px;
    }
    .product-txt {
        h3 {
            display: block;
        }
        p {
            display: block;
        }
    }
    .header-content {
        margin-top: 100px;
    }
    .slider-txt {
        margin-left: 60px;
        width: 40%;
        text-align: left;
    }
    .libro-reclamaciones {
        width: 200px; 
    }
    .copyright{
        display: block;
    }
    .links h4 {
        text-align: left;
        margin: 25px 0px 10px 0px;
    }
    .links li {
text-align: left;
    }
    .info-img {
        width: 50%;
        text-align: center;
    }
    .info-img img {
        width: 400px;
        height: 270px;
    }
    .tabs label {
        width: 20%;
        height: 70px;
        padding: 20px 0;
    }
    .slider {
        min-height: 500px;
    }
    .slider-img {
        width: 60%;
    }
    
    .slider-img img {
        width: 540px;
        height: 440px;
    }
    .slider-txt p {
        font-size: 18px;
        max-width: 450px;
    }
    .slider-txt h1 {
        font-size: 3rem;
        line-height: 3rem;
    }
    .txt p {
        text-align: left;
    }
    .txt h3 {
        text-align: left;
    }
    .horario {
        padding: 100px 0px;
    }
    
    .horario-info h2 {
        font-size: 3rem;
        line-height: 3rem;
        color: #000;
        text-align: left;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 50px;
    }
    
    .horario-txt {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .info-txt {
        width: 50%;
        margin-top: 0rem;
    }
    
    .info-txt h2 {
        font-size: 3rem;
        line-height: 3rem;
        color: #000;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .info-txt p {
        font-size: 18px;
        color: #000;
        margin-bottom: 3rem;
        text-align: left;
    }

.footer {
        padding: 80px 0px ;
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 5px;
}
.map-container {
    max-width: 1200px;
    padding: 0px;
    margin: 5px auto 0 auto;

}
.txt {
    max-width: 400px;
} 
.navbar {
    height: 80px;
} 
.logo-2 {
    width: 130px;
    padding: 1px;
}
.logo-3 {
    width: 180px;
}
.menu-1 {
    margin-right: 50px;
}
} 
@media(max-width: 991px){

     /* fixear los productos cuando es MOBILE */

    .menu {
        padding: 5px 20px 5px 20px;
        justify-content: space-between;
    }
    .menu-2 {
        display: none;
    }

    .logo-1 {
        width: 50px;
    }
    .menu label {
        display: flex;
        align-items: center;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #CACACA;
        display: none;

    }

    .menu .navbar ul li {
        width: 100%;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .slider {
        flex-direction: column;
    }

    .btn-1 {
        padding: 10px 25px;
        font-size: 14px;
    }

    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets,.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: -7px;
    }

    .info {
        padding: 30px;
        flex-direction: column;
    }

    .btn-1 {
        font-size: 16px;
    }

    .socials {
        justify-content: center;
    }

    .social img {
        margin: 8px 0 0 0;
    }
}