.solucao {
    padding: 80px 0;
}

.solucao-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.solucao-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2d3748;
}

.solucao-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.solucao-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.solucao-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.solucao-item h2 {
    color: #e53e3e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.solucao-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solucao-item ul {
    list-style: none;
    padding: 0;
}

.solucao-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.solucao-item ul li::before {
    content: "•";
    color: #e53e3e;
    position: absolute;
    left: 0;
}

.fluxo {
    text-align: center;
    margin-top: 4rem;
}

.fluxo h2 {
    color: #e53e3e;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.fluxo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.fluxo-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e53e3e;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #e53e3e;
    color: white;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-weight: bold;
}

.step h3 {
    color: #e53e3e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .solucao-grid {
        grid-template-columns: 1fr;
    }

    .fluxo-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .fluxo-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .solucao {
        padding: 60px 0;
    }

    .solucao-intro {
        margin-bottom: 3rem;
    }

    .solucao-intro p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .fluxo-steps {
        grid-template-columns: 1fr;
    }

    .step {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .solucao-item {
        padding: 1.5rem;
    }

    .solucao-item h2 {
        font-size: 1.3rem;
    }

    .step h3 {
        font-size: 1.1rem;
    }
} 