/* Estilos para mockups e elementos visuais */
.mockup-container {
    text-align: center;
    margin: 40px 0;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dashboard-preview {
    position: relative;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.dashboard-preview:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
}

.dashboard-preview h3 {
    margin-bottom: 20px;
    position: relative;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
}

.dashboard-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.dashboard-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.dashboard-card .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a86ff;
}

.dashboard-card .trend {
    font-size: 0.9rem;
    color: #4caf50;
}

.trend.up:before {
    content: "↑ ";
}

.trend.down:before {
    content: "↓ ";
    color: #f44336;
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.integration-logo {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.integration-logo span {
    font-weight: 600;
    font-size: 1.2rem;
}

.feature-highlight {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.feature-highlight:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background-color: #3a86ff;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    margin-bottom: 5px;
}

/* Responsividade para elementos visuais */
@media (max-width: 768px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .integration-logos {
        gap: 15px;
    }
    
    .integration-logo {
        padding: 10px 15px;
        height: 50px;
    }
}
