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

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  background-color: #f0f0f0;
}

header {
  width: 100%;
  height: 150px;
  margin: auto;
  background-image: url("../assets/adegagnomo.jpg");
  background-size: cover;
  position: relative;
  box-shadow: 0 0 10px 0;
}

.logo {
  width: 125px;
  height: 125px;
  top: 85px;
  left: 150px;
  right: 0;
  background-color: #f0f0f0;
  border: 4px solid #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 0 8px 0;
  position: absolute;
}

main {
  width: 100%;
  max-width: 930px;
  margin-top: 32px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  main {
    margin-top: 80px;
  }

  .logo {
    left: 0;
    margin: auto;
  }
}

h1 {
  font-size: 2rem;
  color: #2B8403;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loja1,
.loja2 {
  margin-top: 24px
}

.address {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.info {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 24px
}

.status {
  margin-top: 32px;
  font-size: 1.2rem;
}

svg {
  fill: #f0f0f0;
  width: 28px;
  height: 28px;
  margin: 0 32px;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #f0f0f0;
  text-decoration: none;
}

footer {
  width: 100%;
  background-color: #000000;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}