/* Services Header */
.services-header h1 {
    color: white;
}

.services-header {
    background: linear-gradient(rgba(0, 41, 107, 0.9), rgba(0, 41, 107, 0.9));
    background-size: cover;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Service Cards */
.service-card-wrapper {
    padding: 15px;
    transition: all 0.3s ease;
}

.service-card-wrapper:hover {
    transform: translateY(-5px);
}

.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 20px;
    color: white;
    font-size: 30px;
}

.card-body {
    padding: 0 25px 25px;
    text-align: center;
}

.card-title {
    color: var(--azul-escuro);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card-text {
    color: var(--cinza-medio);
    margin-bottom: 20px;
    min-height: 60px;
}

.service-card .btn {
    width: 100%;
    padding: 10px;
    font-weight: 500;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-header {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .service-card-wrapper {
        padding: 10px;
    }
}
