/* ==== MENU FIXO E ESTRUTURA DESKTOP ==== */
.menu-sticky {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  background-color: #fff;
  border-bottom: 2px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 9999;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
}

.menu-col-logo {
  width: 30%;
  height: 90px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.menu-col-logo img {
  display: block;
  max-height: 81px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.menu-col-items {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==== PADRONIZAÇÃO DE SEÇÕES ==== */
.section {
  padding: 80px 0;
}

.section-small {
  padding: 40px 0;
}

.section-no-padding {
  padding: 0 !important;
}

/* ==== AJUSTES DE PRIMEIRA SEÇÃO ==== */
body > .section:first-of-type {
  margin-top: 0;
}

/* ==== AJUSTES MODULARES DE SEÇÕES ==== */
.section.section-centered {
  text-align: center;
}

.section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}
