html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: "Murecho", Sans-serif !important;
    font-weight: 400;
}

.bg-cor-primaria {
    background-color: #E8E0D5 !important;
}

.bg-cor-secundaria {
    background-color: #5D5E3E !important;
}

.bg-cor-terciaria {
    background-color: #726b3d !important;
}

.texto-primario {
    color: #22311E !important;
}

.texto-secundario {
    color: #726b3d !important;
}

.texto-terciario {
    color: #E8E0D5 !important;
}

.navbar .nav-link:hover {
    text-decoration: underline;
    color: #5D5E3E !important;
}

.navbar-custom-height {
    padding-top: 1.5rem; /* exemplo de padding */
    padding-bottom: 1.5rem;
    min-height: 70px; /* define uma altura mínima */
}

.dropdown-menu .dropdown-item:hover {
    background-color: #726b3d !important; /* sua cor desejada */
    color: #E8E0D5 !important; /* cor do texto no hover (opcional) */
}



.secao-com-fundo {
    /*background-image: url(https://sustainablecold.com.br/wp-content/uploads/2024/12/bg-site-1.png);*/
    background-image: url(/bg-site-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    /*background-color: red;*/
}

/* Oculta a imagem de fundo em telas menores que 768px */
@media (max-width: 576px) {
    .secao-com-fundo {
        background-image: none;
    }
}

.btn-custom {
    background-color: #726b3d;
    color: white;
    border: none;
}

    .btn-custom:hover {
        background-color: #5D5E3E;
    }
