* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

html {
  background-color: #e2eaf5;
}

body {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.app-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  grid-column-gap: 100px; /* Ocupa 100% da altura da viewport */
  height: 100vh;
}

.navbar-container {
  display: flex;
  align-items: center;
}

.navbar-container > img {
  margin-right: 20px;
}

/* Showcase */
.showcase-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 20px;
}

.showcase-container .showcase-text > h2:first-child {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2a394f;
}

.showcase-container .showcase-text > h2:last-child {
  font-size: 3rem;
  font-weight: 700;
  color: #2a394f;
}

.showcase-container .showcase-text > p {
  color: #9aa0a8;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Previsão por Hora */
.hourly-forecast-container {
  border-radius: 40px;
  padding: 40px;
  background: linear-gradient(90.28deg, #007dfe 0.22%, #3aa2ff 99.76%);
  box-shadow: 0px 30px 50px -19px rgba(1, 126, 254, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hourly-forecast-container .hour-weather-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hourly-forecast-container .hour-weather-item > img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.hourly-forecast-container .hour-weather-item > p:first-child {
  color: #fff;
  opacity: 75%;
  font-weight: 500;
}

.hourly-forecast-container .hour-weather-item > p:last-child {
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
}

/* Detalhes */
.weather-details-container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 220px);
  grid-column-gap: 15px;
}

.weather-details-container .weather-detail-item {
  background-color: #fff;
  border-radius: 40px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.weather-details-container .weather-detail-item > p:first-child {
  color: #8f8f8f;
}

.weather-details-container .weather-detail-item > div {
  display: flex;
  align-items: center;
}

.weather-details-container .weather-detail-item > div > p {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2a394f;
  margin-left: 4px;
}

.weather-details-container .weather-detail-item > div > p > span {
  font-size: 0.75rem;
  margin-left: -5px;
}

.weather-details-container .weather-detail-item > div > img {
  width: 35px;
  height: 35px;
}

/* Previsão Semanal */
.weekly-forecast-container {
  background: #fff;
  border-radius: 40px;
  padding: 40px;
  gap: 30px;
  display: flex;
  flex-direction: column;
}

.weekly-forecast-container .day-weather-item {
  display: flex;
  align-items: center;
}

.weekly-forecast-container .day-weather-item > p,
.weekly-forecast-container .day-weather-item > img,
.weekly-forecast-container .day-weather-item > div {
  flex: 1;
}

.weekly-forecast-container .day-weather-item > p {
  font-weight: 500;
  color: #8f8f8f;
}

.weekly-forecast-container .day-weather-item > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.weekly-forecast-container .day-weather-item > div > p:first-child {
  color: #2a394f;
  font-weight: 500;
  margin-right: 8px;
}

.weekly-forecast-container .day-weather-item > div > p:last-child {
  color: #8f8f8f;
  font-weight: 500;
}

.weekly-forecast-container .day-weather-item > img {
  width: 60px;
  height: 60px;
}

/* Utilidades */
.custom-input {
  border: none;
  border-radius: 15px;
  background-color: #fdfffe;
  color: #232323;
  padding: 16px;
  width: 100%;
}

.custom-input:focus {
  outline: 2px solid #3aa2ff;
}

.custom-input::placeholder {
  color: #b1b8c0;
}
