/* RESET */
/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
	box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
	margin: 0;
}
/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	font-weight: unset;
}
/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}
/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
	font: inherit;
}
/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}
/*
  8. Create a root stacking context
*/
#root,
#__next {
	isolation: isolate;
}
/* RESET */
html {
	height: 100%;
}
body {
	background: #1d2b64; /* fallback for old browsers */
	background: -webkit-linear-gradient(to top, #f8cdda, #1d2b64); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(
		to top,
		#f8cdda,
		#1d2b64
	); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.poppins {
	font-family: "Poppins", sans-serif;
}

.inter {
	font-family: "Inter", sans-serif;
}

.fw-100 {
	font-weight: 100;
}

.fw-400 {
	font-weight: 400;
}

.fw-700 {
	font-weight: 700;
}

/* Componentes */

.section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%; /* Adjust based on your requirements */
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin: 3em auto;
}

.container-1 {
	color: #fafafa;
}

.container-1 h1 {
	font-weight: 100;
	font-size: 5em;
}

.container h1,
.container h2 {
	animation: fadeIn 1s ease-in 1;
}
/* Weather Card */

.card {
	background: #fafafa;
	border: 1.5px solid rgb(230, 232, 236);
	box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px, rgba(0, 0, 0, 0.08) 0 0 0 1px;
	border-radius: 10px;
	padding: 2em 1em;
	width: 40vw;
	max-width: 700px;
	max-height: 390px;
	margin: 0 auto 10px;
}

.card-weather {
	display: flex;
	justify-content: space-between;
}

.temp-holder {
	display: flex;
	flex-direction: column;
	/* Your existing styles here... */
}

.bloco-info {
	margin: 0.2em 0;
	text-align: left;
}

.temp-icon {
	padding: 1em 0.5em;
}

#temp-icon-img {
	transform: scale(2);
}

.locale-container {
	text-align: center;
}

.city-holder {
	text-align: center;
	font-weight: 700;
	font-size: 2em;
	background: linear-gradient(to right, #f8cdda, #1d2b64);
	/* You need to set these to make the background clip to the text */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.region-holder {
	text-align: center;
	background-color: #f8cdda;
	color: #1d2b64;
	display: inline-block;
	margin: 0 auto;
	border-radius: 10px;
	font-size: 1em;
	margin-bottom: 1em;
	padding: 3px 10px; /* Add some padding so the background color has some space around the text */
}

.input-block {
	text-align: center;
	margin: 2em auto 0;
}

input {
	width: 200px;
	height: 30px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	border: 1px solid rgb(230, 232, 236);
	box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px, rgba(0, 0, 0, 0.08) 0 0 0 1px;
	border-radius: 10px;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input:focus {
	border-color: #66afe9;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.sub-text {
	font-weight: 300;
	font-size: 0.8em;
	text-align: center;
	margin: 1em 0;
}

button {
	background-color: #1d2b64;
	color: #fafafa;
	font-weight: 300;
	text-transform: lowercase;
	padding: 0.3em 1em;
	width: 100px;
	border: 1px solid rgb(230, 232, 236);
	border-radius: 10px;
	transition: all 0.3s ease;
}

button:hover {
	color: #1d2b64;
	background-color: #fafafa;
	border-color: #f8cdda;
}

.updated {
	font-size: 0.7em;
	text-align: center;
	margin-top: 1em;
	color: #66afe9;
}

.specialTxt {
	margin-top: 1em;
	background-color: #fafafa;
	padding: 0.5em 1em;
	border-radius: 50px;
}

.efeito-txt {
	font-size: 1.5em;
	background: linear-gradient(
		to right,
		#7953cd 20%,
		#00affa 30%,
		#0190cd 70%,
		#764ada 80%,
		#c21bd1 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	background-size: 500% auto;
	animation: textShine 5s ease-in-out infinite alternate;
}

/* ------------------ Media Queries -------------------------------*/

@media screen and (max-width: 480px) {
	.container-1 h1 {
		font-weight: 100;
		font-size: 4em;
		text-align: center;
		line-height: 1.1em;
		margin-block-end: 0.3em;
	}

	.card {
		padding: 1em 1em;
		width: 90vw;
		height: 50vh;
		max-height: 450px;
		margin: 0 auto 30px;
	}

	input {
		margin-block-end: 0.5em;
	}

	button {
		margin-block-end: 0.4em;
	}

	.updated {
		font-size: 0.7em;
		text-align: center;
		margin-top: 1em;
		color: #66afe9;
	}

	.efeito-txt {
		font-size: 0.8em;
	}

	#city {
		font-size: 0.8em;
	}
}

/* Animations */

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes textShine {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

/* Animations */
