/* ================================================================== */
/* RESET BÁSICO                                                        */
/* ================================================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	background: #F4F1EA;
}

body {
	font-family: "Inter", system-ui, sans-serif;
	color: #0E0E0E;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

::selection {
	background: #DA291C;
	color: #F4F1EA;
}


/* ================================================================== */
/* LIGAÇÕES                                                            */
/* ================================================================== */

a {
	color: #004680;
	text-decoration: none;
}

a:hover {
	color: #DA291C;
}


/* ================================================================== */
/* PADRÃO DE FUNDO (linhas decorativas subtis)                        */
/* ================================================================== */

.bg-pattern {
	position: fixed;
	top: 50%;
	left: 0;
	right: 0;
	height: 256px;
	transform: translateY(-50%);
	z-index: 0;
	pointer-events: none;
	opacity: 0.08;
	background-image: url("../images/byp-pattern.svg");
	background-size: 64px 64px;
	background-position: top left;
	background-repeat: repeat;
}


/* ================================================================== */
/* CONTEÚDO PRINCIPAL                                                  */
/* ================================================================== */

.main {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 60px); /* deixa espaço para o rodapé */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 48px 24px;
	gap: 32px;
}

.logo {
	display: block;
	width: 280px;
	height: auto;
}

.title {
	font-family: "Space Grotesk", "Inter", sans-serif;
	font-weight: 700;
	font-size: 56px;
	letter-spacing: -0.035em;
	line-height: 0.95;
	max-width: 620px;
}

.intro {
	font-size: 17px;
	line-height: 1.55;
	color: #3A3833;
	max-width: 520px;
}


/* ---------------------------------------------------------------- */
/* Caixa de contacto                                                 */
/* ---------------------------------------------------------------- */

.contact-box {
	display: flex;
	align-items: center;
	gap: 14px;
	border: 1px solid rgba(14, 14, 14, 0.13);
	padding: 12px 20px;
	margin-top: 8px;
}

.contact-label {
	font-family: "JetBrains Mono", ui-monospace, monospace;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7A766E;
}

.contact-divider {
	width: 1px;
	height: 14px;
	background: rgba(14, 14, 14, 0.13);
}

.contact-email {
	font-family: "JetBrains Mono", ui-monospace, monospace;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}


/* ================================================================== */
/* RODAPÉ LEGAL                                                        */
/* ================================================================== */

.footer {
	position: relative;
	z-index: 1;
	padding: 20px 24px;
	border-top: 1px solid rgba(14, 14, 14, 0.12);
	display: flex;
	justify-content: center;
}

.footer-text {
	font-family: "JetBrains Mono", ui-monospace, monospace;
	font-size: 9px;
	letter-spacing: 0.06em;
	color: #A09C93;
	text-align: center;
}


/* ================================================================== */
/* RESPONSIVO                                                          */
/* ================================================================== */

@media (max-width: 600px) {
	.logo   { width: 200px; }
	.title  { font-size: 38px; }
	.intro  { font-size: 15px; }
}
