@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1 {
	color: var(--azul);
	text-align: center;
}

h3 {
	color: var(--rosa);
	text-align: center;
	margin-bottom: 1.5rem;
}

:root {
	--rosa: #f6b0ce;
	--azul: #5ebbd6;
	font-family: 'Open Sans', sans-serif;
}

.container {
	animation: fadeIn 1s;
	background-color: white;
	padding: 2rem;
	border-radius: 5px;
	width: 100%;
	max-width: 500px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 1rem 0;
	justify-items: center;
	text-align: center;
}

.btn {
	text-decoration: none;
	color: white;
	background-color: var(--azul);
	border-radius: 5px;
	padding: 0.75rem 1.5rem;
	display: block;
	font-weight: bold;
	transition: background-color 0.3s ease-in-out, transform 0.2s;
}

.btn:hover {
	background-color: var(--rosa);
	transform: scale(1.02);
}

.logotipo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem;
}

.logotipo img {
	max-width: 150px;
	height: auto;
}

.newsletter form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
}

.newsletter input[type='email'],
.newsletter input[type='text'] {
	padding: 0.3rem;
	border: 1px solid var(--azul);
	border-radius: 5px;
	width: 100%;
	max-width: 350px;
}

body {
	background-image: url('../img/fundo.png');
	background-size: auto;
	background-repeat: repeat;
	background-attachment: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 1rem;
}

.inscrever {
	text-decoration: none;
	color: white;
	background-color: var(--rosa);
	border-radius: 5px;
	padding: 0.75rem 1.5rem;
	display: block;
	font-weight: bold;
	transition: background-color 0.3s ease-in-out, transform 0.2s;
	cursor: pointer;
	border: none;
}

.inscrever:hover {
	background-color: var(--azul);
	transform: scale(1.02);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
