body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #fef6ed, #fffdf9);
  color: #2e2e2e;
  text-align: center;
}

.container {
  padding: 20px;
  max-width: 600px;
  margin: auto;
}

.logo {
  width: 300px;
  margin: 20px auto;
  display: block;
  border-radius: 50%;
  border: 4px solid #ffa726; /* opcional: borda combinando com os botões */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* opcional: sombra suave */
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

h2 {
  margin-top: 20px;
  color: #34495e;
}

p {
  color: #4d4d4d;
}

.services-images {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.services-images img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #ffa726;
  object-fit: cover;
}

.slogan {
  font-weight: bold;
  margin: 10px 0;
  color: #ff6f00;
}

.service-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  color: #34495e;
}

.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  background-color: #ffa726;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #fb8c00;
  transform: translateY(-2px);
}

.cursor-animado {
  animation: pulse 1.2s infinite;
  color: #ff6f00;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1);   opacity: 1; }
}

.dev-footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 12px;
  color: #666;
  background-color: transparent;
  margin-top: 40px;
}

.dev-footer a {
  color: #ff6f00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.dev-footer a:hover {
  color: #e65100;
}
