* {
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

#servicos {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.links a {
    font-weight: 600;
    color: #000;
    margin-left: 20px;
    text-decoration: none;
}

.links a.active {
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
}

header {
    background: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.menu {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links {
    display: flex;
    gap: 50px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.menu .links a:hover {
    text-decoration: underline;
}


.servicos-bg {
    position: relative;
    min-height: 100vh;
    background: url("../img/bg-site.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.servicos-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    color: #fff;
    text-align: center;
}

.servicos-container h1,
.servicos-container h2 {
    margin-top: 40px;
}

.servicos-container .descricao {
    margin-bottom: 40px;
    font-size: 16px;
    opacity: 0.9;
}

.tabela-servicos {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 10px;
    overflow: hidden;
}

.tabela-servicos th {
    background: #111;
    color: #fff;
    text-align: left;
    padding: 15px;
    font-size: 16px;
}

.tabela-servicos td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.tabela-servicos tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .menu {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .servicos-container h1 {
        font-size: 28px;
    }

    .tabela-servicos th,
    .tabela-servicos td {
        font-size: 14px;
    }
}
