* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

#universo {
    width: 100%;
    height: 4000px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url('../img/universo.webp');
}

#telescopio {
    width: 100%;
    height: 90vh;
    padding: 10px;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url('../img/telescopio.webp');
}

body #universo #container {
    width: 80%;
    left: 4rem;
    top: 26rem;
    right: 4rem;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
}

body #universo #container #circles {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #222;
}

body #universo #container #circles .circle {
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-radius: 50%;
    background-color: #fff;
}

body #universo #container span {
    margin: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body #universo #container span #brand {
    color: #000;
    font-size: 1.5rem;
    margin-left: 20px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 2px 2px #f2f2f2;
}

body #universo #container span #brand span {
    color: #f2f2f2;
    text-shadow: 2px 2px #000;
}

body #universo #container span ul {
    display: flex;
    justify-content: end;
}

body #universo #container span ul div {
    padding: 10px;
    list-style: none;
    margin-right: 20px;
}

body #universo #container span ul div a {
    color: #000;
    text-decoration: none;
}

body #universo #container #product {
    height: auto;
    display: flex;
    margin: 2rem 5rem;
}

body #universo #container #product #left-side {
    width: 50%;
    display: flex;
    padding: 2rem;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

body #universo #container #product #left-side h1 {
    color: #000;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

body #universo #container #product #left-side h2 {
    color: #000;
    font-size: 1rem;
    margin-bottom: 2rem;
}

body #universo #container #product #left-side a {
    font-size: 1rem;
    padding: .5rem 1.5rem;
    border-radius: 1.5rem;
    text-decoration: none;
    background-color: #276749;
    color: rgba(255, 255, 255, 0.92);
}

body #universo #container #product #right-side {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

body #universo #container #product #right-side img {
    width: 22.9rem;
    height: 42.5rem;
}

body #universo #container #product #right-side button {
    width: 8rem;
    padding: .5rem;
}

/* Sobre ----------------------------------------------------------- */

body #universo #container #aboutProduct {
    padding: 2rem;
    display: flex;
    margin: 2rem 5rem;
    align-items: center;
    justify-content: center;
    border-top: 2px solid #000;
}

body #universo #container #aboutProduct #aboutLeftSide {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body #universo #container #aboutProduct #aboutLeftSide video {
    width: auto;
    height: 18rem;
}

body #universo #container #aboutProduct #aboutRightSide {
    width: 35%;
    display: flex;
    padding: 3rem;
    flex-direction: column;
    justify-content: center;
}

body #universo #container #aboutProduct #aboutRightSide h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

body #universo #container #aboutProduct #aboutRightSide ul li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Informações Gerais ---------------------------------------------------- */

body #universo #container #informations {
    display: flex;
    margin: 2rem 5rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-top: 2px solid #000;
}


body #universo #container #informations h4 {
    margin-top: 1rem;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

body #universo #container #informations table caption {
    padding: .5rem;
    font-weight: bold;
    border: 1px solid #000;
}

body #universo #container #informations table thead tr th {
    padding: .5rem;
    border: 1px solid #000;
}

body #universo #container #informations table tbody tr td {
    padding: .5rem;
    border: 1px solid #000;
}

/* Modelo ---------------------------------------------------------- */

body #universo #container #img-model {
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

body #universo #container #img-model h5 {
    margin: 1rem 0;
    font-size: 1.5rem;
    text-align: center;
}

body #universo #container #img-model p {
    margin: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

body #universo #container #img-model #photos {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

body #universo #container #img-model #photos .img-card {
    width: 100%;
    margin: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

body #universo #container #img-model #photos .img-card img {
    width: 100%;
    height: 20rem;
    background-color: #f2f2f2;
}

body #universo #container #img-model #photos .img-card p {
    display: flex;
    font-size: 1.1rem;
    line-height: 1.5rem;
    flex-direction: column;
}

/* Comprar agora ------------------------------------------------- */

body #universo #container #comprarAgora {
    display: flex;
    margin: 2rem 5rem;
    align-items: center;
    flex-direction: column;
    border-bottom: 2px solid #000;
}

body #universo #container #comprarAgora a {
    width: 20rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    text-align: center;
    padding: 1rem 1rem;
    border-radius: 1.5rem;
    text-decoration: none;
    background-color: #276749;
    color: rgba(255, 255, 255, 0.92);
}

body #universo #container #comprarAgora #garantia {
    font-size: .9rem;
    margin-top: .5rem;
    font-weight: bold;
    background-color: transparent;
}

/* Footer --------------------------------------------------------------- */

footer {
    display: flex;
    margin: 2rem 5rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

footer h6 {
    margin: 4rem 1rem;
    font-size: 1.1rem;
}


footer #footerBottom {
    width: 100%;
    display: flex;
    justify-content: end;
}

footer #footerBottom ul {
    display: flex;
    flex-direction: row;
}

footer #footerBottom ul li {
    margin: 1rem;
    list-style: none;
}

footer #footerBottom ul li a {
    color: #000;
    text-decoration: none;
}

/* Funcionalidade de Acessibilidade ------------------------------------------- */

.contrast {
    background-color: #fff;
}

.textContrast {
    color: #000;
}

body #functions-accessibilitys {
    top: 20px;
    z-index: 1;
    width: auto;
    right: 10px;
    position: fixed;
    background: #f2f2f2;
}

body .video-functions {
    display: flex;
    padding: .5rem;
    margin-top: .5rem;
    justify-content: space-evenly;
}

body .video-functions button {
    width: 5rem;
    height: 3rem;
    font-size: .8rem;
}

body .video-functions #subtitles {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body .video-functions #subtitles #subtitleSelect {
    margin-top: .5rem;
}

body .video-functions #videoSpeed {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body .video-functions #videoSpeed #speed {
    margin-top: .5rem;
}

body #functions-accessibilitys ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

body #functions-accessibilitys ul li {
    width: 3rem;
    margin: .2rem;
    padding: .5rem;
    list-style: none;
}

body #functions-accessibilitys ul li button {
    width: 100%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gg-edit-contrast {
    width: 16px;
    height: 16px;
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 100px;
    box-shadow: 0 0 0 2px;
    box-sizing: border-box;
    border: 2px solid transparent;
    transform: scale(var(--ggs,1));
}

.gg-edit-contrast::before {
    width: 6px;
    content: "";
    height: 12px;
    display: block;
    position: absolute;
    box-sizing: border-box;
    background: currentColor;
}
  
.mascara {
    top: 50%;
    left: 50%;
    width: 99%;
    height: 10rem;
    z-index: 9999;
    position: absolute;
    pointer-events: none;
    border: 2px dashed #000;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.5);
}

.escurecer {
    filter: brightness(0.8);
}

.clarear {
    filter: brightness(1.8);
    background-color: rgba(255, 255, 255, 0.5);
 }