/* single-servicos.css */

/* ================= SINGLE SERVIÇOS  ================= */

/* Reset de fontes e cor base */
body {
    font-family: 'Cooper Hewitt', sans-serif;
    font-weight: 400;
    color: #E8D8C4;
    background-color: #110C3D;
}

.single-servicos .descricao-servico {
    display: block !important;
}

/* Seção de destaque com imagem de fundo */
.hero-servico {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-servico .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-servico h1 {
    color: #fff;
    font-size: clamp(1.5rem, 5vw, 3rem);
    text-align: center;
    z-index: 2;
}

/* Conteúdo principal */
.servico-detalhe {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Conteúdo principal do serviço */
.descricao-servico {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 40px;
    color: #fff;
}

/* Ajuste de imagens dentro do conteúdo */
.servico-detalhe img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Títulos internos */
.servico-detalhe h2, .servico-detalhe h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #E27C19;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Botão de voltar */
.btn-servicos {
    display: inline-block;
    background: #E27C19;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-servicos:hover {
    background: #F7A92E;
    color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-servico {
        height: 60vh; /* reduz altura */
        padding: 20px;
    }

    .hero-servico h1 {
        font-size: 2rem;
    }

    .servico-detalhe {
        padding: 30px 20px;
    }

    .btn-voltar {
        padding: 10px 20px;
        font-size: 16px;
    }
}