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 {
    /*margin-bottom: 60px;*/
}


/* Fixando a div logo no topo */
#divLogo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; /* Garantir que fique sobre outros elementos */
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    /* Estilo para as divs dentro de #divLogo */
    #divLogo div {
    }

    #divLogo img {
        width: auto;
        height: 50px; /* Ajuste o tamanho da logo conforme necessário */
        margin-right: 10px;
    }

.hero {
    color: white;
    background-image: url('../Imagens/business.jpg'); /* Caminho para a imagem */
    background-size: cover; /* Faz a imagem cobrir toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita que a imagem se repita */
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 105px;
}


    /*.hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);*/ /* Filtro de opacidade */
        /*z-index: -1;*/ /* Garante que o filtro fique atrás do conteúdo */
    /*}*/



/* Responsividade: Ajuste para telas menores */
@media (max-width: 768px) {
    #divLogo {
    }

        #divLogo img {
            height: 40px; /* Ajuste o tamanho da logo para telas pequenas */
        }

        #divLogo div {
            margin-top: 5px;
        }

    .hero {
/*        background: url(/Imagens/fotoMeio.png) no-repeat center center;
        background-size: contain;*/
        color: white;
/*        background-color: black;*/
        height: 45vh;
        display: flex;
        align-items: center;
        text-align: center;
/*        position: relative;
        margin-top: 109px;*/
    }
}
