@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

a {
  text-decoration: none;
}

.primario {
  color: black;
}

.secundario {
  color: #F4DF15;
}

.terciario {
  color: white;
}

.titulo-principal {
  font-size: 55px;
  color: black;
  font-weight: 900;
  margin-bottom: 0px;
}

.titulo-principal-dos {
  font-size: 55px;
  color: #F4DF15;
  font-weight: 900;
  margin-bottom: 0px;
}

.sub-titulo {
  font-size: 40px;
  color: black;
  font-weight: 800;
  margin-bottom: 0px;
}

.sub-titulo-dos {
  font-size: 40px;
  color: #F4DF15;
  font-weight: 800;
  margin-bottom: 0px;
}

.sub-titulo-tres {
  font-size: 40px;
  color: white;
  font-weight: 800;
  margin-bottom: 0px;
}

.bajada {
  font-size: 25px;
  color: rgb(138, 138, 138);
  font-weight: 400;
}

.titulo-resaltado {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.titulo-resaltado::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 20px;
  width: 100%;
  background-color: #F4DF15;
  z-index: -1;
}

.titulo-resaltado-dos {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.titulo-resaltado-dos::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 20px;
  width: 100%;
  background-color: rgb(167, 126, 14);
  z-index: -1;
}

.cont-titulos-centrados {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.titulo-slider {
  font-weight: 900;
  font-size: 60px;
}
@media (max-width: 1000px) {
  .titulo-slider {
    font-size: 40px;
  }
}
@media (max-width: 700px) {
  .titulo-slider {
    font-size: 32px;
  }
}

.boton-uno {
  background-color: #F4DF15;
  color: black;
  transition: 0.3s;
}
.boton-uno:hover {
  background-color: white;
  color: black;
}

.boton-dos {
  background-color: #F4DF15;
  color: black;
  transition: 0.3s;
}
.boton-dos:hover {
  background-color: black;
  color: #F4DF15;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.89);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 85px;
}

.nav-link {
  color: white;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.nav-link:hover {
  color: #F4DF15;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
}

li {
  list-style: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 2px;
  width: 0%;
  background-color: #F4DF15;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28244, 223, 21, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  border: 1px solid #F4DF15;
}

.footer-background {
  background-color: #181818;
}

.derechos {
  background-color: #F4DF15;
}

.footer-icon {
  color: #F4DF15;
  font-size: 25px;
  margin-right: 5px;
}

.tusitio {
  color: black;
  transition: 0.3s;
}
.tusitio:hover {
  color: rgb(65, 65, 65);
}

.quienes-somos {
  background-color: rgb(228, 228, 228);
  padding: 100px 0px;
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
}

.product-img-wrapper img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.product-card:hover img, .product-card:focus img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease;
}

.product-card:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay a {
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card:hover .hover-overlay a, .product-card:focus .hover-overlay a {
  transform: translateY(0);
  opacity: 1;
}

.flex-c {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cta-cont {
  background-color: #181818;
  background-image: url("../img/fondo-01.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  padding: 120px 0px;
}

.fabrica {
  border-radius: 50px;
}

section {
  overflow: hidden;
}

.escribinos {
  color: black;
  transition: 0.3s;
}
.escribinos:hover {
  color: #F4DF15;
}

.footer-redes {
  color: rgb(255, 255, 255);
  transition: 0.3s;
}
.footer-redes:hover {
  color: #F4DF15;
}

.whatsapp-button {
  position: fixed;
  bottom: 55px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 38px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  animation: pulse-shadow 1.5s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-button:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: white;
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.carousel-img-wrapper {
  position: relative;
}

.carousel-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); /* filtro oscuro */
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
}

.centered-caption {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.centered-caption h5,
.centered-caption p {
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.carousel-img-wrapper {
  position: relative;
  height: 93vh; /* <--- Cambiá este valor según lo que necesites */
  overflow: hidden;
}

.carousel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* para que la imagen se recorte sin deformarse */
}

@media (max-width: 768px) {
  .carousel-img-wrapper {
    height: 300px;
  }
}

/*# sourceMappingURL=style.css.map */
