@media (max-width: 768px) {
  body {
    background-color: #000 !important;
    color: #fff !important;
  }

  header {
    background-color: #fff !important;
    color: #000 !important;
  }

  header .container {
    flex-direction: column;
    text-align: center;
    position: relative;
  }

  /* Botão hamburguer */
  .menu-toggle {
    display: block;
    background: none;
    font-size: 28px;
    border: none;
    color: #000;
    cursor: pointer;
    margin-left: auto;
    z-index: 998;
    position: relative;
  }

  /* Menu branco escondido inicialmente */
  .menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    background-color: #fff;
    width: 100%;
    padding: 15px 0;
    position: absolute;
    top: 65px;
    left: 0;
    z-index: 1001;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .menu.active {
    display: flex;
  }

  .menu-close {
    display: block;
    background: none;
    font-size: 28px;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 0 20px;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  .menu li {
    display: block;
  }

  .menu a {
    margin: 0;
    display: block;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .menu a:hover {
    color: #555;
  }
  


  .login-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
  }

  .login-icon img {
    max-width: 100%;
    height: auto;
  }
  
  .fotos img {
    width: 110%; /* aumenta a largura em 10% */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 0px #ccc;
  } 
  
  
   .fotos-carousel {
    max-width: 100%;
    padding: 0 10px;
    gap: 5px;
  }

  .fotos-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .fotos-wrapper a {
    flex: 0 0 80%; /* mostra uma foto por vez com um pouco de espaço */
    scroll-snap-align: start;
    border-radius: 8px;
  }

  .btn-left, .btn-right {
    font-size: 1.5rem;
    padding: 6px 10px;
  }
}

  header a,
  header .login-icon {
    color: #000 !important;
  }

  footer {
    background-color: #000 !important;
    color: #fff !important;
  }

  footer a {
    color: #ccc !important;
    text-decoration: none;
  }

  footer a:hover {
    color: white !important;
    text-decoration: underline;
  }

  .fotos img {
    width: 100%;
  }
}
