/* Seção Serviços */
.servicos-section {
    background-color: #0d0d0d;
    margin-top: 200px;
    padding-bottom: 80px;
}

.servicos-header {
    background: #121212;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.servicos-header h2 {
    font-size: 38px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #b86b3a;
}

.servicos-banner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.servicos-banner img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.servicos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(184, 107, 58, 0.8);
    z-index: 1;
}

.servicos-texto {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
}

.servicos-texto h2 {
    font-size: 50px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

.servicos-botao {
    position: absolute;
    top: 48%;
    right: 5%;
    background: #121212;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    z-index: 2;
    transition: background 0.3s ease-in-out;
}

.servicos-botao:hover {
    background: #b86b3a;
}

/* Responsividade */
@media (max-width: 768px) {
    .servicos-section {
        margin-top: 200px;
    }
    .servicos-texto h2 {
        font-size: 36px;
    }

    .servicos-botao {
        top: 45%;
        right: 10%;
        font-size: 14px;
        padding: 10px 20px;
    }
}
