/* latin */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/oswald/v53/TK3IWkUHHAIjg75cFRf3bXL8LICs1_Fv40pKlN4NNSeSASz7FmlWHYjMdZwl.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlFd2JQEk.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@600&display=swap');
/*
font-family: 'Oswald', sans-serif;
font-family: 'Poppins', sans-serif;
*/
.glow-on-hover {
  width: 220px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #0000FF, #e1e1e1, #FF0000, #e2e2e2, #0000FF, #e1e1e1, #FF0000, #e2e2e2, #0000FF, #e1e1e1, #FF0000, #e2e2e2);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .4s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}


.button3 {
    position: relative;
    border: none;
    background: transparent;
    --stroke-color: #00000094;
    --ani-color: rgba(95, 3, 244, 0);
    --color-gar: linear-gradient(100deg, #000000,#bc00ca,#d2d2d2,#000000);
    letter-spacing: 3px;
    font-size: 2em;
    font-family: "Arial";
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--stroke-color);
    cursor: pointer;
  }
  
  .front-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    background: var(--color-gar);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200%;
    overflow: hidden;
    transition: all 1s;
    animation: 8s ani infinite;
    border-bottom: 2px solid transparent;
  }
  
  .button3 .front-text {
    width: 100%;
    border-bottom: 2px solid #ffffff00;
    -webkit-text-stroke: 1px var(--ani-color);
  }
  
  @keyframes ani {
    0% {
      background-position: 0%;
    }
  
    50% {
      background-position: 400%;
    }
  
    100% {
      background-position: 0%;
    }
  }
  



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: none;
    list-style: none;
}

body{
    font-family: 'Poppins', sans-serif;
}

img{
    max-width: 100%;
    max-height: 50%;
}

.container2{
    max-width: 1200px;
    margin: 0 auto;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
}

.container > h1{
    font-size: 5em;
    text-align: center;
    padding: 10px;
}
.container > p{
    font-size: 1.2em;
    text-align: center;
    padding: 10px;
}

#carouselImages{
    max-width: 100%;
    margin: auto;
}

.header{
    display: flex;
    align-items: center;
    min-height: 80vh;
    background-color: #f5f5f5;
    padding: 70px 0;
}

.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    text-transform: uppercase;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #111111;
    display: block;
}

#menu{
    display: none;
}

.menu-icono{
    width: 25px;
}

.menu label{
    cursor: pointer;
    display: none;
}

.submenu{
    position: relative;
}

.submenu #carrito{
    display: none;
}

.submenu:hover #carrito{
    display: block;
    position: absolute;
    right: 0;
    backdrop-filter: blur(10px);
    top: 100%;
    z-index: 1;
    background-color: #4E485076;
    padding: 20px;
    min-width: 400px;
}

table{
    width: 100%;
}

th, td{
    color: #ffffff;
}

.borrar{
    background-color: #111111;
    border-radius: 50%;
    padding: 5px 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 0 00px;
}

.header-img{
    flex-basis: 43%;
    text-align: center;
}

.header-txt{
    flex-basis: 50%;
    text-align: center;
}

.header-content2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 0 00px;
}

.header-img2{
    flex-basis: 15%;
    margin-bottom: 20px;
    background-size: cover; /* Ajusta el tamaño de fondo para cubrir el contenedor */
    background-position: center; /* Centra la imagen en el contenedor */
}

.header-txt2{   
    flex-basis: 55%;
}

.header-txt2 > h2{   
    font-size: 45px;
}

.header-txt2 > p{   
    margin-bottom: 30px;
    font-size: 25px;
}

.header-txt h1{
    font-size: 90px;
    text-transform: uppercase;
    line-height: 1;
    color: #000000;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
}

.header-txt p{
    color: #000000;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.carousel-img {
    max-width: 100%; /* Establece el ancho máximo */
    max-height: 300px; /* Establece la altura máxima */
    object-fit: contain; /* Mantiene la relación de aspecto y cubre completamente el contenedor */
}


.carousel-control i {
    color: gold;
    font-size: 40px;
}


.btn-1{
    display: inline-block;
    padding: 11px 25px;
    background-color: #111111;
    color: #ffffff;
    border-radius: 5px;
}

.ar2 > h2,p{
    padding-left: 0%;
}

.ar2 > h2{
    font-size: 45px;
    padding-top: 5%;
}

.ar2 > p{
    font-size: 20px;
}
.ar2 > .desc > p{
    padding-top: 10px;
    padding-left: 5%;
    font-size: 18px;
}
.ofert{
    padding: 20px 0 0 0;
    display: flex;
    justify-content: space-between;
}

.ofert-1{
    display: flex;
    align-items: center;
    flex-basis: calc(33.3% - 15px);
    padding: 35px;
}

.carta{
    border-radius: 30px;
    background: #f5f5f5;
    box-shadow: 15px 15px 30px #bebebe,
               -15px -15px 30px #ffffff;
}

.ofert-img{
    flex-basis: 50%;
    margin-right: 15px;
}
.icon-img{
    flex-basis: 15%;
}

.ofert-img img{
    width: 250px;
}

.ofert-txt{
    flex-basis: 50%;
    text-align: cente;
}

.ofert-txt h3{
    color: #111111;
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.d-grid > .btn-2{
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 19px;
}

.d-grid > .btn-2-o{
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 19px;
}

.btn-2{
    display: inline-block;
    padding: 7px 10px;
    background-color: #111111;
    color:#ffffff;
    border-radius: 5px;
    font-size: 15px;
    margin: 0 30px 0 30px;
}

.btn-2-o{
    display: inline-block;
    padding: 7px 10px;
    background-color: #ffffff;
    color: #111111;
    border-radius: 5px;
    font-size: 15px;
    margin: 0 30px 0 30px;
}

.products{
    padding: 50px 0;
    text-align: center;
}

.products h2{
    color: #111111;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.product-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

#imgprod{
    border-radius: 15px;
}

.imgprod{
    border-radius: 15px;
}

.product {
    border-radius: 15px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.333);
    transition: transform 0.2s ease-in-out;
}

.product:hover {
    transform: scale(1.1); 
}


.product-txt{
    margin-bottom: -35%;
    text-align: center;
}
.product-txt > .des{
    margin-left: 0%;
}

.product img{
    width: 250px;
    height: 370px;
    margin-bottom: 20px;
}

.product h3{
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product p, .precio{
    font-size: 16px;
    color: #111111;
    margin-bottom: 15px;
}

.precio{
    font-weight: 800;
}


.card__counter {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 5px;
    background: #e2e2e2;
    border-radius: 50px;
  }
  
  .card__counter-score, .card__btn {
    font-weight: 700;
    font-size: 25px;
    color: var(--main-color);
  }
  .card__counter-score {
        border: none;
        background: none;
        -webkit-appearance: none;
        -moz-appearance: textfield;
        appearance: none;
        width: 45px; /* Ancho ajustable según tus necesidades */
        text-align: center;
    }
  .card__btn {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: none;
    background: transparent;
  }
  
  .card__btn-plus {
    background: var(--bg-color);
  }

.icons{
    padding: 50px 0 100px 0;
    display: flex;
    justify-content: space-between;
}

.icon-1{
    flex-basis: calc(33.3% - 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background-color: #f5f5f5;
}

.icon-txt h3{
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.icon-txt p{
    font-size: 16px;
    color: #111111;
    padding-left: 5%;
}


.numero{
    margin-left: 0%;
}

.precio{
    font-size: 3em;
    margin-bottom: 3%;
}
.precio > small{
    font-size: 0.5em;
}

.row {
    display: flex;
    flex-wrap: wrap;

  }
  
  .centrar{
    align-items: center;
  }
  
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .order-md-1 {
    order: -1;
  }
  
  .order-md-2 {
    order: 2;
  }


  /* Estilos del botón de pago */
    .checkout-btn {
        font-family: 'Oswald', sans-serif;
        width: 100%;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        display: inline-block;
        padding: 0px 10px;
        font-size: 23px;
        font-weight:lighter;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        border: 2px solid #3498db;
        color: #ffffff;
        background-color: rgb(0,158,227);
        border-radius: 30px;
        transition: background-color 0.3s, color 0.3s, border 0.3s;
        
    }

    .checkout-btn:hover {
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    }

    /* Estilos del contenedor */
    .col-12 {
        text-align: center;
        margin-top: 20px;
    }


.blog{
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.blog-1{
    flex-basis: calc(33.3% - 30px);
}

.blog-1 img{
    margin-bottom: 20px;
}

.blog-1 h3{
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-1 p{
    padding-left: 5%;
    font-size: 16px;
    color: #111111;
}

#mapa{
    width: 100%; 
    height:400px;
    border-radius: 30px;
}

#productoimg{
    width: 100%; 
    height:100%;
}

.ar1 {
    text-align: center;
    padding: 5%;
}
.ar1 > h4 {
    color: #333;
    font-size: 24px;
}

.ar3 {
    text-align: center;
    padding: 0%;
}

.col-md-6 {
    max-width: 50%;
}
.footer{
    padding: 50px 0;
    background-color: #111111;
}

.footer-content{
    margin-top: -7%;
}

.link h3{
    font-size: 18px;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.link a{
    font-size: 16px;
    color: #dcdcdc;
    display: block;
    margin-bottom: 10px;

}




@media (max-width:991px){
    .menu{
        padding: 20px;
    }

    .menu label{
        display: initial;
    }

    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f9f9f9;
        display: none;
    }

    .menu .navbar ul li{
        width: 100%;
    }

    .menu .navbar ul li a{
        color: #000000;
        z-index: 3;
    }

    #menu:checked ~ .navbar {
        display: initial;
        z-index: 10;
    }

    .col-md-6 {
        flex: content;
        max-width: 100%;
    }

    .container{
        margin-top: 1%;
    }

    .container > h1{
        font-size: 3em;
        text-align: center;
        padding: 10px;
    }

    .container > p{
        font-size: 1.1em;
        text-align: center;
        padding: 10px;
    }

    .precio{
        font-size: 2.2em;
    }
    .precio > small{
        font-size: 0.5em;
    }

    .card__counter {
        gap: 10px;
        padding: 5px 1px 5px 1px;
    }

    .card__counter-score, .card__btn {
        font-size: 20px;
    }

    .card__counter-score {
        width: 20px; /* Ancho ajustable según tus necesidades */   
    }

    .carousel-img {
        max-width: 100%; /* Establece el ancho máximo */
        max-height: 250px; /* Establece la altura máxima */
        object-fit:initial; /* Mantiene la relación de aspecto y cubre completamente el contenedor */
    }

    .logo{
        display: none;
    }

    .submenu:hover #carrito{
        min-width: 100%;
    }

    .header{
        min-height: 0vh;
    }

    .header-content{
        padding: 40px 0px 450px 0px;
        flex-direction: column;
    }
    .header-img{
        max-width: 60%;
    }

    .header-txt{
        flex-basis: 100%;
        text-align: center;
    }

    .header-txt h1{
        font-size: 60px;
    }

    img {
        max-width: 100%;
        max-height: 100%;
    }

    .col-6 {
        margin-top: 15px;
    }

    .col-md-6 {
        flex:content;
        max-width: 100%;
        margin-top: -3%;
    }

    #carouselImages{
        max-width: 100%;
        margin: auto;
    }

    .numero{
        margin-right: 15%;
        margin-left: 5%;
    }
    .ar1{
        text-align: center;
        margin: 5%;
    }
    .ar1 > p{
        color: #666;
    }
    .ar1 > h4 {
        color: #333;
        font-size: 22px;
    }
    .ar2 > h2,p{
        padding-left: 0%;
    }
    .ar2 > h2 {
        font-size: 40px;
        padding-top: 5%;
    }
    .ar2 > p {
        font-size: 18px;
    }
    .ar2 > .desc > p{
        padding-top: 10px;
        padding-left: 5%;
        font-size: 18px;
    }
    .ar3{
        margin: 5%;
    }
    /* Estilos del botón de pago */
    .checkout-btn {
        font-family: 'Oswald', sans-serif;
        width: 100%;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        display: inline-block;
        padding: 0px 10px;
        font-size: 16px;
        font-weight:lighter;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        border: 2px solid #3498db;
        color: #ffffff;
        background-color: rgb(0,158,227);
        border-radius: 30px;
        transition: background-color 0.3s, color 0.3s, border 0.3s;
        
    }

    .checkout-btn:hover {
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    }

    /* Estilos del contenedor */
    .col-12 {
        text-align: center;
        margin-top: 20px;
    }

    .ofert{
        padding: 30px 30px 0 30px;
        flex-direction: column;
    }

    .ofert-1{
        margin-bottom: 30px;
    }

    .products{
        padding: 0 30px 30px 30px;
    }

    .product-txt{
        margin-bottom: 0%;
    }

    .products h2{
        margin-bottom: 30px;
    }

    .product-content{
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .product img{
        width: 200px;
        height: 220px;
    }
 
    .btn-2{
        margin: 0 5px 0 5px;
    }

    .icons{
        padding: 30px;
        flex-direction: column;
    }

    .icon-1{
        margin-bottom: 30px;
        padding: 15px;
    }

    .blog{
        padding: 0 30px 30px 30px;
        flex-direction: column;
    }

    .blog-1{
        margin-bottom: 30px;
    }

    #mapa{
        width: 100%; 
        height:250px;
        border-radius: 30px;
    }

    .footer{
        padding: 30px;
        padding-left: 7%;
    }

    .footer-content{
        flex-direction: column;
        text-align: center;
    }
}

@media (max-height:450px){
    .col-md-6 {
        flex: none;
        max-width: 50%;
    }
    .ar1{
        padding: 10%;
    }
    .ar2 > h2,p{
        padding-left: 0%;
    }
    .ar2 > h2 {
        font-size: 40px;
        padding-top: 5%;
    }
    .ar2 > p {
        font-size: 18px;
    }
    .ar2 > .desc > p{
        padding-top: 10px;
        padding-left: 5%;
        font-size: 18px;
    }
    .numero{
        margin-right: 15%;
        margin-left: 5%;
    }
    .container{
        margin-top: 1%;
    }
    #carouselImages{
        max-width: 85%;
        margin: auto;
    }
}
    @media only screen and (min-width: 200px){
        .paypal-button-container {
        min-width: 150px;
        max-width: 150px;
    }
}
