.menu {
  width: 100%;
  box-sizing: border-box;
  padding: 1.0625rem 8.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #2e2e2e;
  z-index: 1000;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.menu-home {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  color: #2e2e2e;
  position: relative;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.menu-home:hover {
  transform: scale(1.1);
}

.menu-home::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #2e2e2e;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.menu-home:hover::after {
  width: 100%;
}

.menu-links {
  display: flex;
  gap: 2.5rem;
  font-size: 1.125rem;
  align-items: center;
}

.menu-links li {
  position: relative;
}

.menu-links > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  transform-origin: center;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.menu-links > li > a:hover {
  transform: scale(1.1);
}

.menu-links > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #2e2e2e;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.menu-links > li > a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-icon {
  transition: transform 0.25s ease;
}

.dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(237, 237, 237, 1);
  padding: 0.8rem 0;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  z-index: 999;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.submenu li {
  width: 100%;
}

.submenu a {
  display: block;
  width: 100%;
  padding: 0.6rem 1.2rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.submenu a::after {
  display: none;
}

.submenu a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.dropdown.active .submenu {
  display: flex;
}

.logo {
  max-width: 10.375rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle img {
  width: 32px;
  height: 32px;
  filter: none;
}

.topbar {
  width: 100%;
  padding: 0.5rem 8.75rem;
  background: #001c85;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.topbar-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.topbar-social {
  grid-column: 2;
  display: flex;
  gap: 2rem;
  justify-self: center;
}

.topbar-social a {
  display: flex;
  gap: 0.25rem;
}

.topbar-local {
  grid-column: 3;
  justify-self: end;
  position: relative;
  font-family: "Poppins", sans-serif;
}

/* seletor */
.cidade-select {
  position: relative;
  cursor: pointer;
}

/* cidade ativa */
.cidade-ativa {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* seta */
.cidade-seta {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

/* itens */
.cidade-opcoes li {
  padding: 10px 14px;
  color: #fff;
  cursor: pointer;
}

/* hover */
.cidade-opcoes li:hover {
  background: #174aa5;
}

/* ativo */
.cidade-select.active .cidade-opcoes {
  display: block;
}

.cidade-select.active .cidade-seta {
  transform: rotate(180deg);
}

/* dropdown */
.cidade-opcoes {
  position: absolute;
  top: 130%;
  left: -30%;

  background: #082899;
  list-style: none;

  width: 250px;
  padding: 0;
  margin: 0;

  min-width: 200px;

  border-radius: 6px;
  overflow: hidden;

  display: none;
  z-index: 9999;
}

.cidade-opcoes li {
  padding: 10px;
}

.cidade-opcoes li:hover {
  background: #174aa5;
}

.cidade-overlay {
  position: fixed;
  inset: 0;

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  background: rgba(0, 0, 0, 0.05);

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.2s ease;

  z-index: 9000;
}

.cidade-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.rodape {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 7.5rem 8.75rem;
  background: #fff;
}

.rodape-img-texto {
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-top: 1.5rem;
}

.rodape ul {
  display: grid;
  gap: 0.75rem;
}

.rodape a {
  position: relative;
  display: inline-block;
  transition:
    transform 0.2s ease,
    color 0.2s ease;

  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #0024a8;
}

.rodape a:hover {
  transform: translateX(10px); /* ajuste o valor se quiser mais */
}

/* Linha animada */
.rodape a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #0024a8;
  transition: width 0.3s ease;
}

.rodape a:hover::after {
  width: 100%;
}

.modal-cidade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.3s ease;

  z-index: 9999;
}

.modal-cidade.active {
  opacity: 1;
  pointer-events: all;
}

.modal-cidade-box {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 5px;
  text-align: center;

  width: 70%;

  transform: translateY(30px) scale(0.95);
  opacity: 0;

  transition: all 0.3s ease;
}

.modal-fechar {
  position: absolute;
  top: 40px;
  right: 20px;

  background: transparent;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-fechar img {
  width: 24px;
  height: 24px;
  transition: 0.2s ease;
}

.modal-fechar:hover img {
  opacity: 1;
  transform: scale(1.15);
}

.modal-cidade.active .modal-cidade-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-cidade-opcoes {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}

.modal-cidade-opcoes button {
  width: 100%;
  padding: 10px;
  border: none;
  background: linear-gradient(to bottom, #2d35c2, #151ca8);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}

.menuOfertas {
  background: #001c85;
  width: 100%;
  box-sizing: border-box;
  padding: 1.0625rem 8.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2e2e2e;
  z-index: 1000;
  position: relative;
}

.menuOfertas-user-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.menuOfertas-user {
  justify-self: end;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.menuOfertas-user img {
  height: 38px;
  width: 38px;
}

.menuOfertas-user:hover,
.menuOfertas-user[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(2, 10, 48, 0.2);
  transform: translateY(-1px);
}

.menuOfertas-user:focus-visible,
.menuOfertas-dropdown-action:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

.menuOfertas-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(3, 12, 51, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 1200;
}

.menuOfertas-user-wrap.active .menuOfertas-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menuOfertas-dropdown-user {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #1b2746;
}

.menuOfertas-dropdown-user strong {
  display: inline-block;
  max-width: 100%;
  color: #001c85;
  word-break: break-word;
}

.menuOfertas-dropdown-divider {
  width: 100%;
  height: 1px;
  margin: 0.8rem 0;
  background: rgba(0, 28, 133, 0.12);
}

.menuOfertas-dropdown-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #082899 0%, #2246d8 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.menuOfertas-dropdown-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 28, 133, 0.24);
  filter: saturate(1.06);
}

/* Botao flutuante de compartilhamento global */
.share-fab {
  --share-fab-size: 64px;
  --share-fab-gap: 0.9rem;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  z-index: 9998;
}

.share-fab-actions {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: var(--share-fab-gap);
}

.share-fab-action,
.share-fab-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--share-fab-size);
  height: var(--share-fab-size);
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #001c85 0%, #0b35c1 100%);
  box-shadow: 0 16px 34px rgba(0, 28, 133, 0.22);
  transition:
    transform 0.25s ease-in-out,
    opacity 0.25s ease-in-out,
    box-shadow 0.25s ease-in-out,
    background 0.25s ease-in-out;
}

.share-fab-action {
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
}

.share-fab-action img,
.share-fab-trigger img {
  width: 28px;
  height: 28px;
}

.share-fab-trigger {
  cursor: pointer;
}

.share-fab-action:hover,
.share-fab-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 38px rgba(0, 28, 133, 0.28);
}

.share-fab-action:focus-visible,
.share-fab-trigger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.share-fab.is-open .share-fab-action {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.share-fab.is-open .share-fab-action:hover {
  transform: scale(1.05);
}

.share-fab.is-open .share-fab-action:nth-child(1) {
  transition-delay: 0s;
}

.share-fab.is-open .share-fab-action:nth-child(2) {
  transition-delay: 0.04s;
}

.share-fab.is-open .share-fab-action:nth-child(3) {
  transition-delay: 0.08s;
}

.share-fab.is-open .share-fab-trigger {
  transform: rotate(45deg);
}

.share-fab.is-open .share-fab-trigger:hover {
  transform: rotate(45deg) scale(1.05);
}

.share-fab-toast {
  min-height: 20px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(12, 18, 39, 0.92);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease-in-out,
    transform 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
}

.share-fab-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
  background: rgba(0, 0, 0, 0.9);
  color: #fff !important;
  padding: 15px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
  z-index: 99999;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  animation: subir 0.4s ease;
}

/* GARANTE QUE NADA SOBRESCREVA COR */
.cookie-banner * {
  color: #fff !important;
}

/* TEXTO */
.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 600px;
}

/* LINK */
.cookie-banner a {
  text-decoration: underline;
  opacity: 0.85;
}

.cookie-banner a:hover {
  opacity: 1;
}

/* CONTAINER DOS BOTÕES */
.cookie-actions {
  display: flex;
  gap: 10px;
}

/* BOTÃO ACEITAR */
.cookie-banner button {
  background: #e30613;
  border: none;
  padding: 8px 18px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.cookie-banner button:hover {
  transform: scale(1.05);
}

/* BOTÃO RECUSAR */
.btn-recusar {
  background: transparent;
  border: 1px solid #fff;
}

.btn-recusar:hover {
  background: #fff;
  color: #000 !important;
}

/* ANIMAÇÃO */
@keyframes subir {
  from {
    transform: translate(-50%, 50px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@media (max-width: 1300px) {
  .topbar {
    padding: 0.5rem 5.75rem;
  }

  .menu {
    padding: 1.0625rem 5.75rem;
  }

  .menu-right {
    gap: 2rem;
  }

  .menu-links {
    gap: 2rem;
  }

  .rodape {
    padding: 7.5rem 5.75rem;
  }

  .menuOfertas {
    padding: 1.0625rem 5.75rem;
  }
}

@media (max-width: 1190px) {
  .cookie-banner {
    width: min(90%, 720px);
    max-width: calc(100% - 2rem);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    padding: 16px 18px;
    text-align: center;
  }

  .cookie-banner p {
    max-width: none;
  }

  .cookie-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-banner button {
    min-width: 120px;
  }

  .topbar {
    padding: 0.5rem 3rem;
  }

  .topbar-social {
    grid-column: 1;
  }

  .cidade-opcoes {
    left: -60%;
  }

  .menu {
    padding: 1rem 3rem;
    position: relative;
    z-index: 2000;
  }

  .no-scroll {
    overflow: hidden;
    height: 100vh;
  }

  .menu-toggle {
    display: block;
  }

  .menu-links {
    position: fixed;
    top: 4rem;
    right: 0;
    width: 30%;
    background: rgba(237, 237, 237, 0.8);
    backdrop-filter: blur(6px);
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    display: none;
    z-index: 2001;
  }

  .menu-links.active {
    display: flex;
  }

  .logo {
    max-width: 7rem;
  }

  .rodape {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 2rem 3rem;
  }

  .rodape-img {
    grid-column: 1/4;
    justify-self: center;
  }

  .rodape-img-texto {
    margin-top: 0.5rem;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1500;
  }

  /* Quando ativo */
  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .submenu {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;

    padding: 0.5rem 0 0.5rem 1rem;
    margin: 0;

    width: 100%;
  }

  .submenu a {
    display: block;
    width: 100%;
    padding: 0.6rem 1.2rem;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;

    white-space: normal;
    word-break: break-word;
    text-align: center;
  }

  .menu-links li {
    width: 100%;
    text-align: center;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown > a {
    display: inline-flex;
    justify-content: center;
    width: auto;
  }
}

@media (max-width: 766px) {
  .cookie-banner {
    bottom: 14px;
    width: calc(100% - 1.5rem);
    max-width: 420px;
    padding: 14px;
  }

  .cookie-banner p {
    font-size: 0.8rem;
  }

  .cookie-actions {
    gap: 8px;
  }

  .cookie-banner button {
    flex: 1 1 130px;
    padding: 9px 14px;
  }

  .topbar {
    padding: 0.5rem 2rem;
  }

  .topbar-social-texto {
    display: none;
  }

  .topbar-social {
    grid-column: 1;
    gap: 1rem;
    justify-self: start;
  }

  .menu {
    padding: 1rem 2rem;
  }

  .menuOfertas {
    padding: 1rem 2rem;
  }

  .menu-links {
    width: 50%;
  }

  .menuOfertas-dropdown {
    right: 0;
    min-width: 210px;
  }

  .share-fab {
    --share-fab-size: 58px;
    right: 1rem;
    bottom: 1rem;
  }

  .share-fab-action img,
  .share-fab-trigger img {
    width: 24px;
    height: 24px;
  }

  .submenu {
    top: 0;
    left: auto;
    right: 100%;
    transform: none;
    margin-right: 10px;
  }

  .rodape {
    grid-template-columns: repeat(1, 1fr);
    padding: 2.5rem 2rem;
  }

  .rodape-img {
    grid-column: 1;
  }

  .modal-cidade-box {
    width: 80%;
  }

  .modal-cidade-opcoes {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 380px) {
  .cookie-actions {
    flex-direction: column;
  }

  .cookie-banner button {
    width: 100%;
  }
}
