/* Examples Section - Premium & Clean */

.examples-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Fundo decorativo sutil (opcional, para dar profundidade) */
.examples-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.examples-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.examples-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.examples-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de Pills */
.examples-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 1rem;
}

/* Estilo dos Pills */
.example-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.example-pill:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #0066FF;
    color: #0066FF;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
}

.pill-icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .examples-header h2 {
        font-size: 2rem;
    }

    .example-pill {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}