
  /* Aplicación de las fuentes */
  .pazion-promo {
    background: transparent;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif; /* Poppins para todo el cuerpo */
  }
  .promo-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
  }
  
  /* Playfair Display para el título */
  .promo-text h2 { 
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; 
    line-height: 1.2; 
    margin-bottom: 15px; 
    color: #000; 
  }
  
  .promo-text h2 span { color: #e5b3bb; } 
  .promo-text ul { list-style: none; padding: 0; margin-bottom: 25px; }
  .promo-text ul li { margin-bottom: 8px; font-weight: 400; color: #333; }
  
  .btn-shop {
    padding: 15px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, background 0.3s;
    display: inline-block;
    font-weight: 600;
  }
  .btn-shop:hover {
    background: #e5b3bb;
    transform: translateY(-5px);
  }
  
  .promo-image { flex: 1; }
  .promo-image img {
    width: 100%;
    border-radius: 15px;
    display: block;
  }

  @media (max-width: 768px) {
    .promo-container { flex-direction: column; text-align: center; }
  }
