/* PALETA ÁPIS */
:root {
  --azul: #2CA8CB;
  --azul-escuro: #1674A8;
  --roxo: #986094;
  --amarelo: #F5C727;
  --verde-suave: #7BCFAF;
  --cinza: #F6F6F6;
  --preto: #333;
}

/* RESET */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--preto);
  background: white;
}

img {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--preto);
  font-weight: 500;
}

.btn-nav {
  background: var(--azul);
  padding: 10px 18px;
  color: white !important;
  border-radius: 6px;
}

/* HERO */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--azul), var(--roxo));
  color: white;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-sub {
  max-width: 420px;
  margin-bottom: 20px;
}

.btn-hero {
  display: inline-block;
  background: var(--amarelo);
  padding: 12px 26px;
  border-radius: 6px;
  color: #000;
  font-weight: 600;
}

/* SOBRE */
.sobre-section {
  padding: 70px 0;
}

.sobre-frase {
  margin-top: 20px;
  font-weight: bold;
  color: var(--roxo);
}

/* SERVIÇOS */
.servicos-section {
  background: var(--cinza);
  padding: 70px 0;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.servico-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  border-left: 6px solid var(--amarelo);
}

/* AVALIAÇÃO / COLONIA */
.links-section {
  padding: 70px 0;
}

.links-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.link-box {
  flex: 1;
  min-width: 280px;
  padding: 30px;
  background: var(--azul);
  color: white;
  border-radius: 10px;
  text-decoration: none;
}

.colonia-box {
  background: var(--roxo);
}

/* LOCAIS */
.locais-section {
  background: var(--cinza);
  padding: 60px 0;
}

.locais-list {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
}

/* CONTATO */
.contato-section {
  padding: 70px 0;
  text-align: center;
}

.btn-contato {
  background: var(--azul);
  padding: 14px 30px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  text-decoration: none;
}

/* RODAPÉ */
.footer {
  background: #111;
  color: white;
  padding: 25px 0;
  text-align: center;
}
