:root {
  --goldDark: #745320;
  --goldLight: #c79437;
  --blueNavy: #1434a4;
  --darkGrey: #333333;
  --areiaClara: #e7d7ba;
  --textBrown: #533f1f;
  --orangeSand: #ca843e;
  --tijolo: #bc573a;
  --areiaHover: #e1d8c8;
  --darkTijolo: #8c3a23;
  --areiaDark: #d5c4a4;
  --orangeDark: #b56427;
  --sandClaro: #e8dcbc;

  --margin: 50px;
  --marginMobile: 30px;
}

html,
body {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*,
::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

.menu.menu-index {
  display: none;
}

.mobile {
  display: none;
}

.menu {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--sandClaro);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--goldDark);
  opacity: 1;
}

.menu > img,
.menu > a {
  width: 100%;
}

.menu > .menu-button  {
  margin-right: 250px;
}

.menu > .container {
  position: absolute;
  right: 8%;
}

.menu > a > .logo {
  margin-left: 8%;
  width: 144px;
  padding-top: 20px;
}

.menu .container .image-hover {
  background-image: url("/image/icons/world-golddark.svg");
  height: 20px;
  width: 20px;
  margin-right: 10px;
}

.menu .container .change-language {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding-top: 25px;
}
.menu .container .change-language a {
  color: var(--goldDark);
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0;
  font-family: "Brandon Grotesque";
}

.hero {
  height: 280px;
  width: 100%;
  position: absolute;
  background: rgb(110, 110, 110);
  background: linear-gradient(
    0deg,
    rgba(110, 110, 110, 0) 0%,
    rgba(0, 0, 0, 0.15) 52%,
    rgba(54, 72, 102, 0.7) 100%
  );
}
.container > .hero {
  width: 100%;
}

.container > .hero .container {
  height: 30px;
  position: relative;
  width: 100%;
  top: 35px;
  padding-left: 150px;
}

.container > .hero .container > a {
  cursor: pointer;
  height: 105px;
  width: 276px;
}

.container > .hero .container .change-language {
  position: absolute;
  right: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.container > .hero .container .image-hover {
  background-image: url("/image/icons/world-white.svg");
  height: 20px;
  width: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.container > .hero .container .change-language img {
  margin-right: 10px;
}
.container > .hero .container .change-language a {
  color: white;
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0;
  font-family: "Brandon Grotesque";
  transition: color 0.3s ease-in-out;
}

*:hover {
  transition: color 0.3s ease-in-out;
}
.container > .hero .container .change-language:hover a,
.saber-mais-container .icons-container a:hover {
  color: #b87f25;
}

.container > .hero .container .change-language:hover .image-hover {
  background-image: url("/image/icons/world-goldlight.svg");
}

.biografia .icons-container a:hover {
  color: #b87f25;
}

.saber-mais-container a:hover,
footer > .made:hover {
  color: #b87f25;
}

@media only screen and (max-width: 880px) {
  .container > .hero .container .change-language {
    right: 50px;
  }

  .mobile {
    display: block;
  }

  .container > .hero .container {
    padding-left: 50px;
  }

  .container > .hero .container > a .logo {
    height: 105px;
    width: 276px;
  }

  .container > .hero .container .change-language a {
    font-size: 23px;
  }

  .container > .hero .container .image-hover {
    background-image: url("/image/icons/world-white.svg");
    height: 20px;
    width: 20px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .menu {
    height: 60px;
  }
  .menu .container .change-language a {
    font-size: 14px;
  }

  .menu .container .image-hover {
    transform: scale(0.6);
    margin-right: 1px;
    margin-bottom: 1px;
  }

  .menu > a > .logo {
    margin-left: 8%;
    width: 80px;
    padding-top: 15px;
  }
  .menu .container .change-language {
    padding-top: 15px;
  }
  .container > .hero .container .change-language {
    right: 30px;
  }

  .container > .hero .container {
    padding-left: 30px;
  }

  .container > .hero .container > a .logo {
    height: 50px;
    width: 130px;
  }

  .container > .hero .container .change-language a {
    font-size: 15px;
  }

  .container > .hero .container .image-hover {
    background-image: url("/image/icons/world-white.svg");
    height: 20px;
    width: 20px;
    margin-right: 10px;
  }
}

body > .container > img {
  height: 100vh;
  object-fit: cover;
  width: 100vw;
}

body > .container {
  height: 100vh;
  width: 100vw;
  position: relative;
  top: 0;
  left: 0;
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center horizontally */
  gap: 10px; /* Adjust spacing */
}

.container > .container-background {
  position: absolute;
}

body > .container .solar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 430px;
  object-fit: cover;
  transform: translate(-50%, -80%);
}

body > .container .egipto {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 690px;
  height: 150px;
  object-fit: cover;
  transform: translate(-50%, 15%);
}

.icons {
  display: flex;
  gap: 10px; /* Space between icons */
}

body > .container .facebook {
  display: flex;
  top: 90%;
  left: 47.5%;
  width: 28px;
  height: 28px;
  object-fit: cover;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 5px 4px 5px rgba(0, 0, 0, 0.4);
}

body > .container .instagram {
  display: flex;
  top: 90%;
  left: 50%;
  width: 28px;
  height: 28px;
  object-fit: cover;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 5px 4px 5px rgba(0, 0, 0, 0.4);
}

body > .container .title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 800px;
  text-align: center;
  transform: translate(-50%, -5%);
  color: white;
  font-family: "Brandon Grotesque";
  font-weight: 700;
  text-shadow: 5px 4px 5px rgba(0, 0, 0, 0.4);
  font-size: 35px;
  letter-spacing: 3px;
}

body .brevemente-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 74%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 430px;
  color: white;
  font-family: "Brandon Grotesque";
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 32px;
  width: 100%;
}

.brevemente-container > .ano {
  font-weight: 400;
  font-size: 26px;
}

@media (max-width: 800px) {
  .desktop {
    display: none;
  }

  body > .container .solar {
    width: 256px;
    height: 256px;
    top: 35%;
  }

  body > .container .title {
    font-size: 22px;
    letter-spacing: 3px;
    width: 100vw;
    top: 35%;
  }

  body > .container .egipto {
    width: 200px;
    height: 120px;
    top: 48%;
  }

  body .brevemente-container {
    font-size: 26px;
    top: 40%;
    text-shadow: none;
    line-height: 22px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  body > .container .egipto {
    width: 280px;
    height: 60px;
    top: 33%;
  }

  body .brevemente-container {
    top: 38%;
  }
}

.body-container {
  background-color: var(--sandClaro);
  height: auto;
  position: relative;
}

.body-container > .description p {
  color: var(--goldDark);
  font-family: "Raleway";
  line-height: 46px;
  font-size: 25px;
}

.body-container > .description > .container-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  padding-top: 145px;
}

.body-container > .description > .container-text > p {
  max-width: 800px;
  z-index: 10;
}

.body-container .solar {
  position: absolute;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

.medium {
  font-weight: 500;
}

.body-container > .description > .container-text > .separation {
  margin-top: 116px;
  height: 36px;
  width: 100%;
}

.body-container > .description > .image {
  position: absolute;
  right: -6%;
  /* height: 100px; */
  top: 7.8%;
}
.body-container > .description > .solar-right {
  position: absolute;
  right: 76px;
  height: 417px;
  top: 3%;
  max-width: 417px;
  width: 100%;
}
.body-container > .description > .solar {
  position: absolute;
  left: 160px;
  height: 300px;
  top: 7.5%;
}

.body-container > .description > .container-text > .eye-gold {
  width: 400px;
  height: 180px;
  margin-top: 70px;
  margin-bottom: 70px;
}

.body-container > .description > .container-text .grace-tree {
  width: 700px;
  height: 550px;
  object-fit: cover;
  object-position: 30% 35%;
  margin-bottom: 70px;
}

.body-container > .description .separation-top {
  margin-bottom: 20px;
  max-width: 2000px;
  height: 175px;
  width: 100%;
  padding-left: 150px;
  padding-right: 150px;
}

.body-container > .description > .image > .leon {
  height: 500px;
  right: 0;
}

.mask-container {
  width: 1100px;
  height: 750px;

  /* Apply the mask to the container */
  -webkit-mask-image: url("/image/mask-house.svg");
  mask-image: url("/image/mask-house.svg");

  -webkit-mask-size: cover;
  mask-size: cover;

  overflow: hidden;
  position: absolute;
  left: -580px;
  top: 250px;

  transform: scale(0.94);
  z-index: 0;
}

.masked-image {
  width: 700px;
  height: 750px;

  background-image: url("/image/home/house.webp");
  background-size: cover;
  background-position: center top;

  /* This moves the image slightly upward */
  transform: translate(480px, 20px);
}

@media only screen and (max-width: 1560px) {
  .body-container > .description .separation-top {
    margin-bottom: 20px;
    padding-left: var(--margin);
    padding-right: var(--margin);
  }

  .body-container > .description > .container-text {
    padding-top: var(--margin);
  }
  .body-container > .description > .container-text > p {
    margin-left: var(--margin);
    margin-right: var(--margin);
  }

  .body-container > .description > .container-text > p {
    max-width: 600px;
  }

  .body-container > .description p {
    font-size: 20px;
    line-height: 36px;
  }

  .mask-container {
    transform: scale(0.55);
    top: 130px;
  }

  .body-container > .description > .solar-right {
    transform: scale(0.6);
    right: 0%;
    top: 2%;
  }

  .body-container > .description > .solar {
    transform: scale(0.8);
    top: 5.5%;
    left: 20px;
  }

  .body-container > .description > .container-text > .separation {
    margin-top: 80px;
  }
  .body-container > .description > .image > .leon {
    height: calc(400px * 0.6);
    right: 0;
  }

  .body-container > .description > .image {
    top: 9%;
    right: -6%;
  }
}

@media only screen and (max-width: 1000px) {
  .body-container > .description > .solar-right {
    right: -6%;
  }
}

@media only screen and (max-width: 880px) {
  .separation-top.desktop {
    display: none;
  }

  .body-container > .description .separation-top {
    margin-bottom: 10px;
    max-width: 100%;
    height: 100px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .mask-container {
    top: 160px;
    transform: scale(0.4);
  }

  .body-container > .description > .solar {
    top: 4%;
    transform: scale(0.7);
    left: -10px;
  }

  .body-container > .description > .solar-right {
    transform: scale(0.6);
    right: -10%;
    top: 2%;
  }

  .body-container > .description > .container-text > .eye-gold {
    width: 170px;
    height: 170px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 880px) {
  .body-container > .description > .solar {
    display: none;
  }

  .body-container > .description > .solar-right {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .body-container > .description .separation-top {
    margin-bottom: 30px;
    margin-top: 10px;
    height: 30px;
    width: auto;
    padding-left: var(--marginMobile);
    padding-right: var(--marginMobile);
  }

  .body-container > .description > .container-text {
    padding-top: 20px;
  }
  .body-container > .description > .container-text > p {
    margin-left: var(--marginMobile);
    margin-right: var(--marginMobile);
  }

  .body-container > .description > .container-text > p {
    max-width: 400px;
  }

  .body-container > .description p {
    font-size: 14px;
    line-height: 20px;
  }

  .mask-container {
    transform: scale(0.28);
    top: -0.2%;
  }

  .masked-image {
    transform: translate(552px, 20px);
  }

  .body-container > .description > .solar-right {
    transform: scale(0.4);
    right: -27%;
    top: 1%;
  }

  .body-container > .description > .solar {
    transform: scale(0.6);
    top: 4%;
    left: -24%;
  }

  .body-container > .description > .container-text > .separation {
    margin-top: 40px;
    width: 200px;
  }

  .body-container > .description > .image > .leon {
    height: calc(387px * 0.6);
    right: 0;
  }

  .body-container > .description > .image {
    top: 24%;
  }

  .body-container > .description > .container-text > .eye-gold {
    transform: scale(0.7);
    margin-top: 5px;
    margin-bottom: 5px;
    width: 160px;
  }

  .body-container > .description > .container-text .grace-tree {
    padding: 0 30px;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: 30% 35%;
    margin-bottom: 30px;
  }

  .body-container .solar {
    position: absolute;
    width: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    top: 9%;
    z-index: 0;
  }
}

/**-- SECTION VIDEO */
.body-container > .container-video {
  height: 830px;
  width: 1620px;
  margin: 150px auto;
  background-color: var(--tijolo);
  margin-top: 140px;
  position: relative;
  margin-bottom: 90px;
}
.body-container > .container-video > .separation-tijolo {
  position: absolute;
  left: 0;
  margin-top: 8px;
  margin-bottom: 19px;
  margin-left: 17px;
}

.body-container > .container-video > .separation-tijolo2 {
  position: absolute;
  right: 0;
  margin-top: 8px;
  margin-bottom: 19px;
  margin-right: 17px;
}

.body-container > .container-video > .video {
  height: 830px;
}

@media only screen and (max-width: 1780px) {
  .body-container > .container-video > .video {
    height: 730px;
  }

  .body-container > .container-video {
    height: 730px;
    max-width: 1520px;
    width: 100%;
    margin-left: 100px auto;
  }

  .body-container > .container-video > .separation-tijolo {
    margin-top: 19px;
    margin-bottom: 19px;
    height: 680px;
  }

  .body-container > .container-video > .separation-tijolo2 {
    margin-top: 19px;
    margin-bottom: 19px;
    height: 680px;
  }
}

@media only screen and (max-width: 1579px) {
  .body-container > .container-video > .video {
    height: 630px;
  }

  .body-container > .container-video {
    height: 630px;
    max-width: 1100px;
    width: 100%;
    margin-left: 100px auto;
  }

  .body-container > .container-video > .separation-tijolo {
    margin-top: 19px;
    margin-bottom: 19px;
    height: 580px;
  }

  .body-container > .container-video > .separation-tijolo2 {
    margin-top: 19px;
    margin-bottom: 19px;
    height: 580px;
  }
}

@media only screen and (max-width: 1173px) {
  .body-container > .container-video > .video {
    height: 530px;
  }

  .body-container > .container-video {
    height: 530px;
    max-width: 800px;
    width: 100%;
    margin-left: 100px auto;
  }

  .body-container > .container-video > .separation-tijolo {
    margin-top: 19px;
    margin-bottom: 19px;
    height: 480px;
  }

  .body-container > .container-video > .separation-tijolo2 {
    margin-top: 19px;
    margin-bottom: 19px;
    height: 480px;
  }
}

@media only screen and (max-width: 880px) {
  .body-container > .container-video > .video {
    height: 430px;
  }

  .body-container > .container-video {
    height: 430px;
    max-width: 600px;
    width: 100%;
    margin-left: 100px auto;
  }

  .body-container > .container-video > .separation-tijolo {
    margin-top: 19px;
    margin-bottom: 19px;
    height: 380px;
  }

  .body-container > .container-video > .separation-tijolo2 {
    margin-top: 19px;
    margin-bottom: 19px;
    height: 380px;
  }
}
@media only screen and (max-width: 800px) {
  .body-container > .container-video > .separation-tijolo {
    display: block;
  }

  .body-container > .container-video > .separation-tijolo2 {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .body-container > .container-video > .separation-tijolo {
    display: none;
  }

  .body-container > .container-video > .separation-tijolo2 {
    display: none;
  }
  .body-container > .container-video {
    width: 350px;
    height: 470px;

    margin: 0 auto;
    margin-top: 50px;
  }

  .body-container > .container-video video {
    width: auto;
    height: 470px;
  }

  .body-container > .container-video > .separation-tijolo {
    height: 450px;
    width: 50px;
  }

  .body-container > .container-video > .separation-tijolo2 {
    height: 460px;
    margin-right: 8px;
  }
}

/** escarelho section */
.center {
  display: flex;
  justify-content: center;
}

.column-direction {
  flex-direction: column;
}
.align-center {
  align-items: center;
}

.religion-egipto {
  position: relative;
  margin-top: 120px;
}
.religion-egipto > .escaravelho-gold {
  position: absolute;
  right: 240px;
}
.religion-egipto > .egipto-right {
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 450px;
  top: -4%;
  height: auto;
}

.religion-egipto .grace-alone {
  width: 700px;
  height: 650px;
  object-fit: cover;
}

.religion-egipto > .escaravelho-gold2 {
  position: absolute;
  left: -4%;
  transform: rotate(0);
  height: auto;
  max-width: 300px;
  width: 100%;
  top: 36.8%;
}
.religion-egipto > .container-text {
  padding-top: 10px;
}
.religion-egipto > .container-text > .cruz-egipto {
  height: 220px;
  width: 211px;
  margin-bottom: 64px;
}
.religion-egipto > .container-text > p {
  text-align: center;
  color: var(--goldDark);
  font-family: "Raleway";
  width: 100%;
  max-width: 800px;
  line-height: 46px;
  font-size: 25px;
  padding-bottom: 64px;
}

.religion-egipto > .container-text > .second-text {
  line-height: 40px;
  font-size: 22px;
  padding-top: 64px;
  padding-bottom: 140px;
}
@media only screen and (max-width: 1437px) {
  .religion-egipto > .egipto-right {
    width: 100%;
    max-width: 350px;
  }
  .religion-egipto > .container-text > p {
    line-height: 43px;
    font-size: 25px;
  }

  .religion-egipto > .container-text > .second-text {
    line-height: 38px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 1280px) {
  .religion-egipto > .egipto-right {
    width: 100%;
    max-width: 300px;
  }
  .religion-egipto > .escaravelho-gold2 {
    max-width: 375px;
  }
}

@media only screen and (max-width: 1166px) {
  .religion-egipto > .container-text > p {
    max-width: 550px;
  }
  .religion-egipto > .container-text > .second-text {
    line-height: 38px;
    font-size: 19px;
  }
}

@media only screen and (max-width: 1000px) {
  .religion-egipto > .escaravelho-gold {
    display: none;
  }

  .religion-egipto > .egipto-right {
    max-width: 200px;
  }

  .religion-egipto > .escaravelho-gold2 {
    max-width: 275px;
  }
}

@media only screen and (max-width: 700px) {
  .religion-egipto > .escaravelho-gold2 {
    position: absolute;
    margin-top: 20px;
    height: auto;
    width: 150px;
    top: 1.5%;
    left: -50px;
  }
}
@media only screen and (max-width: 480px) {
  .religion-egipto {
    position: relative;
    margin-top: 30px;
  }

  .religion-egipto .grace-alone {
    width: 100%;
    height: 340px;
    object-fit: cover;
  }

  .religion-egipto > .egipto-right {
    display: none;
  }

  .religion-egipto > .container-text > .cruz-egipto {
    height: auto;
    width: 130px;
    margin-bottom: 30px;
    margin-top: 40px;
  }
  .religion-egipto > .container-text {
    margin: 0 var(--marginMobile);
  }

  .religion-egipto > .container-text > p {
    line-height: 22px;
    font-size: 16px;
    padding-bottom: 35px;
  }
  .religion-egipto > .container-text > .second-text {
    line-height: 20px;
    font-size: 14px;
    padding-bottom: 50px;
    padding-top: 35px;
  }
  .religion-egipto > .escaravelho-gold2 {
    display: none;
  }
}

/**slider **/
.body-container > .center {
  padding-bottom: 60px;
  background-color: var(--sandClaro);
}
.slider {
  width: 1768px;
  height: 834px;
  background-color: var(--areiaDark);
  display: flex;
  overflow: hidden;
  position: relative;
  margin: 0 60px 0 60px;
  border: none;
}

.slider:before,
.slider:after {
  content: url("/image/slider-arrow.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding-left: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sandClaro);
  cursor: pointer;
}
.slider:before {
  transform: rotate(180deg);
}
.slider:after {
  left: auto;
  right: 0;
}
.slider > div {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0s ease-in-out;
}

.slider > div > img {
  height: 834px;
  transition: all 0s ease-in-out;
}
@media only screen and (max-width: 840px) {
  .slider {
    width: 520px;
    height: 400px;
    margin: 0 20px 0 20px;
  }
  .slider:before,
  .slider:after {
    content: url("/image/arrow-gold-mobile.svg");
    padding-left: 10px;
  }

  .slider > div > img {
    height: 400px;
    max-width: 520px;
  }
  .body-container {
    background-color: var(--sandClaro);
    height: auto;
    position: relative;
  }
}
@media only screen and (max-width: 480px) {
  .slider {
    width: 420px;
    height: 300px;
    margin: 0 20px 0 20px;
  }
  .slider:before,
  .slider:after {
    content: url("/image/arrow-gold-mobile.svg");
    padding-left: 10px;
  }

  .slider > div > img {
    height: 300px;
    max-width: 100%;
    object-fit: cover;
  }
  .body-container {
    height: auto;
    position: relative;
  }
}

.slider-bio {
  height: 800px;
  width: 600px;
  background-color: #e7d7ba;
  display: flex;
  overflow: hidden;
  position: relative;
  margin: 0;
  border: none;
}
.slider-bio :nth-child(2) {
  width: auto;
  height: auto;
}
.slider-bio > div {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: margin-left 0.3s;
}

.slider-bio > div > img {
  width: 600px;
  height: 800px;
  object-fit: cover;
}

.biografia {
  margin-top: 150px;
  margin-bottom: 100px;
  height: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.biografia .title {
  color: var(--goldDark);
  text-transform: uppercase;
  padding-bottom: 24px;
  font-size: 32px;
  line-height: 28px;
  letter-spacing: 1.6px;
  font-family: "Brandon Grotesque";
  font-weight: 500;
}

.biografia p {
  font-size: 18px;
  color: var(--goldDark);
  font-family: "Raleway";
  max-width: 800px;
  width: 100%;
  font-weight: 400;
  line-height: 32px;
  padding-bottom: 27px;
  padding-right: 30px;
  margin-left: 50px;
}

.saber-mais-container .icons-container {
  display: flex;
  align-items: center;
  justify-content: start;
}

.saber-mais-container .icons-container a {
  display: flex;
  align-items: center;
  transition: color 0.3s ease-in-out;
  font-size: 16px;
}
.saber-mais-container .icons-container .facebook {
  padding-right: 30px;
}
.saber-mais-container .icons-container a img {
  padding-right: 10px;
  width: 30px;
}

.biografia .icons-container {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-left: 50px;
}

.biografia .icons-container a {
  display: flex;
  align-items: center;
  margin-right: 40px;
  transition: color 0.3s ease-in-out;
}

.biografia .icons-container a img {
  padding-right: 10px;
}
@media only screen and (max-width: 1000px) {
  .slider-bio {
    transform: scale(0.8);
    margin: 0;
  }

  .slider-bio > div > img {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 840px) {
  .biografia {
    flex-direction: column;
  }
  .slider-bio {
    transform: scale(0.8);
    margin: 0;
  }

  .slider-bio > div > img {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 600px) {
  .slider-bio {
    transform: scale(0.7);
    margin: 0;
  }

  .slider-bio > div > img {
    transform: scale(0.95);
  }
}
@media only screen and (max-width: 480px) {
  .slider-bio {
    height: 550px;
    width: 100%;
    margin: 0;
    transform: scale(1);
  }

  .slider-bio > div > img {
    height: 550px;
    width: 100%;
    object-fit: cover;
  }

  .biografia .title {
    padding-top: 30px;
    padding-left: 15px;
  }

  .biografia p {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    margin-left: 0;
    line-height: 20px;
  }
}

/**EDICAO CONTAINER **/
.edicao-container {
  height: auto;
  padding-top: 120px;
  background-color: var(--orangeSand);
  position: relative;
  padding-bottom: 120px;
}
.edicao-container > .text-container {
  width: 100%;
}
.edicao-container > .text-container > p {
  color: white;
  font-size: 22px;
  line-height: 40px;
  font-family: "Raleway";
  text-align: center;
  max-width: 700px;
  padding-bottom: 15px;
}

.edicao-container > .text-container > .first {
  margin-bottom: 40px;
}

.edicao-container > .text-container > .title {
  font-size: 24px;
  text-transform: uppercase;
  padding-bottom: 2px;
}

.edicao-container > .text-container > .sun {
  margin-top: 60px;
  margin-bottom: 60px;
}
.edicao-container > .sun-left {
  position: absolute;
  left: 16%;
  top: 60%;
}

.edicao-container > .sun-right {
  position: absolute;
  right: 16%;
  top: 60%;
}

.edicao-container > .piramide-left {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(-1);
}

.edicao-container > .piramide-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.edicao-container .key-light {
  width: 164px;
  padding-bottom: 60px;
  padding-top: 60px;
}

.edicao-container .phrase {
  padding-top: 50px;
}

@media only screen and (max-width: 1390px) {
  .edicao-container > .piramide-right,
  .edicao-container > .piramide-left {
    width: 400px;
  }

  .edicao-container > .sun-right {
    right: 10%;
  }

  .edicao-container > .sun-left {
    left: 10%;
  }
}

@media only screen and (max-width: 1160px) {
  .edicao-container > .piramide-right,
  .edicao-container > .piramide-left {
    width: 300px;
  }

  .edicao-container > .sun-right {
    right: 5%;
  }

  .edicao-container > .sun-left {
    left: 5%;
  }
}
@media only screen and (max-width: 880px) {
  .edicao-container > .piramide-right,
  .edicao-container > .piramide-left {
    display: none;
  }

  .edicao-container > .sun-left {
    display: none;
  }

  .edicao-container > .sun-right {
    top: 60px;
    width: 80px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .edicao-container {
    padding: 0 30px;
    padding-top: 125px;
  }
}
@media only screen and (max-width: 480px) {
  .edicao-container {
    height: auto;
    padding: 0 30px;
    padding-top: 180px;
    padding-bottom: 40px;
  }
  .edicao-container > .sun-right {
    top: 100px;
    width: 80px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .edicao-container > .text-container > p {
    font-size: 14px;
    line-height: 20px;
    max-width: 400px;
    padding-bottom: 10px;
  }

  .edicao-container .phrase {
    padding-top: 20px;
  }

  .edicao-container > .text-container > .first {
    margin-bottom: 20px;
  }

  .edicao-container > .text-container > .sun {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 120px;
  }

  .edicao-container > .text-container > .title {
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 2px;
  }

  .edicao-container .key-light {
    width: 120px;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

/**desciption container **/
.description-container {
  height: 2300px;
  background-color: #2f8553;
  position: relative;
}

.description-container > .separation-desert {
  position: absolute;
  top: 0;
  width: 100%;
}

.description-container > .solar {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 295px;
  width: 100%;
}

.description-container > .text-container {
  position: relative;
  z-index: 10;
  color: white;
  font-family: "Raleway";
  font-size: 22px;
  line-height: 40px;
  padding-top: 850px;
}

.description-container > .text-container p {
  max-width: 776px;
  width: 100%;
  text-align: center;
}

.description-container > .text-container .first {
  margin-bottom: 60px;
}

.description-container > .text-container .second {
  margin-bottom: 60px;
}

.description-container > .text-container .eye-white {
  margin-bottom: 60px;
}
.description-container > .text-container .last {
  font-size: 32px;
  margin-top: 10px;
}

.description-container .peru-house {
  width: 700px;
  height: 450px;
  object-fit: cover;
  object-position: 30% 50%;
  margin-bottom: 60px;
}

.italic {
  font-style: italic;
}
.constellation-moon {
  position: absolute;
  top: 50%;
  left: 7%;
}

.constellation-sun {
  position: absolute;
  top: 50%;
  right: 7%;
}
@media only screen and (max-width: 1550px) {
  .description-container > .separation-desert {
    height: auto;
  }
}

@media only screen and (max-width: 880px) {
  .description-container > .text-container {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 800px;
  }

  .description-container > .separation-desert {
    height: auto;
  }
}

@media only screen and (max-width: 880px) {
  .description-container > .text-container {
    padding-top: 700px;
  }
}
@media only screen and (max-width: 480px) {
  .description-container {
    padding-bottom: 90px;
  }
  .description-container > .separation-desert {
    height: auto;
  }

  .description-container > .solar {
    top: 16%;
    max-width: 125px;
  }

  .description-container {
    height: auto;
  }

  .description-container > .text-container {
    font-size: 14px;
    line-height: 22px;

    padding: 0 var(--marginMobile);
    padding-top: 200px;
  }

  .description-container > .text-container .first {
    margin-bottom: 35px;
  }

  .description-container > .text-container .second {
    margin-bottom: 35px;
  }

  .description-container > .text-container .eye-white {
    margin-bottom: 35px;
    width: 100px;
  }

  .description-container > .text-container .last {
    font-size: 20px;
    margin-top: 10px;
    padding: 0 20px;
  }

  .description-container .peru-house {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: 30% 50%;
    margin-bottom: 35px;
  }
}

/**SABER MAIS CONTAINER**/

.editions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.editions h1 {
  text-transform: uppercase;
  color: var(--goldDark);
  font-size: 32px;
  font-family: "Brandon Grotesque";
  margin-bottom: 15px;
  margin-top: 120px;
}
.editions p {
  font-size: 22px;
  line-height: 32px;
  color: var(--goldDark);
  font-family: "Raleway";
}

.saber-mais-container {
  background-color: #e7d7ba;
  height: auto;
  position: relative;
  padding-bottom: 60px;
}

.saber-mais-container > .text-container {
  padding-top: 100px;
}

.saber-mais-container .saber-mais {
  font-size: 72px;
  color: var(--goldDark);
  font-family: "Brandon Grotesque";
  max-width: 468px;
  width: 100%;
  text-transform: uppercase;
  line-height: 103px;
}

.saber-mais-container > .text-container > .text-container-email {
  font-size: 22px;
  color: var(--goldDark);
  font-family: "Raleway";
  max-width: 492px;
  width: 100%;
  margin-left: 200px;
  font-weight: 400;
  line-height: 32px;
}

.saber-mais-container a,
.saber-mais-container a:link,
.saber-mais-container a:visited,
.saber-mais-container a:active {
  color: var(--goldDark);
}

.saber-mais-container .email {
  color: var(--goldDark);
  line-height: 32px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Raleway";
  font-size: 21px;
  margin-top: 80px;
}

.saber-mais-container .facebook {
  padding-right: 5px;
}

.saber-mais-container .separation-lamp {
  position: absolute;
  top: -11%;
}

.saber-mais-container .separation-right-lamp {
  position: absolute;
  top: -11%;
  right: 0;
  transform: scaleX(-1);
}

.saber-mais-container .solar {
  position: absolute;
  width: 330px;
  top: 2%;
  z-index: 0;
}
.saber-mais-container .portal-sagrado {
  font-family: "Brandon Grotesque";
  line-height: 46px;
  font-size: 48px;
  color: var(--goldDark);
  margin-top: 10px;
  z-index: 10;
}

.saber-mais-container .information {
  font-family: "Brandon Grotesque";
  line-height: 36px;
  font-size: 23px;
  color: var(--goldDark);
  max-width: 600px;
  margin-left: 0 auto;
  margin-top: 28px;
  z-index: 10;
  text-align: center;
}

.saber-mais-container .information p {
  margin-right: 10px;
}

.saber-mais-container .information img {
  width: 12px;
  cursor: pointer;
}

.saber-mais-container .container-video {
  margin: 0 auto;
}
.saber-mais-container h4 {
  text-transform: uppercase;
  color: var(--goldDark);
  font-size: 32px;
  font-family: "Brandon Grotesque";
  margin-top: 60px;
}

.edicoes {
  padding-top: 0px;
}
.saber-mais-container .container-video video {
  height: 830px;
}

.saber-mais-container .container-video.edicao-2025 {
  background-color: #9a7132;
  max-width: 1000px;
  width: 100%;
  height: 830px;
}

.saber-mais-container .container-video.edicao-2024 {
  background-color: #ac543a;
  max-width: 1000px;
  width: 100%;
  height: 830px;
}

.saber-mais-container .container-video.edicao-2023 {
  background-color: #73c4b3;
  max-width: 1000px;
  width: 100%;
  height: 830px;
}

.saber-mais-container .container-video.edicao-2022 {
  background-color: #fab630;
  max-width: 1000px;
  width: 100%;
  height: 830px;
}

.saber-mais-container .container-video.edicao-2021 video {
  max-width: 52%;
  height: auto;
}

.saber-mais-container .last-division {
  margin-top: 40px;
}

@media only screen and (max-width: 1565px) {
  .saber-mais-container .separation-right-lamp {
    width: 300px;
    top: -11.5%;
  }

  .saber-mais-container .separation-lamp {
    width: 300px;
    top: -11.5%;
  }
}

@media only screen and (max-width: 1216px) {
  .saber-mais-container > .text-container {
    padding-left: 50px;
    padding-right: 50px;
  }
  .saber-mais-container .saber-mais {
    font-size: 60px;
    max-width: 468px;
  }

  .saber-mais-container > .text-container > .text-container-email {
    margin-left: 100px;
  }
}

@media only screen and (max-width: 880px) {
  .saber-mais-container .separation-right-lamp {
    display: block;
    width: 300px;
    top: -12.5%;
  }

  .saber-mais-container .separation-lamp {
    display: block;
    width: 300px;
    top: -12.5%;
  }
  .saber-mais-container > .text-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .saber-mais-container .saber-mais {
    font-size: 40px;
    line-height: 60px;
  }

  .saber-mais-container > .text-container > .text-container-email {
    margin-left: 10px;
    font-size: 16px;
    line-height: 30px;
  }

  .edicoes {
    padding-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .saber-mais-container .separation-lamp {
    display: block;
    width: 100px;
    top: -2.5%;
  }

  .saber-mais-container .separation-right-lamp {
    display: block;
    width: 100px;
    top: -2.5%;
  }
  .saber-mais-container {
    padding-bottom: 30px;
  }
  .saber-mais-container > .text-container {
    flex-direction: column;
    margin: 0 auto;
  }

  .saber-mais-container .saber-mais {
    font-size: 30px;
    text-align: center;
  }

  .saber-mais-container > .text-container > .text-container-email {
    font-size: 16px;
    max-width: 400px;
    text-align: center;
    margin-left: 0;
    line-height: 22px;
    padding: 0 20px;
  }

  .saber-mais-container .saber-mais {
    padding-top: 50px;
  }
  .saber-mais-container > .text-container {
    padding-top: 10px;
  }

  .saber-mais-container .solar {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 4.5%;
    width: 200px;
  }

  .saber-mais-container .portal-sagrado {
    line-height: 46px;
    font-size: 30px;
    margin-top: 140px;
  }

  .saber-mais-container h4 {
    font-size: 16px;
    margin-top: 70px;
  }

  .saber-mais-container .container-video.edicao-2025 video {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
    height: 630px;
  }

  .saber-mais-container .container-video.edicao-2025 {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
    height: 630px;
  }

  .saber-mais-container .container-video.edicao-2024 {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
    height: 630px;
  }
  .saber-mais-container .container-video.edicao-2024 video {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
    height: 630px;
  }

  .saber-mais-container .container-video.edicao-2023 {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
    height: 630px;
  }

  .saber-mais-container .container-video.edicao-2023 video {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
    height: 630px;
  }
  .saber-mais-container .container-video.edicao-2022 {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
    height: 630px;
  }

  .saber-mais-container .container-video.edicao-2022 video {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
    height: 630px;
  }
  .saber-mais-container .container-video.edicao-2021 {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
  }

  .saber-mais-container .container-video.edicao-2021 video {
    background-color: var(--areiaClara);
    max-width: 350px;
    width: 100%;
  }

  .saber-mais-container .last-division {
    margin-top: 50px;
    width: 200px;
  }
  .saber-mais-container .icons-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: unset;
  }
  .saber-mais-container .icons-container a {
    padding-bottom: 5px;
  }

  .saber-mais-container .information {
    line-height: 20px;
    font-size: 18px;
    max-width: 400px;
    margin-top: 9px;
  }

  .editions h1 {
    margin-top: 100px;
    text-transform: uppercase;
    color: var(--goldDark);
    font-size: 16px;
    font-family: "Brandon Grotesque";
    margin-bottom: 15px;
  }
  .editions p {
    font-size: 14px;
    line-height: 25px;
    color: var(--goldDark);
    font-family: "Raleway";
  }
}

footer {
  background-color: var(--areiaDark);
  height: 54px;
  padding: 0 150px;
  display: flex;
  justify-content: space-between;
}

footer > p {
  font-family: "Raleway";
  line-height: 32px;
  font-size: 14px;
  padding-top: 10px;
  color: var(--goldDark);
}

footer a,
footer a:link,
footer a:visited,
footer a:active {
  color: var(--goldDark);
  cursor: pointer;
}

footer > .made {
  font-family: "Courier New", Courier, monospace;
}

@media only screen and (max-width: 730px) {
  footer {
    padding: 0 30px;
  }

  footer > p {
    line-height: 20px;
    font-size: 10px;
  }
}

.icons-container {
  font-family: "Raleway";
}
