/* --- BENEFICIOS --- */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.benefit { padding: 24px; }
.icon-box { width: 56px; height: 56px; background: rgba(0, 102, 204, 0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--xp-blue); margin-bottom: 20px; }
.benefit h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--xp-navy); }
.benefit p { font-size: 14px; color: var(--xp-text-gray); }

/* --- STATS & TESTIMONIOS (DARK SECTION) --- */
.dark-section {
    background: var(--xp-navy);
    color: white;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

/* Stats */
.stats-row {
    display: flex; justify-content: space-around; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 60px;
}
.stat-box { text-align: center; }
.stat-num {
    font-size: 56px; font-weight: 800; color: white; display: block; line-height: 1; margin-bottom: 10px;
}
.stat-num span { color: var(--xp-orange); } 
.stat-desc { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; }

/* Testimonios */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testi-card {
    background: rgba(255, 255, 255, 0.05); padding: 32px; border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars { color: #FFD700; margin-bottom: 15px; display: block; letter-spacing: 2px; }
.testi-card p { font-style: italic; opacity: 0.9; margin-bottom: 20px; line-height: 1.5; }
.author { font-weight: 700; color: var(--xp-orange); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .stats-row { flex-direction: column; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}