/********** Template CSS **********/

/* menu desplegable */
@media screen and (max-width: 400px) {
  .contenedor-productos {
      grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .navbar-toggler {
      display: block;
  }

  .navbar-toggler img {
      width: 30px; /* Ajusta el tamaño de la imagen según tus necesidades */
      height: auto; /* Para mantener la proporción de la imagen */
  }
}
@media (max-width: 767px) {
  /* Aplica estilos solo en dispositivos con un ancho máximo de 767px (celulares) */
  #header-carousel .carousel-item h6 {
      font-size: 15px; /* Puedes ajustar el tamaño de la fuente según lo necesites */
  }
  #header-carousel .carousel-item h1 {
        font-size:45px; /* Puedes ajustar el tamaño de la fuente según lo necesites */
    }
}

.text-uppercase {
  font-family: 'Antonio', sans-serif;
  font-size: 30px;
}

/* Cambia la fuente para los elementos con la clase "display-3" */
.display-3 {
  font-family: 'Antonio', sans-serif;
  font-size: 80px;
}
.fa-phone-alt:before {
  content: "\f879";
  margin-left: 10px;}
.nav-link {
  transition: none;
  margin-right: 30px;
  padding: 25px 0;
  color: #f1efef;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
  font-weight: 500;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
@media (max-width: 767px) {
  .navbar-toggler {
      display: block;
  }

  .navbar-toggler img {
      width: 30px; /* Ajusta el tamaño de la imagen según tus necesidades */
      height: auto; /* Para mantener la proporción de la imagen */
  }

}
.catalogonombre h2 {
  font-family: 'Antonio', sans-serif; /* Reemplaza "TuFuente" con la fuente que desees usar */
  /* Otros estilos para el h2 dentro de .catalogonombre */
  font-size: 35px; /* Tamaño de la fuente */
  color: #00f900 /* Color del texto */
  /* Agrega otros estilos según sea necesario */
}

.producto {
  display: inline-block;
  margin: 20px;
}

.tarjeta {
  width: 200px;
  height: 300px;
  perspective: 1000px;
}

.front,
.back {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  transition: transform 0.5s;
}

.front {
  background-color: #00f900;
}

.back {
  background-color: #ffc107; /* Color de fondo deseado */
  font-family: 'Arial', sans-serif; /* Fuente deseada */
  color: black; /* Color de texto deseado */
  transform: rotateY(180deg);
}

.tarjeta:hover .front {
  transform: rotateY(180deg);
}

.tarjeta:hover .back {
  transform: rotateY(0deg);
}

.contenedor {
  text-align: center;
}

/* Estilos para el botón "Cargar más" */
#cargarMasBtn {
  background-color: #00f900;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

#cargarMasBtn:hover {
  background-color: #00f900;
}
.contenedor-principal {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.catalogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Productos van de izquierda a derecha */
  align-items: flex-start; /* Productos se llenan hacia abajo */
  gap: 20px; /* Espacio entre los productos */
  margin-top: 20px; /* Ajusta el margen superior según tu diseño */
}
.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* Ajusta el margen superior según tu diseño */
}

#search-input {
  flex: 1;
  border: none;
  padding: 8px;
  border-radius: 4px;
  outline: none;
}

#search-button {
  background-color: #00f900;
  color: BLACK;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  outline: none;
}

#search-button:hover {
  background-color: #785ce9;
}
h1, h2, h3, h4, h5, h6, p, a, input, textarea, ul {
  margin: 0;
  color: #00f900;

}
ul{
  list-style-type: none;
}
a{
  text-decoration: none;
}

.catalogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
  }
  
.producto {
  
    height: 300px;

    width: calc(33.33% - 20px); /* Ancho de cada producto, ajusta según tus necesidades */
    display: flex;
    flex-direction: column;
  }
  
.tarjeta {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
  }
  
  .front,
  .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s;
  }
  
  .front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotateY(0deg);
  }
  .mb-5 {
    margin-bottom: 3rem !important;
    background-color: black;
    box-sizing: border-box;
}
  
  .back {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotateY(180deg);
  }
  
  .tarjeta:hover .front {
    transform: rotateY(180deg);
  }
  
  .tarjeta:hover .back {
    transform: rotateY(0deg);
  }
  
  .img {
    max-width: 100%;
    height: auto;
  }
  
  h2 {
    margin: 10px 0;
  }
  
  p {
    text-align: justify;
  }
.menu {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-color: #00f900;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .menu li {
    margin-bottom: 10px;
  }
  
  .menu a {
    text-decoration: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    background-color: #006400;
    transition: background-color 0.3s;
  }
  
  .menu a:hover {
    background-color: #004000;
  }
  
  .catalogo {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .categoria {
    width: 100%;
    display: none;
  }
  
  .categoria.activo {
    display: block;
  }
  
  .categoria h3 {
    font-size: 24px;
    margin: 0;
    padding: 10px;
    background-color: #008000;
    border-radius: 5px 5px 0 0;
  }
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: green;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .whatsapp-icon img {
    width: 50%;
  }
  .text-secondary {
    color: black !important;
}
  
  .whatsapp-icon:hover {
    transform: scale(1.1);
  }
.nav-link {
    color: #00f900;
}
.text-primary {
    color: #13d851 !important;
}
.bg-light {
    background-color: #000000 !important;
}
.bg-white {
    background-color: #000000 !important;
}
.catalogo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .producto {
    width: 300px;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
  }
  
  .producto h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .producto img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .producto p {
    font-size: 14px;
  }
  
  .girando {
    animation: girarAnimacion 1s;
  }
  
  @keyframes girarAnimacion {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
:root {
    --primary: #D81324;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    background-color: #00f900;
    border-color: #00f900;
    color: #000000;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}
.catalogonombre {
    text-align: center;
    background-color: black;
  
}
.catalogocambiar {
  font-family: 'Antonio', sans-serif;

}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #f1efef;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #00f900;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
        color : #00f900;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #000000;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #00f900;
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}







/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/carousel-bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.back p {
  color: black; /* Cambia el color del texto a negro */
}
.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}


.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* Resto de los estilos globales */

/* Estilos para tamaños de pantalla pequeños (responsive) */
@media screen and (max-width: 768px) {
  /* Estilos para ajustar elementos en pantallas pequeñas */
}

/* Estilos para tamaños de pantalla medianos (responsive) */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  /* Estilos para ajustar elementos en pantallas medianas */
}

/* Estilos para tamaños de pantalla grandes (responsive) */
@media screen and (min-width: 1201px) {
  /* Estilos para ajustar elementos en pantallas grandes */
}
/*** MEDIA QUERIES ***/

@media screen and (max-width: 850px) {
    .contenedor-productos {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 675px) {
    .contenedor-productos {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 600px) {

    .wrapper {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    aside {
        position: fixed;
        z-index: 9;
        background-color: var(--clr-main);
        left: 0;
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .75);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: .2s;
    }

    .aside-visible {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .boton-menu.active::before,
    .boton-menu.active::after {
        display: none;
    }

    main {
        margin: 1rem;
        margin-top: 0;
        padding: 2rem;
    }

    .contenedor-productos {
        grid-template-columns: 1fr 1fr;
    }

    .header-mobile {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-mobile .logo {
        color: var(--clr-gray);
    }

    .open-menu, .close-menu {
        background-color: transparent;
        color: var(--clr-gray);
        border: 0;
        font-size: 2rem;
        cursor: pointer;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .carrito-producto {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: .5rem;
    }

    .carrito-producto-subtotal {
        display: none;
    }

    .carrito-acciones {
        flex-wrap: wrap;
        row-gap: 1rem;
    }
    

}

.producto h2 {
  color: BLACK;
  
}

@media screen and (max-width: 400px) {
    .contenedor-productos {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .navbar-toggler {
        display: block;
    }
  
    .navbar-toggler img {
        width: 30px; /* Ajusta el tamaño de la imagen según tus necesidades */
        height: auto; /* Para mantener la proporción de la imagen */
    }
  }