/* Estilos específicos para a página de serviços */

.services-hero {
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.services-main {
    padding-bottom: 60px;
}

.services-sidebar {
    position: sticky;
    top: 100px;
}

.services-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-nav li {
    margin-bottom: 10px;
}

.services-nav a {
    display: block;
    padding: 8px 15px;
    color: #333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.services-nav a:hover, 
.services-nav a.active {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

.service-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin-right: 20px;
    color: #0056b3;
    font-size: 1.75rem;
}

.service-header h2 {
    margin: 0;
}

.service-content p {
    margin-bottom: 25px;
}

.service-gallery {
    margin: 30px 0;
}

.gallery-item {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-caption {
    padding: 10px;
    text-align: center;
    background-color: #f8f9fa;
    font-weight: 500;
}

.service-list {
    padding-left: 20px;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 10px;
}

.service-cta {
    margin-top: 30px;
    text-align: center;
}

/* Responsividade */
@media (max-width: 991px) {
    .services-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .services-nav {
        display: flex;
        flex-wrap: wrap;
    }
    
    .services-nav li {
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
