/**
 * How It Works - Base CSS
 * Estilos compartilhados por todas as variantes
 */

.sslp-how-it-works {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sslp-how-it-works .sslp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sslp-how-it-works .sslp-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.75rem;
    color: var(--sslp-text, #fff);
}

.sslp-how-it-works .sslp-section__subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--sslp-text-muted, rgba(255, 255, 255, 0.7));
    margin: 0 0 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid base */
.sslp-hiw__grid {
    display: grid;
    gap: 2rem;
}

/* Step card base */
.sslp-hiw__step {
    position: relative;
}

.sslp-hiw__number {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sslp-hiw__title {
    font-weight: 600;
    margin: 0;
}

.sslp-hiw__desc {
    line-height: 1.6;
    margin: 0;
}

/* Icon support */
.sslp-hiw__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sslp-hiw__icon svg {
    width: 100%;
    height: 100%;
}

/* Connector line base */
.sslp-hiw__connector {
    position: absolute;
}

/* Animation base */
.sslp-hiw__step[data-sslp-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sslp-hiw__step[data-sslp-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}
