/* === CSS DOS RECURSOS LIGAÇÕES === */

.ligacoes-recursos-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.recursos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.recursos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.recursos-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recurso-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.recurso-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.recurso-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.recurso-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.recurso-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recurso-features li {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.recurso-features li:last-child {
    margin-bottom: 0;
}

.recurso-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 600;
    margin-right: 0.5rem;
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsividade */
@media (max-width: 1024px) {
    .recursos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recursos-title {
        font-size: 2rem;
    }
    
    .recurso-card {
        padding: 1.5rem;
    }
}
