body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #111;
    scroll-behavior: smooth;
  }
  
  .navbar {
    background-color: #000;
  }
  
  .navbar-brand {
    color: #007a33 !important;
    font-weight: 800;
    font-size: 1.8rem;
  }
  
  .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
  }
  
  .navbar-nav .nav-link:hover {
    color:#00b359 !important;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    background: url('../images/innovacion.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(36, 36, 36, 0.4);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 800;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero .btn {
    margin-top: 2rem;
    background: #007a33;
    border: none;
    border-radius: 30px;
    font-weight: 600;
  }
  
  .hero .btn:hover {
    background: #007a33;
  }
  
  .beneficio i {
    font-size: 2rem;
    color: #007a33;
    margin-bottom: 0.5rem;
  }
  
  .producto video {
    width: 100%;
    border-radius: 10px;
  }
  
  .producto h3 {
    margin-top: 1rem;
    color: #007a33;
  }
  
  footer {
    background: #111;
    color: #aaa;
    font-size: 0.9rem;
  }
  
  .card {
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  .etiquetadoras-section {
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #1e293b;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .highlight {
    color: #007a33;
    font-weight: bold;
  }
  .description {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  .video-demo iframe {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin-bottom: 15px;
  }
  .btn-demo {
    background: #007a33;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
  }
  .btn-demo:hover {
    background: #007a33;
  }
  .demo-note {
    background: #e0f2fe;
    color: #007a33;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    margin: 30px auto;
    max-width: 600px;
  }
  .benefits {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.1rem;
    flex-wrap: wrap;
  }
  .icon {
    color: #007a33;
    margin-right: 8px;
    font-weight: bold;
  }
  .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .product-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-5px);
  }
  .product-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  .btn {
    display: inline-block;
    margin-top: 10px;
    background:#007a33;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .btn:hover {
    background: #00b359;
  }
  .cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: #007a33;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
  }
  .btn-primary:hover {
    background: #007a33;
  }
  .btn-secondary {
    background: transparent;
    border: 2px solid #007a33;
    color: #007a33;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
  }
  
  /* Estilo para el fondo del modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Estilo de la tarjeta modal */
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

/* Botón de cerrar */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

/* Animación de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Título y texto dentro del modal */
.modal-content h4 {
  color: #007a33;
  margin-bottom: 0.5rem;
}

.modal-content p {
  color: #111;
  line-height: 1.6;
}
.products {
  display: flex;
  flex-wrap: wrap;
  gap: 60px; /* espacio entre tarjetas */
  justify-content: center;
}

.product-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 460px; /* puedes ajustar según el texto */
}


.product-card img {
  width: 100%;
  height: 200px; /* altura estándar visual */
  object-fit: cover; /* recorta ligeramente pero mantiene armonía visual */
  border-radius: 8px;
  margin-bottom: 12px;
}


.product-card h3 {
  margin: 12px 0 8px;
  font-size: 1.6rem;
}

.product-card p {
  flex-grow: 1; /* hace que el párrafo llene el espacio si es necesario */
  margin-bottom: 12px;
  font-size: 1.2rem;
}


/* Estilos de redes sociales */
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 150px;
  height: 150px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.social-icons img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.gmail-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  /* Asegura que esté por encima del resto del contenido */
  text-align: right;
  /* Alinea el contenido a la derecha */
}

.gmail-icon div {
  text-align: center;
}

.gmail-icon img {
  display: block;
  margin: 0 auto;
}

.gmail-icon .quote-text {
  display: block;
  text-align: center;
  color: #000000;
}

