

.main-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-card {
    background-color: #1c1c1c;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1),
                0 0 5px var(--accent-color, #817845);
    height: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

.service-icon {
    color: var(--accent-color, #817845);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card .service-img img {
    max-width: 100%;
}

.service-card .content {
    padding: 2rem;
}


.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a2b3c;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-services {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-services:hover {
    background-color: var(--accent-color);
    color: var(--nav-color);
}

.services-section {
    padding: 5rem 0;
}

.services-section h1{
    font-size: 2rem;
}

@media (max-width: 768px) {
    #servicos {
        padding: 10px;
    }

    .services-section h1{
        margin-top: 40px;
    }
}
