/* Side menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px; /* escondido inicialmente */
  width: 250px;
  height: 100%;
  background-color: var(--primary-color);
  transition: right 0.4s ease;
  z-index: 1050;
  padding-top: 70px;
}

/* Mostrar o menu */
.side-menu.open {
  right: 0;
}

/* Overlay para escurecer o fundo */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

.overlay.show {
  display: block;
}

.nav-link {
  font-size: 1.1rem;
  padding: 10px 0;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}
/* Ícone do botão hamburguer branco */
.navbar-toggler {
    border: none !important;
    background-color: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}
@media (max-width: 800px) {
    #Imglogo {
        width: 75% !important;
    }
}
.section-primaria {
    width: 100%;
    height: 100vh;
    background-size: contain;
}

#arrowdown {
  position: relative;
  animation: mymove 2s ease-in-out infinite;
}

@keyframes mymove {
  0%   { top: 0px; }
  50%  { top: 40px; }
  100% { top: 0px; }
}