:root {
  --fuentePrincipal: 'Merienda', cursive;
  --colorPrincipal1: #cf2819;
  --colorPrincipal2: #192bcf;
  --colorFondo: rgb(255, 255, 255);
  --colorBlanco: #ffffff;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-size: 1.6rem;
  font-family: var(--fuentePrincipal);
  background-color: var(--colorFondo);
  line-height: 1.5;
}

/**GLOBALES**/

.contenedor {
  width: min(90%, 120rem);
  margin: 0 auto;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}


/**PROMOCION SUPERIOR**/

.promocion-superior {
  width: auto;
  background-repeat: no-repeat;
}

.logo-fondo {
  background-color: #0b0283;
  display: flex;
  padding: 0 3rem;
  align-items: center;
  
}

.logo {
  margin: auto;
}

.menu-izquierdo {
  display: flex;
  column-gap: 0.4rem;
}
@media (min-width:768px ) { 
  .menu-izquierdo {
    display: flex;
    column-gap: 2rem;
  }
 }

.menu-izquierdo a {
  font-size: 1rem;
  color: var(--colorBlanco);
  text-decoration: none;
}

@media (min-width: 768px) {
  .menu-izquierdo a {
    font-size: 2rem;
    font-weight: 700;
  }
}


.logo h1 {
  font-family: 'Times New Roman', Times, serif;
  display: inline-block;
  margin: 0;
  padding: 1rem 0;
  color: var(--colorBlanco);
  cursor: pointer;
  font-size: 1.5rem;
  border: 0.3rem solid var(--colorPrincipal1);
  text-transform: uppercase;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {

  .logo h1 {
    display: inline-block;
    font-family: var(--fuentePrincipal);
    margin: 0;
    padding: 1rem 0;
    color: var(--colorBlanco);
    cursor: pointer;
    font-size: 5.5rem;
    border: 1rem solid var(--colorPrincipal1);
    padding: 10px;
    text-transform: uppercase;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
  }
}

/** FIN PROMOCION SUPERIOR**/

/**NAVEGADOR**/








/**FIN NAVEGADOR**/

/**INICIO SWIPER SLIDER**/

/**TAMANO DEL SLIDER uno**/

.swiper-hero .swiper-button-prev,
.swiper-hero .swiper-button-next {
  --swiper-navigation-size: 20px;
  background-color: white;
  height: 70px;
  width: 50px;
  margin-top: -35px;
  opacity: 0;
  transition: opacity 0.3s;
}

.swiper-hero .swiper-button-prev {
  border-radius: 0 65px 65px 0;
  left: -10px;
}

.swiper-hero .swiper-button-next {
  border-radius: 65px 0 0 65px;
  right: -10px;
}

.swiper-hero:hover .swiper-button-prev,
.swiper-hero:hover .swiper-button-next {
  opacity: 1;
}

.swiper-hero .swiper-pagination {
  --swiper-pagination-color: white;
  --swiper-pagination-bullet-size: 6px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.25;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 2px;
}

.swiper-hero .swiper-pagination-bullet {
  box-shadow: inset 0 0 0 1px #fff;
}

.swiper-hero .swiper-pagination-bullet-active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

/**SWIPPER  HERO**/
/**FIN SWIPER SLIDER**/

/**INCIO MAIN**/

.main h2, .section-cintas h2 {
  text-align: center;
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: 900;
}

@media (min-width: 768px) {
  .main h2, .section-cintas h2 {
    text-align: center;
    margin: 5rem 0;
    font-size: 4rem;
  }
}

/**FIN MAIN**/

/**PRODUCTOS**/

.productos {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 2rem;
}

@media (min-width:768px) {
  .productos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.producto {
  background-color: var(--colorBlanco);
  overflow: hidden;
  padding-bottom: 3rem;
}

.producto h3 {
  margin: 0;
  font-size: 1.7rem;
}

.producto p {
  margin: 0;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .producto h3 {
    font-size: 3rem;
  }

  .producto p {
    font-size: 2rem;
  }
}


.boton {
  display: inline;
  background-color: var(--colorPrincipal1);
  padding: 0.4rem 3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom-left-radius: 2rem;
  border-top-right-radius: 2rem;
  color: var(--colorBlanco);
  text-decoration: none;
  transition: 0.5s;
}

.boton:hover {
  background-color: var(--colorPrincipal2);
  padding: 0.4rem 4rem;
  font-size: 1.51rem;
}

@media (min-width: 768px) {
  .boton {
    background-color: var(--colorPrincipal1);
    padding: 0.4rem 5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size:1.8rem;
    transition: 0.5s;
  }

  .boton:hover {
    background-color: var(--colorPrincipal2);
    padding: 0.4rem 6rem;
    font-size: 2rem;

  }
}


/**FIN DE MEDAI QUERI**/
/**SWIPPER - PRODUCTOS**/
.swiper-productos {
  width: 100%;
  max-width: 1600px;
  margin-bottom: 1rem;
 
}

.producto-slider{
  background-color: #fff;
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.producto-slider img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Centrar la imagen horizontalmente */
  max-height: 100%; /* Asegurar que la imagen no desborde verticalmente */
}

.producto-slider h3,
.producto-slider p {
  margin: 10px 0; /* Agregar espacio entre elementos */
}


.swiper-productos img {
  width: 200px;
  height: 200px;
  


}

@media (min-width: 768px) {
  .swiper-productos img {
    width: 300px;
    height: 300px;
    
  }
}

@media (min-width: 1024px) {
  .swiper-productos img {
    height: auto;
  
  }
}
/**FIN DE MEDAI QUERI**/

.swiper-productos .swiper-button-prev,
.swiper-productos .swiper-button-next {
  --swiper-navigation-size: 20px;
  background-color: white;
  height: 70px;
  width: 50px;
  margin-top: -35px;

  opacity: 0;
  transition: opacity 0.3s;
}

.swiper-productos .swiper-button-prev {
  border-radius: 0 65px 65px 0;
  left: -10px;
}
.swiper-productos .swiper-button-next {
  border-radius: 65px 0 0 65px;
  right: -10px;
}

.swiper-productos:hover .swiper-button-prev,
.swiper-productos:hover .swiper-button-next {
  opacity: 1;
}

.swiper-productos .swiper-pagination {
  display: none;
  --swiper-pagination-color: white;
  --swiper-pagination-bullet-size: 6px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.25;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 2px;
}

.swiper-productos .swiper-pagination-bullet {
  box-shadow: inset 0 0 0 1px #fff;
}

.swiper-productos .swiper-pagination-bullet-active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

/**SWIPPER FINAL**/

/**CATEGORIAS CLIENTES**/

.categoria-clientes{
  margin-bottom: 4rem;
}

.equipo-titulo {
  text-align: center;
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: 900;
}

@media (min-width: 768px) {
  .equipo-titulo {
    text-align: center;
    margin: 5rem 0;
    font-size: 4rem;
  }
}

.equipo{
  display: grid;
  grid-template-columns: repeat(1,1fr);
}
@media (min-width: 768px) { 
  .equipo{
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }
 }


/**FINAL CLIENTES**/

/**CATEGORIAS PRODUCTOS**/

.categoria-productos{
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.categoria-productos img{
  cursor: pointer;
}



@media (min-width: 768px) { 
  .categoria-productos{
    display: grid;
    grid-template-columns: repeat(4,1fr);
  }
 }

 /**SWIPPER -CINTAS**/
.swiper-cintas {
  width: 100%;
  max-width: 1600px;
  margin-bottom: 1rem;
 
}

.producto-slider{
  background-color: #fff;
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.producto-slider img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Centrar la imagen horizontalmente */
  max-height: 100%; /* Asegurar que la imagen no desborde verticalmente */
}

.producto-slider h3,
.producto-slider p {
  margin: 10px 0; /* Agregar espacio entre elementos */
}


.swiper-cintas img {
  width: 200px;
  height: 200px;
  


}

@media (min-width: 768px) {
  .swiper-cintas img {
    width: 300px;
    height: 300px;
    
  }
}

@media (min-width: 1024px) {
  .swiper-cintas img {
    height: auto;
  
  }
}


.swiper-cintas .swiper-button-prev,
.swiper-cintas .swiper-button-next {
  --swiper-navigation-size: 20px;
  background-color: white;
  height: 70px;
  width: 50px;
  margin-top: -35px;

  opacity: 0;
  transition: opacity 0.3s;
}

.swiper-cintas .swiper-button-prev {
  border-radius: 0 65px 65px 0;
  left: -10px;
}
.swiper-cintas .swiper-button-next {
  border-radius: 65px 0 0 65px;
  right: -10px;
}

.swiper-cintas:hover .swiper-button-prev,
.swiper-cintas:hover .swiper-button-next {
  opacity: 1;
}

.swiper-cintas .swiper-pagination {
  display: none;
  --swiper-pagination-color: white;
  --swiper-pagination-bullet-size: 6px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.25;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 2px;
}

.swiper-cintas .swiper-pagination-bullet {
  box-shadow: inset 0 0 0 1px #fff;
}

.swiper-cintas .swiper-pagination-bullet-active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

/**SWIPPER CINTAS FINAL**/

#whatsapp a {
  background: none;
  position: fixed;
  top: 80%;
  width: 110px;
  right: 15px;
  z-index: 9999;
  transition: 0.5s;
}

#whatsapp a:hover {
  
  position: fixed;
  top: 80%;
  width: 113px;
  right: 15px;
  z-index: 9999;
}

/**WHATSAPP**/
@media (max-width: 768px) { 
  #whatsapp a {
      background: none;
      position: fixed;
      top: 88%;
      width: 90px;
      right: 15px;
  }

}

/**FIN WHATSAPP**/

/**FOOTER**/

.footer{
  background-color: #0b0283;
  display: flex;
  flex-direction: column;
}

.footer-superior{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  color: white;
  padding: 0 2rem;
}

@media (min-width: 768px) { 
  .footer-superior{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    color: white;
    padding: 0 2rem;
  }
 }

.footer-ezquierda{
  display: flex;
  flex-direction: column;
  color: var(--colorBlanco);
}

.footer-ezquierda a{
  text-decoration: none;
  font-size: 2rem;
  color: var(--colorBlanco);
  font-weight: 100;
  transition: 0.5s;
  padding-top: 1rem;
}

.footer-ezquierda a:hover{
  font-size:2.1rem ;
}

.footer-ezquierda h3, .footer-centro h3{
  font-weight: 800;
}

.footer-pie{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  text-align: center;
  color: var(--colorBlanco);
  background-color: #000;
  padding: 0;
}

.footer-pie__img{
  order: 2;
}

.sociales{
  order: 1;
  gap: 2rem;
  margin-top:2rem
}

@media (min-width: 768px) { 
  .footer-pie{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: var(--colorBlanco);
    padding: 1rem 15rem 1rem 2rem;
  }
  .footer-pie__img{
    order: 1;
  }
  
  .sociales{
    order: 2;
    margin-top:0rem
  }
 }

 .footer-pie .mapa{
  width:20px;
  height: 20px;
 }

 @media (min-width: 769px) { 
  .footer-pie .mapa{
    width:35px;
    height: 35px;
    
   }
  }

.footer-pie p{
  font-size: 1rem;
  
}
@media (min-width: 768px) { 
  .footer-pie p{
    font-size: 2rem;
  }
 }

.footer-pie__img{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
}

.footer-pie .sociales{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) { 
  .footer-pie .sociales{
    display: flex;
  }
  
 }

.social{
  width: 30px;
  height: 30px;
} 
@media (min-width: 768px) { 
  .social{
    width: 44px;
    height: 44px;
  } 
 }

 /**ESTILOS DE BOOSTRAP**/



.logojoel{
  background-color: var(--colorBlanco);
  border-radius: 20%;
  height: 50px;
  width:50px;
}

@media (min-width: 768px) { 
  .logojoel{
    background-color: var(--colorBlanco);
    border-radius: 20%;
    height: 150px;
    width:150px;
  }
 }

 .tamano-a{
  font-size: 2rem;
  color:red;
  text-decoration: none;
 }

 .tamano-a:hover{
  color: blue;
 }

 .tamano-a:active {
  color: white; /* Reemplaza 'yourColor' con el color deseado */
}

.nav-link:focus{
  color: #fff;
}

@media (min-width: 768px) { 
  .tamano-a{
    font-size: 2rem;
    color:red;
   }
  
 }

 nav{
  background-color: var(--colorBlanco);
  color: white;
 }

 .navegador-b{
  margin:0 1rem;
  padding: 0rem;
 }

 .fondo-navegador{
  background-color: #fffffe;
  
 }

 .navegador-uno li{
   margin-left: 0rem;
 }

 @media (min-width: 768px) { 
  .navegador-uno li{
    margin-left: 9rem;
  }
  }

.navbar-toggler{
    border:white;
    color: white;
 }
