/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); */
/* variaveis */
:root {
    --side-primary-color: #04AA6D;
    --side-secondary-color: #333;
    --background-color: #f1f1f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* scroll suave */
html {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
}


.side-menu {
    width: 230px;
    height: 100vh;
    background-color: var(--side-secondary-color);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
}

.logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    margin-top: 8px;
    /* fundo trasparente */
}

.side-menu-header {
    width: 100%;
    height: 180px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
    /* quebrar linha */
}

.side-menu-header h1 {
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    /* quebrar palavra */
    word-break: break-word;
}

.side-menu a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.1s ease;
    padding-left: 25px;
    font-size: 18px;
}

.side-menu a:hover {
    background-color: var(--side-primary-color);
    color: #fff;
}

.main {
    width: calc(100% - 230px);
    position: relative;
    left: 230px;
    display: flex;
    align-items: center;
    flex-direction: column;

}

.container {
    margin-top: 100px;
}

.card {
    border-radius: 6px;
    box-shadow: 0px 0px 5px #ccc;
    padding: 30px;
    margin-top: 25px;
    width: 720px;
    height: fit-content;
    text-align: left;
}

.calculadora_container_body{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.calculadora_container_footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding-left: 3px;
}

input{
    width: 120px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    outline: none;
}

.input_resultado{
    width: 138px;
    margin-right: 0px;
    border-right: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 16px;
    font-weight: bold;
}

/* input button */
.btn{
    width: 110px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    background-color: var(--side-primary-color);
    color: #fff;
    cursor: pointer;
}

/* input button:hover */
.btn:hover{
    opacity: 0.8;
}

.icon_copy{
    width: 30px;
    height: 35px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ccc;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.icon_copy img{
    width: 25px;
    height: 25px;
    padding: 3px; 
}

.icon_plus{
    width: 30px;
    height: 35px;
    background-color: #04AA6D;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.icon_plus:hover{
    opacity: 0.8;
}

.card_header h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.card_header p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.math {
    font-family: "Courier New", monospace; /* Defina uma fonte monoespaçada para as fórmulas */
}

.container-explicacao-body {
    margin-top: 20px;
    text-align: left;
}

.container-explicacao-body p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.footer_content_left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.footer_content_left p {
    color: #000;
}

.footer_content_right {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 20px;
}

.footer_content_right p {
    color: #000;
}


.lgpd_card {
    position: fixed;
    /* centro da tela */
    bottom: 3%;
    width: 70%;
    max-width: 1400px;
    left: calc(24%);
    height: auto;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    z-index: 999;
    padding: 25px;
}

.lgpd_card_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}
.lgpd_card_content_left {
    width: 70%;
}
.lgpd_card_content_right {
    width: 30%;
    
}
.lgpd_card_content_right button {
    float: right;
    width: 30%;
}
.lgpd_card_content_left p {
    font-size: 14px;
    color: #000;
}

