/* ============================
   MÁS INGRESOS — SIMPLIA
   ============================ */

/* === GENERALS === */
body {
    background-color: #000c16;
    color: white;
}

/* === HERO SECTION === */
.hero-simplia {
    padding-block: 2rem 3rem;
    text-align: center;
}
.hero-simplia .container {
    max-width: 900px;
    margin: 0 auto;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #c0c8d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* === BUTTON === */
.btn-primary {
    display: inline-block;
    background-color: #ff2e9a;
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
    background-color: #e3007a;
    box-shadow: 0 0 15px rgba(255, 46, 154, 0.6);
}
.btn-primary.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* === FEATURES SECTION === */
.section-features {
    background-color: transparent;
    padding-block: 3rem;
}
.section-features .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1rem;
}
.section-title {
    font-size: 2rem;
    color: white;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.feature-item {
    background: #091122;
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(198, 83, 245, 0.2);
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 83, 245, 0.3);
    background: #111a33;
}
.feature-icon {
    font-size: 2.5rem;
    color: #c653f5;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(198, 83, 245, 0.5);
}
.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.feature-item p {
    font-size: 1rem;
    color: #d2d2d2;
    line-height: 1.5;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background-color: transparent;
    padding-block: 3rem;
    text-align: center;
}
.testimonials .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1rem;
}
.testimonials h2 {
    font-size: 2.2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 3rem;
}
.testimonials .testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: #091122;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border-left: 4px solid #ff2e9a;
    box-shadow: 0 0 20px rgba(255, 46, 154, 0.15);
}
.testimonials blockquote {
    font-size: 1.5rem;
    color: white;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}
.testimonials footer {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #d0d0d0;
    display: block;
    text-align: right;
    padding-right: 1rem;
}

/* === CTA FINAL === */
.cta-block {
    background-color: transparent;
    text-align: center;
    padding-block: 3rem;
}
.cta-block .container {
    max-width: 800px;
    margin: 0 auto;
}
.cta-block h2 {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #c653f5, #ff2e9a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 800;
}
.cta-block p {
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .testimonials h2 {
        font-size: 1.8rem;
    }
    .testimonials blockquote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    .cta-block h2 {
        font-size: 1.8rem;
    }
    .testimonials .testimonial-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

/* === RELATED SERVICES — centrat i paleta Simplia === */
.related-services{
  text-align:center;
  margin:3rem auto;
  max-width:900px;
}
.related-services h2{
  text-align:center !important;
  font-size:2.2rem;            /* criteri global d'H2 */
  margin-bottom:1.5rem;
}
.related-services .related-item{
  margin-bottom:1.5rem;
}

/* Forcem el centrat dels textos dins de cada item */
.related-services .related-item h3,
.related-services .related-item p{
  text-align:center !important;
  margin-left:auto;
  margin-right:auto;
}

/* Colors i comportament dels enllaços */
.related-services h3 a,
.related-services h3 a:link,
.related-services h3 a:visited{
  color:#ff2e9a !important;     /* Fúcsia Simplia */
  text-decoration:none !important;
  font-weight:700 !important;
}
.related-services h3 a:hover,
.related-services h3 a:focus{
  color:#c653f5 !important;     /* Lila Simplia */
  text-decoration:underline !important;
}
.related-services p a,
.related-services p a:link,
.related-services p a:visited{
  color:#ff2e9a !important;
  text-decoration:none !important;
}
.related-services p a:hover,
.related-services p a:focus{
  color:#c653f5 !important;
  text-decoration:underline !important;
}
