:root {
	--color-primary: #736B6B;
	--color-secondary: #F5E8CF;
	--color-tertiary: #EFEFE8;
}

body, html {
	background-color: var(--color-primary);
	font-family: "din-2014", sans-serif;
	font-weight: 400;
	font-style: normal;
	overflow-x: hidden;
}

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  z-index: 999;
  background-color: transparent;
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}

/* Classe ativada com scroll */
.header-scrolled {
  backdrop-filter: blur(10px);
  background-color: rgba(191, 191, 189, 0.3); /* cor do seu header com transparência */
  -webkit-backdrop-filter: blur(10px);
}

.header-scrolled {
  backdrop-filter: blur(10px);
  background-color: rgba(230, 230, 230, 0.8); /* cor do seu header com transparência */
  -webkit-backdrop-filter: blur(10px);
}

.header-scrolled img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(3%) saturate(1659%) hue-rotate(323deg) brightness(96%) contrast(91%);
}

.header-scrolled span {
  filter: brightness(0) saturate(100%) invert(20%) sepia(3%) saturate(1659%) hue-rotate(323deg) brightness(96%) contrast(91%);
}

.logo-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  max-height: 30px;
  object-fit: contain;
  width: 100%;
}

.language-icon {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.language-icon img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Menu hamburguer wrapper */
.menu-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.menu-icon {
  color: #eff0e9;
  font-size: 24px;
  cursor: pointer;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 120%; /* abaixo do botão MENU */
  right: 0;
  background: #eff0e9;
  border: 1px solid #ccc;
  padding: 10px 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 150px;
  z-index: 1000;
}

.dropdown-menu.active {
  display: flex;
}

.dropdown-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.banner {
	color: var(--color-tertiary);
	background-image: url('imgs/banner.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100dvh;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	text-align: right;
}

.overview {
	background-color: var(--color-tertiary);
	padding: 10dvw;
}

.thirty-three {
	background-color: var(--color-primary);
	padding: 10dvw;
	color: var(--color-tertiary);
}

.thirty-three img {
	object-fit: contain;
	border-radius: 35px 35px 0 35px;
	height: 350px;
}

.maxi {
	padding: 10dvw;
	background-image: url('imgs/bg-maxi.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align: right;
}

.maxi img {
	width: 100%;
	border-radius: 0 35px 0 0;
	object-fit: cover;
}

.signature-homes {
	padding: 10dvw;
	background-image: url('imgs/bg-bsh.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: var(--color-tertiary);
}

.signature-homes img {
	width: 100%;
	border-radius: 35px;
	object-fit: cover;
}

.team {
	background-color: var(--color-tertiary);
	padding: 5dvw 10dvw;
}

.team .row {
	text-align: center;
}

.team-col {
	margin-bottom: 30px;
	padding-top: 30px;
}

.team img {
	width: 100%;
	object-fit: cover;
}

.team p {
	margin-bottom: 0;
}

.team h6 {
	margin-top: 1rem;
	font-size: 1.3rem;
}

.team-text {
	text-align: center;
}

.footer {
	background-color: #231f1f;
	text-align: center;
}

.footer-logo img {
	width: 60%;
	padding: 10% 0;
}

.footer-social {
	display: flex;
	justify-content: space-evenly;
	margin: auto;
}

.footer-social img {
	width: 35px;
}

.footer-about, .footer-contact {
	margin: auto;
	padding-top: 1rem;
}

.footer-about a, .footer-contact a {
	color: white;
	text-decoration: none;
}

.img-timeline {
	padding: 100px 200px 0 200px;
}

@media screen and (max-width: 768px) {
  .logo-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .mobile-only {
    display: flex;
  }

}
