body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

html, body {
  overflow-x: clip !important;
}

html {
  scroll-behavior: smooth;
}

.light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
  }
/* SECCION HERO */
.hero-section {
    background: url('../img/hero-img.webp') center center / cover no-repeat;
    height: 80vh;
    position: relative;
}

.hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.5;
    color: white;
}

.text-rojo {
    color: #FF2124 !important;
}

.text-rojo1 {
  color: #FF2124 !important;
}


.hero-section .btn-danger {
  background-color: #FF2124;
  border: none;
  font-weight: 700;
  padding: 0.6rem 1.8rem;
  font-size: 1.3rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background-color 0.2s ease;

  max-width: 250px;   
  width: 100%;       
  justify-content: center;
}


.hero-section .btn-danger i {
  font-size: 1.2rem;
}

.hero-section .btn-danger:hover {
  background-color: #A50F11;
}


/* SECCION QUIENES SOMOS */
.quienes-somos {
    background-color: #ffffff;
    padding: 80px 0;
    margin: 40px;
}

.quienes-somos h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF2124;
    text-align: center;
}

.quienes-somos p {
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto;
    max-width: 400px;

}

/*PRODUCTOS */
.productos-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px;
}

.card img {
    height: 250px;
    object-fit: contain;
    padding: 1rem;
}

.card-body {
    text-align: center;
    background-color: #FF2124;
}

.custom-swiper-btn {
    color: #FF2124;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
  }
  
  .swiper-button-prev.custom-swiper-btn,
  .swiper-button-next.custom-swiper-btn {
    position: static;
    margin: 0 40px;
  }

  .swiper-slide {
    width: 270px;
    flex-shrink: 0;
  }

  .no-select {
    user-select: none;
  }

  .productos-btn {
    background-color: #A50F11;
    border-radius: 6px;
  }
  
  .productos-btn:hover {
    background-color: #870C0D;
  }
  

  /* Estilo base para la card con hover */
.card-producto {
  position: relative;
  transition: transform 0.3s ease;
}

.card-producto:hover {
  transform: scale(1.01);
}

  
  /*contacto*/
  .contacto-section input,
  .contacto-section textarea {
    border: 1px solid #ccc;
    font-size: 0.95rem;
  }
  
  .contacto-section .form-control:focus {
    box-shadow: none;
    border-color: #FF2124;
  }

  .contacto-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF2124;
    border-radius: 50%;
    font-size: 1rem;
  }
  
  .contacto-section h2{
    font-size: 2.5rem;
  }

  .btn-enviar {
    background-color: #FF2124 !important;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }
  
  .btn-enviar:hover {
    background-color: #A50F11 !important;
    color: white;
  }

  /* ESTILOS RESPONSIVE */
  @media (max-width: 767.98px) {
    .hero-section {
      height: auto;
      padding: 60px 20px 60px 20px;
      text-align: center;
      background-position: top center;
    }
  
    .hero-section h1 {
      font-size: 1.5rem;
      line-height: 1.4;
      text-align: left;
      padding-left: 10px;
    }
  
    .hero-section .btn {
      width: 100%;
      justify-content: center;
    }

    .quienes-somos .text-center {
      margin-bottom: 2rem;
    }

    .quienes-somos h2 {
      font-size: 2.5rem;
    }

    .custom-swiper-btn {
      display: none !important;
    }
  }






  
  
  
  
