/* Porta de idioma — index.html (sem dependências do tema completo) */

@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@300;400;700&display=swap');

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 15px;
	color: #444;
	background: #b2b2b2;
	line-height: 1.5;
}

.site-header {
	flex-shrink: 0;
	background: #fff url('../img/header.png') bottom left repeat-x;
	padding: 1rem 1rem 0.75rem;
}

.site-header__inner,
.site-footer__inner,
.site-main__inner {
	max-width: 940px;
	width: 100%;
	margin-inline: auto;
}

#logo {
	display: inline-block;
}

#logo:hover {
	opacity: 0.8;
}

.site-main {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1rem;
	background: url('../img/oblique-lines.png') repeat-x;
	min-height: 0;
}

.site-main__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
}

.site-main__hero {
	display: block;
	width: auto;
	max-width: min(560px, 92vw);
	height: auto;
}

.language-picker {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.language-picker a {
	display: block;
	line-height: 0;
	transition: opacity 0.2s ease;
}

.language-picker a:hover {
	opacity: 0.85;
}

.site-footer {
	flex-shrink: 0;
	padding: 0.75rem 1rem 1rem;
	background: #333;
	color: #aaa;
	font-size: 13px;
}
