#home {
  position: relative;              /* Necesario para el ::before */
  overflow: hidden;
  width: 100%;
  height: 100vh;

  /* Imagen de fondo */
  background: url("../assets/img/sfondo1.webp") no-repeat center center;
  background-size: cover;

  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;                      /* Contenido arriba de ::before */
}

/* Bruma animada */
#home::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;

  /* Radial bruma encima de la imagen */
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), rgba(255,255,255,0) 70%) repeat;
  background-size: 400px 400px;

  animation: brumaMover 40s linear infinite;
  opacity: 0.45;      /* Ajusta intensidad */
  z-index: -1;        /* Detrás del contenido */
  pointer-events: none;
}

@keyframes brumaMover {
  from { transform: translate(0, 0); }
  to   { transform: translate(-200px, -100px); }
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  gap: 3rem;
}

/* === BLOQUE IZQUIERDO: logo + texto === */
.hero-left {
  flex: 1 1 100px;
  max-width: 600px;
  text-align: center;
}

.hero-logo {
  width: 400px;
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #34495e;
  line-height: 1.7;
  font-family: 'Lora', serif;
  margin-bottom: 2rem;
}

.hero-button {
  padding: 12px 28px;
  background-color: #1abc9c;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.hero-button:hover {
  background-color: #159a80;
}

/* === BLOQUE DERECHO: imagen del producto === */
.hero-image {
  flex: 1 1 500px;
  max-width: 600px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transform: rotate(4deg);
  transition: transform 0.4s ease;
}

p.destacado {
  background-color: #f0f8ff; /* azul muy claro */
  border-left: 4px solid #1abc9c;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  color: #003344;
}

.importante {
  text-transform: uppercase;
  font-weight: bold;
  color: #e74c3c;
  background: #fff3cd;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  #home {
    height: auto;
    padding: 60px 20px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-image {
    max-width: 100%;
  }

  .hero-logo {
    width: 220px;
  }

  .hero-description {
    font-size: 1.2rem;
  }
}
