html {
    scroll-behavior: smooth;
}
.wrap {
    width: 600px;
    height: 340px;
    overflow: hidden;
}

#subtitulo {
    color: #525252;
}
section {
    scroll-margin-top: 150px; /* Compensa navbar fixa */
    scroll-margin-bottom: 150px;
}

li {
    margin-top: 10px;
}

footer svg {
    fill: grey;
}

.bi-award-fill {
    fill: FireBrick;
}

#servicos_h2 {
    color: grey;
}

.navbar-custom{
     background-color: #B26A22 !important;
}

/* ===== ADAPTAÇÕES PARA O FOOTER E LAYOUT ===== */

/* Rodapé fixo e centralizado */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 120px; /* Para compensar a navbar fixa */
}

main {
    flex: 1;
}

.footer-fixed {
    background-color: white;
    width: 100%;
}

/* Remove o margin do container do footer se necessário */
.container-fluid.px-0 {
    padding-left: 0;
    padding-right: 0;
}

/* Garante que o footer fique no final */
body {
    position: relative;
}

/* Opcional: Adiciona sombra suave ao footer para destaque */
.footer-fixed {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Ajustes responsivos para mobile */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Reduz um pouco no mobile */
    }

    section {
        scroll-margin-top: 120px; /* Ajuste para mobile */
    }

    .footer-fixed .container {
        text-align: center;
    }

    .footer-fixed .d-flex {
        justify-content: center !important;
    }

    .footer-fixed .justify-content-end {
        justify-content: center !important;
        margin-top: 10px;
    }
}