/* Importação da Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

.process-solutions {
    background-color: #eaeaea; 
    padding: 80px 5%;
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
}

/* Header */
.header-section {
    max-width: 900px;
    margin-bottom: 60px;
}

.subtitle {
    color: #FF5C00;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.header-section h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
}

.italic-orange {
    color: #FF5C00;
    font-style: italic;
}

/* Grid Ajustado */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Grid automático */
    gap: 30px;
    width: 100%;
}

/* Card Corrigido */
.card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px;
    border: 1px solid #EAEAEA;
    display: flex;
    flex-direction: column; /* Força empilhamento vertical */
    height: auto; /* Deixa o texto ditar a altura */
    min-height: 380px; /* Mantém um padrão visual */
    box-sizing: border-box;
}

/* Header do Card */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.icon-box {
    background: #000;
    color: #ef8844;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 600;
    flex-shrink: 0; /* Impede o ícone de amassar */
}

.process-badge {
    background: #FFF0E8;
    color: #FF5C00;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
}

/* Conteúdo */
.card h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 15px 0;
    display: block; /* Garante que ocupa sua linha */
}

.status-today {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Empurra o próximo bloco para baixo */
}

/* Rodapé do Card */
.status-solution {
    font-size: 15px;
    color: #1A1A1A;
    line-height: 1.5;
    border-top: 1px dashed #DDD;
    padding-top: 20px;
    margin-top: auto; /* Alinha no fim do card */
}

.status-solution strong {
    color: #FF5C00;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 25px;
        min-height: auto;
    }