 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
            min-height: 100vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)),
                url("Tela_Temporaria/Domo.jpg");
            background-size: cover;
            background-position: center;
            color: white;
    }

    header {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header h1 {
      font-size: 24px;
      color: #00d4ff;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    nav a {
      text-decoration: none;
      color: #fff;
      transition: color 0.3s;
    }

    nav a b {
      color: #ff4949;
    }

    nav a:hover {
      color: #ff4949;
    }

    .hero {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 40px;
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .btn {
      background-color: #000000;
      color: #fff;
      padding: 15px 35px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.5s;
      text-decoration: none;
    }

    .btn:hover {
      background-color: #e40000;
      color: #dfdcdc;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 60px 40px;
      background: rgba(255, 255, 255, 0.05);
    }

    .service {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s, background 0.3s;
    }

    .service:hover {
      transform: translateY(-5px);
      background: rgba(0, 0, 0, 0.5);
    }

    .service h3 {
      margin-bottom: 10px;
      color: #ff6a00;
    }

    footer {
      background: rgba(0, 0, 0, 0.4);
      padding: 20px;
      text-align: center;
      font-size: 0.9rem;
    }

    .name {
        cursor: default;
    }

@media (max-width: 768px) {
      header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        text-align: center;
      }
      nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
      .hero {
        padding: 40px 20px;
      }
      .hero h2 {
        font-size: 1.8rem;
      }
      .services {
        padding: 40px 20px;
        gap: 20px;
      }
      .service iframe {
        width: 100% !important; /* Garante que o mapa do Google fique responsivo no mobile */
        max-width: 100%;
      }
      .service img {
        max-width: 100%; /* Ajusta a imagem da logo inferior ao tamanho da tela */
        height: auto !important;
      }
      .service br {
        display: none; /* Organiza melhor os espaços verticais em telas compactas */
      }
    }
    
    .logo {
      display: flex;
      align-items: center;
      font-size: 28px;
      color: #00bfff;
      font-weight: bold;
      gap: 1px;
    }

    .logo img {
      width: auto;
      height: 80px;
    }

    .imagem-servico {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

#visualizador {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#imagemGrande {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  cursor: zoom-in;
}

:fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 45px;
  cursor: pointer;
}
