/* === ANÁLISE DE CONVERSA COM IA SECTION === */
.analise-ia-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 50%, #a7f3d0 100%);
    position: relative;
    overflow: hidden;
    color: #065f46;
}

.analise-ia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ai-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(6,78,59,0.15)"/><circle cx="5" cy="5" r="0.5" fill="rgba(6,78,59,0.1)"/><circle cx="25" cy="25" r="0.5" fill="rgba(6,78,59,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23ai-pattern)"/></svg>');
    pointer-events: none;
}

.analise-ia-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.analise-ia-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.analise-ia-subtitle {
    font-size: 1.25rem;
    color: #065f46;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.analise-ia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.analise-ia-info {
    padding: 2rem;
}

.analise-ia-visual {
    position: relative;
}

.analise-ia-description {
    font-size: 1.1rem;
    color: #047857;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.analise-benefits {
    margin-bottom: 2rem;
}

.analise-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
    border: 1px solid rgba(6, 95, 70, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.analise-benefit-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #059669;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.analise-benefit-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.analise-benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #064e3b;
    margin-bottom: 0.25rem;
}

.analise-benefit-content p {
    font-size: 0.95rem;
    color: #065f46;
    line-height: 1.5;
}

.resumo-mockup {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    color: #374151;
}

.resumo-header {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.resumo-header h5 {
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.resumo-content {
    padding: 1.5rem;
    background: #fafafa;
}

.resumo-stats {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.resumo-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.resumo-stats-row:last-child {
    margin-bottom: 0;
}

.resumo-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.resumo-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.resumo-section h6 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resumo-section p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.resumo-section ul {
    font-size: 0.85rem;
    color: #4b5563;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.resumo-section li {
    margin-bottom: 0.25rem;
}

.tempo-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.status-badge {
    background: #dc2626;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.produtividade-highlight {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 2px solid #22c55e;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #166534;
}

.produtividade-highlight h4 {
    color: #166534;
    font-weight: 700;
    margin-bottom: 1rem;
}

.produtividade-highlight p {
    color: #15803d;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(6, 95, 70, 0.2);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #059669;
    transform: translateY(-2px);
}

.feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.feature-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #064e3b;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.8rem;
    color: #065f46;
    line-height: 1.4;
}

/* Animações */
@keyframes fadeInAnalyze {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resumo-content {
    animation: fadeInAnalyze 0.8s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .analise-ia-section {
        padding: 4rem 0;
    }

    .analise-ia-title {
        font-size: 2rem;
    }

    .analise-ia-subtitle {
        font-size: 1.1rem;
    }

    .analise-ia-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .analise-ia-visual {
        order: -1;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .resumo-stats-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .analise-ia-container {
        padding: 0 0.75rem;
    }

    .analise-ia-title {
        font-size: 1.75rem;
    }

    .resumo-mockup {
        margin: 0 -0.5rem;
    }

    .resumo-header,
    .resumo-content {
        padding: 1rem;
    }
}
