/* MENU DE NAVEGAÇÃO */
.header section {
  display: flex;
  justify-content: space-around;
  font-family: "Saudagar";
  background: var(--links);
  height: 8vh;
  padding: 0 1rem;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header {
  position: relative;
}

.navbar {
  justify-self: start;
}
.logo {
  justify-self: center;
}
.icons {
  justify-self: end;
}

.navbar a {
  margin: 30px;
  font-size: 1.9rem;
  color: var(--bege);
}

.nav-list {
  list-style: none;
  letter-spacing: 1px;
  margin-left: 2px;
  display: flex;
  align-items: center;
}

.logo img {
  width: 7vh;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 9999;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;
}

/* HOME */
main {
  background: url(/images/paotrigo.png) no-repeat right;
  height: 92vh;
  background-color: var(--brown);
  background-size: contain;
  background-size: 900px;
}

.logocentral {
  display: none;
}

.home-container section {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.content {
  max-width: 100vh;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content h3 {
  color: #fff;
  font-size: 6rem;
  font-family: "PerpetuaB", sans-serif;
  padding: 2rem;
}

.content p {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 100;
  line-height: 2;
  padding: 3rem 2rem;
  font-family: "Saudagar", sans-serif;
  text-transform: none;
}

.btn {
  background: #4d604d;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.7rem;
  border-radius: 0.5rem;
  cursor: 0;
  display: inline-block;
}

.btn:hover {
  padding: 2rem 20rem;
  font-size: 1.9rem;
}

/* DETALHES ACIMA DO FOOTER */
.details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.details img {
  display: block;
  width: 30vh;
  height: auto;
}

.details h3 {
  color: var(--links);
  font-size: 3rem;
  margin: 3rem;
}

/* FOOTER */
footer {
  background-color: var(--links);
  color: var(--bege);
  text-align: center;
  padding: 40px;
  margin-top: 1vh;
  text-transform: none;
}

.footer-topo {
  margin-bottom: 32px;
}

.footer-meio {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-meio section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* botão do WhatsApp */
.btn-whatsapp {
  display: inline-block;
  background-color: var(--bege);
  color: var(--brown);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.btn-whatsapp:hover {
  opacity: 0.85;
}

/* bandeirinhas */
.bandeirinhas {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bandeirinhas img {
  height: 24px;
  width: auto;
}

/* base: */
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.footer-base p {
  font-size: 15px;
  opacity: 0.8;
  text-transform: none;
}
