
/* GERAL */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: scroll;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.4;
}

h1, h2 {
    text-align: center;
}

a {
    text-decoration: none;
    font-size: 0.8rem;
}

ul li {
    margin-left: 3rem;
    text-align: justify;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: rgba(120, 120, 120, 0.2);
    color: inherit;
}

section {
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

section:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.22);
}


/* CLASSES DE ELEMENTOS */
.fundo {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 100vw;
    min-height: 100vh;
}

.quadro {
    min-width: 100vw;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    z-index: 0;
    opacity: 0;
    transform: scale(0.1);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
    padding-top: 0rem;
    padding-bottom: 0rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.quadro.exibido {
    z-index: 0;
    opacity: 1;
    transform: scale(1);
}

.max-container {
    margin-top: 4.8rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    align-items: start;
    padding: 2rem;
    border-radius: 40px;
}

.max-container.noturno {
    color: #fff;
}

.max-container.natureza {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.column-container {
    text-align: justify;
}

.full-width {
    grid-column: 1 / -1;
}

.container-icones {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.icon-tamanho {
    height: 15vh;
}

.icon-legenda {
    margin-left: 10px;
    text-align: justify;
}


/* EFEITOS */
.title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.cta {
    background-color: #b2683e;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 30px;
    padding: 10px 20px;
    margin-top: 1.5rem;
    display: inline-block;
    text-decoration: none;
}

.cta:hover {
    background-color: #f58220;
}

.ctw {
    background-color: #228B22;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 30px;
    padding: 10px 20px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-decoration: none;
}

.ctw:hover {
    background-color: #4CAF50;
}

.ctw img {
    filter: brightness(0.4);
}

.destaque {
    font-weight: bold;
    color: #f58220;
}

.central {
    text-align: center;
}

.justificado {
    text-align: justify;
}

.left {
    margin-right: auto;
    margin-bottom: 0;
}

.right {
    margin-left: auto;
    margin-bottom: 0;
}

.saiba-mais {
    font-size: 0.8rem;
}

.legenda {
    font-size: 0.8rem;
}

.pointer {
    cursor: pointer;
}

.tutorial {
    width: 100%;
    background-color: #1E90FF;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 10px;
    text-align: center;
}
    
.simulation {
    width: auto;
    min-width: 20%;
    text-align: center;
    background-color: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    outline: none;
}

input[type="range"] {
    appearance: none;
    width: 100%;
    height: 1.8rem;
    margin-top: 0.5rem;
    border: 0px solid black;
    background: linear-gradient(to right, red, yellow, green);
    outline: none;
    border-radius: 8px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.8rem;
    height: 2.5rem;
    background-color: yellow;
    border: 2px solid black;
    border-radius: 8px;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.8rem;
    height: 2.5rem;
    background-color: yellow;
    border: 1px solid black;
    border-radius: 8px;
}

input[type="range"]::-ms-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.8rem;
    height: 2.5rem;
    background-color: yellow;
    border: 1px solid black;
    border-radius: 8px;
}

