
body {
	margin:0;
	min-height: 100vh;
	background-color: #A912AB;
	background-image: url("noz-background.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	font-family: "Momo Trust Display", sans-serif;
}

a:link {
    text-decoration: none;
	color:#fff;
}

a:visited {
    text-decoration: none;
	color:#fff;
}

a:hover {
	color:#fff;
}

a:active {
    text-decoration: none;
	color:#fff;
}

p{
	font-family: "Momo Trust Display", sans-serif;
	text-transform: uppercase;
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 146%;
	text-rendering: geometricPrecision;
}

.momo-trust-display-regular {
  font-family: "Momo Trust Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#about-pt{
	display: block;
	position: fixed;
	left: 30px;
	bottom: 30px;
	max-width: 738px;
	margin-right: 30px;
}

#about-en{
	display: none;
	position: fixed;
	left: 30px;
	bottom: 30px;
	max-width: 720px;
	margin-right: 30px;
}

#logo-pt{
	display: block;
	width: 454px;
	height: 41px;
	background-image: url("Logo-Noz-tagline-PT.png");
	background-size: cover;
	background-repeat: no-repeat;
	position: fixed;
	top: 30px;
	left: 30px;
}

#logo-en{
	display: none;
	width: 454px;
	height: 41px;
	background-image: url("Logo-Noz-tagline-EN.png");
	background-size: cover;
	background-repeat: no-repeat;
	position: fixed;
	top: 30px;
	left: 30px;
}

#language{
	display: flex;
	position: fixed;
	top: 30px;
	right: 30px;
	gap: 6px;
}

.language-button-active{
	display: flex;
	width: 38px;
	height: 38px;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0);
	color: #fff;
	text-rendering: geometricPrecision;
	font-family: sans-serif;
	font-weight: 400;
	font-size: 14px;
}

.language-button-inactive{
	display: flex;
	width: 38px;
	height: 38px;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	border: 2px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	text-rendering: geometricPrecision;
	font-family: sans-serif;
	font-weight: 400;
	font-size: 14px;
}

#contact-buttons{
	display: flex;
	position: fixed;
	bottom: 30px;
	right: 30px;
	gap: 6px;
}

.language-button-inactive:hover,
.language-button-active:hover,
.contact-button-linkedin:hover,
.contact-button-instagram:hover,
.contact-button-email:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.contact-button-linkedin{
	display: flex;
	width: 38px;
	height: 38px;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0);
	color: #fff;
	background-image: url("linkedin.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.contact-button-instagram{
	display: flex;
	width: 38px;
	height: 38px;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0);
	color: #fff;
	background-image: url("instagram.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.contact-button-email{
	display: flex;
	width: 38px;
	height: 38px;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0);
	color: #fff;
	background-image: url("email.svg");
	background-repeat: no-repeat;
	background-position: center;
}

mark{
	background-color: #C400C4;
	color: #fff;
}

      @media (max-width: 760px) {
		  body {
		    min-height: 100vh;
		    height: auto;
		    overflow-y: auto;
		    display: flex;
		    flex-direction: column;
		    align-items: left;
		    justify-content: flex-start;
		    padding: 20px 16px;
		    box-sizing: border-box;
		    background-size: cover;
		    background-position: top center; /* opcional, mantém o fundo visível */
		  }

		  /* Remove o fixed de todos os elementos principais */
		  #logo-pt,
		  #logo-en,
		  #about-pt,
		  #about-en,
		  #language,
		  #contact-buttons {
		    position: relative;
		    top: auto;
		    left: auto;
		    bottom: auto;
		    right: auto;
		    margin: 0;
		  }

		  /* Logo ocupa largura total e fica no topo */
		  #logo-pt,
		  #logo-en {
		    width: 100%;
		    max-width: 320px;
		    height: auto;
		    aspect-ratio: 454 / 41; /* mantém proporção */
		    background-size: contain;
		    background-position: center;
		    margin-top: 18px;
		    margin-bottom: 24px;
		    flex-shrink: 0;
		  }

		  /* Texto ocupa toda a largura e quebra normalmente */
		  #about-pt,
		  #about-en {
		    max-width: 100%;
		    margin-bottom: 24px;
		    width: 100%;
		  }

		  /* Ajusta tamanho da fonte para melhor legibilidade */
		  p {
		    font-size: 14px;
		    line-height: 140%;
		  }

		  /* Botões de idioma e contato viram elementos inline, posicionados após o texto */
		  #language {
		    display: flex;
		    gap: 6px;
		    margin-bottom: 12px;
		    align-self: flex-start;
		  }

		  #contact-buttons {
		    display: flex;
		    gap: 6px;
		    align-self: flex-start;
		    margin-bottom: 12px;
		  }

		  /* Remove fixed do body para garantir que tudo role */
		  /* Já está no body acima */
}






