/* -------------------------------- */
/* Tipos de avaliação (Results)     */
/* -------------------------------- */
.results-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.results-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.result-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.result-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-top-color: var(--accent-primary);
    transform: translateY(-5px);
}

.result-icon {
    width: 50px;
    height: 50px;
    background: rgba(17, 24, 39, 0.05);
    color: var(--accent-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.result-icon svg {
    width: 24px;
    height: 24px;
}

.result-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.result-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* -------------------------------- */
/* Tomada de Decisão (Benefits)     */
/* -------------------------------- */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.benefits-box {
    background: var(--bg-primary);
    border: 1px solid var(--bg-secondary);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.benefits-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(17, 24, 39, 0.05);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.5;
}

.benefits-box>* {
    position: relative;
    z-index: 1;
}

.benefits-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.benefits-box .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: var(--text-secondary);
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0.5rem 6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    justify-content: flex-start;
}

.benefits-list .check {
    width: 24px;
    height: 24px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list .check::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 8px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* -------------------------------- */
/* CPC Section                      */
/* -------------------------------- */
.cpc-section {
    padding: 4rem 0 2rem;
    background-color: var(--bg-primary);
}

.cpc-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cpc-list li {
    display: flex;
    align-items: flex-start;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

.cpc-list .cpc-title {
    font-weight: 700;
    color: var(--accent-primary);
    min-width: 120px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.cpc-list .cpc-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cpc-list .cpc-desc strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .benefits-box {
        padding: 2.5rem 1.5rem;
    }
    .cpc-list li {
        flex-direction: column;
    }
    .cpc-list .cpc-title {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
