:root {
    --silver: #999999;
    --green: #00FF00;
    --white: #ffffff;
    --black: #000000;
    --blue: #00f;
    --blueLight: rgb(0, 119, 255);
}

/* Define o layout geral da página */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden; /* Remove a rolagem do corpo da página */
    transition: background-color 0.3s, color 0.3s;
}

@media (min-width: 768px) {
    body {
        flex-direction: row;
    }
}

/* Reset geral para cor e fonte */
* {
    color: var(--fontColor);
    font-family: helvetica;
    transition: color 0.3s;
}

/* Temas */
.light-theme {
    --bg: var(--white);
    --fontColor: var(--blue);
    --fontColorText: var(--blue);
    --btnBg: var(--black);
    --btnFontColor: var(--white);
}

.dark-theme {
    --bg: var(--black);
    --fontColor: var(--blueLight);
    --fontColorText: var(--blueLight);
    --btnBg: var(--white);
    --btnFontColor: var(--black);
}

/* Botão em foco */
.btn:focus {
    outline-style: none;
}

/* Primeiro frame - Lado esquerdo */
.left-frame {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--bg);
}

@media (min-width: 768px) {
    .left-frame {
        width: 15%; /* 1/5 da tela */
        flex-direction: column;
    }
}

/* Botões no primeiro frame */
.left-frame button {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    background-color: var(--blue); 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.left-frame button:hover {
    background-color: var(--blueLight);
}

/* Segundo frame - Lado direito */
.right-frame {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--bg);
    overflow-y: auto; /* Adiciona rolagem vertical quando necessário */
    height: calc(100vh - 20px); /* Ajuste a altura para caber a tela, considerando o padding */
    padding: 10px; /* Adiciona um pouco de espaço interno */
}

@media (min-width: 768px) {
    .right-frame {
        width: 85%; /* O restante da tela */
    }
}

/* Parte superior do segundo frame */
.top-section {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg);
}

.top-section img {
    max-width: 100%;
    height: auto;
}

/* Parte inferior do segundo frame */
.bottom-section {
    padding: 20px;
    box-sizing: border-box;
    background-color: var(--bg);
    margin-left: auto; 
    margin-right: auto;
}

.bottom-section h2 {
    margin-top: 0;
    color: var(--fontColorText);
}

.bottom-section p {
    margin: 10px 0;
    white-space: pre-wrap;
    color: var(--fontColorText);
}

.imagem_pequena {
    width: 18px;
    height: auto;
}

.image_folder_divulgacao {
    width: auto;
    height: auto;
}
