:root {
  /*CORES*/
  --logo-color: #483332;
  --body-color: #2E3136;
  --text-color: #CF8F48;
  --fourth-color: #373B40;
  --text2-color: #fdf2e9;
  --text3-color2: #BF8C60;

  /*FONT SIZE*/
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*FONT WEIGHT*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /* z index*/
  --z-tooltip: 10;
  --z-fixed: 100;

  --header-height: 3.5rem;
}

/*RESPONSIVE*/

@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}


* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: var(--normal-font-size);
  background-color: #7a818e;
}

h1, h2, h3 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
}

p {
  color: #fdf2e9;
}

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

input, button {
  outline: none;
  border: none;
}


/*CLASSE REUTILIZAVEL*/
.container {
  max-width: 1024;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
}

.main {
  overflow: hidden;
}

header {
  /*position: fixed;*/
  width: 100%;
  top: 0;
  right: 0;
  z-index: 10000;
  display: block;
  padding: 1px 10px;
  background-color: var(--fourth-color);
}

.logo {
  width: 20vh;
}

.nav__menu {
  z-index: 1;
  position: fixed;
  bottom: 2rem;
  background-color: var(--fourth-color);
  box-shadow: 0 8px 24px black;
  width: 90%;
  left: 0%;
  right: 0;
  margin: 0 auto;
  padding: 1.30rem 3rem;
  border-radius: 1.25rem;
  transition: .4s;
}

.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__link i {
  font-size: 1.25rem;
}

.nav__link span {
  display: none;
}

.nav__list a {
  padding: 8px 17px;
  color: var(--text2-color);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__list a:hover {
  background-color: var(--text-color);
  border-radius: 2rem;
  transition: 0.1s all linear;
}

.contact {
  background: linear-gradient(0deg, #483332,#2E3136);
}

.contact__container {
  row-gap: 2rem;
}

.contact__images {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 0;
  margin-bottom: 1.2rem;
}

.contact__orbe {
  width: 266px;
  height: 250px;
  background-color: #483332;
  border-radius: 135px 135px 16px 16px;
}

.contact__img {
  position: absolute;
  width: 250px;
  height: 230px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px #CF8F48;
}

.contact__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem .75rem;
  margin-bottom: 2.5rem;
}

.contact__card-title {
  margin-bottom: .5rem;
}

.contact__card-box {
  background-color: #464B53;
  border: 2px solid #909BAC;
  padding: 1.25rem .75rem;
  text-align: center;
  border-radius: 16px;
  height: 260px;
}

.contact__card-box i {
  font-size: 2rem;
  padding: 6px;
}

.contact__card-description {
  font-size: var();
  margin-bottom: 2.5rem;
}

.contact__card-button {
  padding: 1.3rem;
  text-align: center;
  background-color: #bf8c60c5;
  color: #fdf2e9;
  border-radius: 2rem;
  font-size: var(--small-font-size);
  width: 100%;
}

.contact__card-title {
  font-size: var(--normal-font-size);
}

.contact__card-button:hover {
  background-color: #CF8F48;
  color: white;
}

.contact__card-box:hover {
  box-shadow: 0 8px 24px #909BAC;
}

.section__title {
  text-align: center;
}

.footer {
  background-color: #483332;
  text-align: center;
  padding-bottom: 7rem;
}

.logo {
  width: 20vh;
  display: block;
  margin: 0 auto;
}

.sobre-img {
  text-align: center;
  width: 50%;
  margin: 0 auto;
}

.sobre-img img {
  border-radius: 10%;
}


.sobre {
  border: 6mm ridge var(--fourth-color);
  background-color: var(--fourth-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, auto));
  align-items: center;
  gap: 1.5rem;
}

.sobre h2,p {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}









.slider-container {
  position: relative;
  width: 100%;
  background-color: white;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
}

.main-image {
  width: 100%;
  display: block;
  transition: transform 0.5s ease-in-out;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 1rem;
}

.nav-button.prev {
  left: 10px;
}

.nav-button.next {
  right: 10px;
}

.thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  overflow-x: scroll;
}

.thumbnail:first-child {
  margin-left: 200px;
}


.thumbnail {
  width: 60px;
  height: 40px;
  margin: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  /* overflow-x: auto; */
}

.thumbnail.active, .thumbnail:hover {
  opacity: 1;
}





table {
  border: 2px solid var(--text2-color);
  background: #464B53;
  display: block;
  color: var(--text2-color);
  font-size: 1rem;
  padding: 5px 0;
  border-collapse: collapse;
  margin: 15px 0;
}

table tr th{
  text-align: left;
  line-height: 2rem;
  width: 100%;
  padding: 5px 10px;
}

table tr td {
  padding-right: 20px;
}

table tr:nth-of-type(even) {
  background-color: #696e79;
}

.price {
  font-size: 2rem;
  margin: 20px 0;
  text-align: center;
}

.local {
  font-size: 1rem;
  color: #fdf2e9;
  margin-bottom: 25px;
  padding-left: 5px;
}

.house__title {
  color: #fdf2e9;
  text-align: center;
  padding: 30px;
}


.eu i {
  color: #fdf2e9;
  font-size: 1.2rem;
  padding: 7px;
}

.eu a {
  color: #fdf2e9;
}

.eu a:hover {
  color: #CF8F48;
}