/* =========================================
   BENEFITS SECTION - VERSÃO CHECKLIST
   Formato compacto com checkboxes
   Fundo azul escuro + texto branco + checks verdes
   ========================================= */

@keyframes elementGlow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(255, 107, 0, 0.15);
    }
    50% {
        box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
    }
}

.benefits-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

/* Padrão decorativo sutil */
.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.benefits-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.benefits-section .section-tag {
    background: var(--gradient-primary);
    color: white;
}

.benefits-section .section-header h2 {
    color: white;
}

/* Checklist container */
.benefits-checklist {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Cada item da checklist */
.benefit-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    animation: none;
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
}

/* Texto do benefício */
.benefit-item span {
    font-size: 1.05rem;
    line-height: 1.6;
    color: white;
    font-weight: 400;
    flex: 1;
}

/* Ícone de check verde no final */
.benefit-item i {
    font-size: 1.5rem;
    color: #00CC66;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .benefits-section {
        padding: 70px 0;
    }
    
    .benefits-section .section-header {
        margin-bottom: 40px;
    }
    
    .benefits-checklist {
        gap: 14px;
    }
    
    .benefit-item {
        padding: 18px 24px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-section .section-header {
        margin-bottom: 36px;
    }
    
    .benefits-checklist {
        gap: 12px;
    }
    
    .benefit-item {
        padding: 16px 20px;
        gap: 16px;
    }
    
    .benefit-item:hover {
        transform: translateX(4px);
    }
    
    .benefit-item i {
        font-size: 1.3rem;
    }
    
    .benefit-item span {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Responsive - Mobile pequeno */
@media (max-width: 480px) {
    .benefits-section {
        padding: 50px 0;
    }
    
    .benefit-item {
        padding: 14px 18px;
        gap: 14px;
    }
    
    .benefit-item i {
        font-size: 1.2rem;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
}
