

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;600&display=swap');

:root {
  --primary: #0B3D91;
  --accent: #EFC93D;
  --menu-bg: #722F37;
  --text-dark: #222;
}

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

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  font-family: "Inter", sans-serif;
}

/* Container principal */
.container-topo {
  max-width: 1280px;
  margin: auto;
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 70px;
  transition: 0.25s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Contato */
.whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.whatsapp img {
  width: 28px;
}

.whatsapp:hover {
  opacity: 0.7;
}

/* Menu */
nav.menu {
  width: 100%;
  padding: 12px;
  background: var(--menu-bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

nav.menu a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: 0.2s ease;
}

nav.menu a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 768px) {
  .container-topo {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .whatsapp {
    justify-content: center;
  }

  nav.menu {
    gap: 0.8rem;
  }
}
