.section-card-title-center{
    padding: 80px 0;
    max-width: 1142px;
    margin: auto;
}
/* Estilos essenciais */
.container {
    width: 100%;
    max-width: 1142px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    flex-direction: column;
}

.section-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 16px;
}

.section-description {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

/* Estilo do Card */
.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px 24px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Ícone */
.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
}

/* Título */
.service-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}

/* Descrição */
.service-description {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

/* Botão */
.service-link {
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.service-link:hover {
    opacity: 0.8;
}

.service-link svg {
    transition: transform 0.2s;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Gradiente para texto destacado */
.gradient-text {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-card-title-center {
        padding: 40px 0;
    }
}