/* === SISTEMA COLORI LANDING MOSAICO === */
.bg-cream {
    background-color: #fff8e1 !important;
  }
  
  .bg-soft-grey {
    background-color: #f8f9fa !important;
  }
  
  .text-main-dark {
    color: #333333 !important;
  }
  
  .text-soft {
    color: #6c757d !important;
  }
  
  .text-accent {
    color: #198754 !important;
  }
  
  .text-danger-soft {
    color: #dc3545 !important;
  }
  
  /* === STILI SEZIONI E TIPOGRAFIA === */
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  /* === CTA PROMOZIONALE === */
  .cta-highlight {
    background-color: #eaf6f6;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .cta-highlight h2,
  .cta-highlight h3 {
    color: #198754;
    font-weight: 700;
  }
  
  .cta-price-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
    display: inline-block;
  }
  
  .cta-price-big {
    font-size: 2.75rem;
    font-weight: 700;
    color: #198754;
  }
  
  .cta-buttons a {
    font-weight: 600;
    padding: 0.75rem 2rem;
  }
  
  /* === LISTE BENEFICI E CONTENUTI === */
  .benefits-list li::before {
    content: "✔️ ";
    margin-right: 0.5rem;
  }
  
  /* === GALLERY FIX === */
  .gallery-center .col {
    display: flex;
    justify-content: center;
  }
  
  .text-shadow-soft {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  }
  
  .text-shadow {
    text-shadow: 2px 2px 0 #4074b5, 2px -2px 0 #4074b5, -2px 2px 0 #4074b5, -2px -2px 0 #4074b5, 2px 0px 0 #4074b5, 0px 2px 0 #4074b5, -2px 0px 0 #4074b5, 0px -2px 0 #4074b5;
  }

  @keyframes pulse-soft {
    0% {
      transform: translateY(-50%) scale(1);
      opacity: 1;
    }
    50% {
      transform: translateY(-50%) scale(1.1);
      opacity: 0.85;
    }
    100% {
      transform: translateY(-50%) scale(1);
      opacity: 1;
    }
  }
  
  .badge-pulsing {
    animation: pulse-soft 2.5s infinite;
    transform: translateY(-50%); /* posizione iniziale coerente con animazione */
    z-index: 10;
  }
  
  