
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografia */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  padding-top: 70px;
}

/* Menu fixo */
.menu-fixo {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0a0a0a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.logo-menu {
  display: flex;
  align-items: center;
}

.logo-pequena {
  height: 40px;
  width: auto;
}

.menu-fixo ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu-fixo ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.menu-fixo ul li a:hover {
  color: #a259ff;
}

/* Header */
header {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(to right, #a259ff, #3b1c85);
  color: white;
}

header h1 {
  font-size: 2em;
}

.sub {
  font-size: 1.1em;
  margin-top: 10px;
}

/* Seções */
main section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  color: #3b1c85;
  margin-bottom: 20px;
}

/* Contato */
.contato-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
}

.contato-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contato-btn:hover {
  background-color: #1ebc5a;
}

.email-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

svg {
  width: 20px;
  height: 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
  font-size: 0.9em;
  color: #555;
}
