/* Estilos para o vídeo de fundo na seção de introdução de soluções */
.solutions-intro {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    color: #fff;
}

.solutions-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.solutions-intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.solutions-intro .container {
    position: relative;
    z-index: 2;
}

.solutions-intro .section-title h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.solutions-intro .lead {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-nav {
    margin-top: 2rem;
}

.solutions-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.solutions-nav-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.05rem;
}

.solutions-nav-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .solutions-intro {
        padding: 60px 0;
    }
    
    .solutions-intro .section-title h2 {
        font-size: 2rem;
    }
    
    .solutions-nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .solutions-nav-link {
        width: 100%;
        text-align: center;
    }
}
