:root {
  --primario: ;
  --sombra-card: rgba() 0px 2px 8px 8px;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-red {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* imagen */
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* overlay rojo */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(120, 0, 0, 0.9); /* intensidad del rojo */
  z-index: 2;
}

/* contenido */
.hero-content {
  position: relative;
  z-index: 3;
  padding-left: 80px;
}

/* texto */
.hero-content h1 {
  color: white;
  font-size: 60px;
  letter-spacing: 10px;
  line-height: 1.2;
  font-weight: bold;
}

/* SEGUNDA SECTION */
/* SEGUNDA SECTION */
/* SEGUNDA SECTION */

.info-section {
  display: flex;
  align-items: center; /* centra vertical */
  justify-content: center;
  gap: 80px;
  padding: 80px 10%;
  background: #f5f5f5;
}

/* TEXTO */
.info-text {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.info-text p {
  margin-bottom: 20px;
}

.info-text ul {
  padding-left: 20px;
}

.info-text li {
  margin-bottom: 10px;
}

/* IMAGEN */
.info-image img {
  width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-image img {
    width: 100%;
  }
}

/* TERCERA SECTION */
/* TERCERA SECTION */
/* TERCERA SECTION */

.productos-section {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* imagen */
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* overlay rojo */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(120, 0, 0, 0.9);
  z-index: 2;
}

/* recuadro */
.productos-box {
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 40px;
  width: 600px; /* Ancho de cuadro */
  border-radius: 5px;
}

/* titulo */
.productos-box h3 {
  margin-bottom: 15px;
  font-weight: 500;
}

/* lista */
.productos-box ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.productos-box li {
  margin-bottom: 5px;
}

/* botón */
.btn-catalogo {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: #e60023;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.btn-catalogo:hover {
  background: #c4001d;
}
