/* Tema Claro (Padrão) */
:root {
    --bs-body-bg: #f8f9fa;
    --bs-body-color: #212529;
    /* Outras variáveis */
}

/* Tema Escuro */
.dark-theme {
    --bs-body-bg: #212529;
    --bs-body-color: #f8f9fa;
    /* Outras variáveis */
}
/* Tema Escuro */
.dark-theme .navbar {
    background-color: #343a40; /* Cor de fundo para o tema escuro */
}
.dark-theme .navbar-brand, .dark-theme .nav-link {
    color: #ffffff; /* Cor do texto para o tema escuro */
}
/* Ajustes para dropdown menu no tema escuro */
.dark-theme .dropdown-menu {
    background-color: #343a40;
}
.dark-theme .dropdown-item {
    color: #ffffff;
}
.dark-theme .dropdown-item:hover {
    background-color: #495057; /* Um pouco mais claro que o fundo do menu dropdown */
}

* {
    margin: 0;
    padding: 0;
}

.h-100 {
    height: 100% !important;
}

.offcanvas {
    min-height: 35vh;
}

div.comunicacao, div.fundo img {
    display: none;
}
button#themeToggleButton:hover {
    color: black;
    font-weight: bold;
}
body {
    width: 100%;
    min-height: 100vh;

}

header {
    width: 100%;
    height: 10vh;
}

svg.logo_svg {
    width: 50px;
    height: 50px;
}

main {
    width: 100%;
    min-height: 90vh;
}

div.video {
    width: 100%;
    min-height: 25vh;
    max-width: 700px;
}

div.video div video {
    width: 100%;
    height: auto;
}

div.texto {
    width: 100%;
}

img.comunicacao {
    width: 5em;
}


footer {
    width: 100%;
    min-height: 5vh;
    background-color: #333333;
    z-index: 1;
    position: relative;
    margin-top: auto;
}

@media (min-width: 768px) {
    header {
        width: 100%;
        max-height: 10vh;
    }

    nav {
        height: 100%;
    }

    .offcanvas {
        min-height: 5vh;
    }

    li.cc {
        display: none;
    }

    div.comunicacao,div.fundo img {
        display: block;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }

    div.video {
        width: 100%;
        max-height: 50%;
        margin: 0 auto;
    }

    div.video div video {
        height: 100%;
        box-shadow: 10px 10px 20px #000000;
        border-radius: 10px;
    }

    div.video,div.texto {
        position: relative;
        z-index: 1;
    }
    p {
        font-weight: 700;
    }
    .fundo {
        position: relative;
        width: 100%;
    }
    .imagem-fundo {
        
        width: 100%;
        height: 104%;
        opacity: 0.2;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
}