/* ---------------------
       ESTILOS GENERALES
       --------------------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #fff;
      color: #333;
      line-height: 1.5;
    }

    /* ---------------------
       HEADER
       --------------------- */
    header {
      background-color: #f3ede4; /* color de fondo */
      text-align: center;
      padding: 1rem;
      position: relative;
    }

    header img {
      max-height: 60px; /* ajusta según tu logo */
    }

    /* Opcional: Estilos para un contenedor de redes en el header (si lo deseas ahí) */
    .header-social {
      position: absolute;
      right: 1rem;
      top: 1rem;
    }

    .header-social a {
      margin-left: 0.5rem;
      color: #333;
      text-decoration: none;
    }

    .header-social a:hover {
      color: #cc2c57;
    }

    /* ---------------------
       HERO CON PARALLAX
       --------------------- */
    .hero {
      /* Sustituye la siguiente URL por la imagen de rosas que desees usar */
      background: url('roses1.jpg') no-repeat center bottom fixed;
      background-size: auto 150%;
      background-attachment: fixed; 
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 50vh;
      color: #fff;
      text-align: center;
      padding: 2rem;
    }

    .hero h1 {
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: 1.2px;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      /* Usa sombra para el texto si la imagen es muy clara */
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    /* ---------------------
       SECCIÓN: PRODUCTOS DESTACADOS
       --------------------- */
    .productos-destacados {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      padding: 2rem 1rem;
    }

    .producto-card {
      max-width: 250px;
      text-align: center;
    }

    .producto-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .producto-card img:hover {
      transform: scale(1.05);
    }

    .producto-card h3 {
      margin: 0.8rem 0 0.4rem;
      font-size: 1.1rem;
      font-weight: 500;
    }

    /* ---------------------
       LISTA DE PRODUCTOS
       --------------------- */
    .lista-productos-container {
      text-align: center;
      padding: 1rem;
    }

    .lista-productos-container h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .lista-productos {
      list-style: none;
      margin: 0 auto;
      padding: 0;
      max-width: 400px;
      text-align: left; /* Para alinear precios */
    }

    .lista-productos li {
      margin-bottom: 0.5rem;
      font-size: 1rem;
      border-bottom: 1px solid #ccc;
      padding: 0.5rem 0;
    }
    
    /* ---------------------
   CONTENIDO PRINCIPAL
   --------------------- */
.content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: left;
}

.content h1 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.content h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: #cc2c57;
}

.content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.content ul {
  list-style-type: disc;
  margin: 1rem 0 1rem 1.5rem;
}

.content ul li {
  margin-bottom: 0.5rem;
}

/* ---------------------
   LINKS Y BOTONES
   --------------------- */
a {
  color: #cc2c57;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}


    /* ---------------------
       BOTÓN DE PEDIDO
       --------------------- */
    .pedido-btn-container {
      text-align: center;
      margin: 2rem 0;
    }

    .pedido-btn {
      display: inline-block;
      background-color: #cc2c57; /* color principal */
      color: #fff;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      font-size: 1rem;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .pedido-btn:hover {
      background-color: #b0244c;
    }

    /* ---------------------
       FOOTER
       --------------------- */
    footer {
      background-color: #f3ede4; /* color de fondo */
      text-align: center;
      padding: 1.5rem 1rem;
    }

    footer p {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 1rem;
    }

    .footer-social {
      margin-bottom: 0.5rem;
    }

    .footer-social a {
      margin: 0 0.5rem;
      color: #333;
      text-decoration: none;
      font-size: 1.2rem;
    }

    .footer-social a:hover {
      color: #cc2c57;
    }

    /* ---------------------
       RESPONSIVO
       --------------------- */
    @media (max-width: 768px) {
      .productos-destacados {
        flex-direction: column;
        align-items: center;
      }
      .hero {
        min-height: 40vh;
        padding: 1rem;
      }
    }



