/* =====================
   SPA URBANO - ESTILOS GLOBAIS
   ===================== */

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #006d4f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =====================
   HEADER E MENU
   ===================== */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.site-header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 10px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-text {
  font-size: 14px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.menu li a {
  font-weight: bold;
  color: #333;
}

.menu li a.active,
.menu li a:hover {
  color: #006d4f;
}

.actions .btn-primary {
  background: #006d4f;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
}

.mobile-toggle {
  display: none;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

/* =====================
   HERO
   ===================== */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 40px 0;
}

.hero-text h1 {
  font-size: 2rem;
  color: #222;
}

.hero-text p {
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
}

.btn-primary {
  background: #006d4f;
  color: #fff;
}

.btn-ghost {
  border: 2px solid #006d4f;
  color: #006d4f;
}

.card.small {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
}

/* =====================
   SEÇÕES
   ===================== */

.section {
  padding: 40px 0;
}

.section h2 {
  margin-bottom: 20px;
  text-align: center;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.price-amount {
  font-size: 24px;
  font-weight: bold;
  color: #006d4f;
}

.center {
  text-align: center;
  margin-top: 20px;
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
  background: #222;
  color: #ddd;
  padding: 30px 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.site-footer h4 {
  margin-bottom: 10px;
  color: #fff;
}

.logo-foot {
  height: 40px;
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* =====================
   RESPONSIVO
   ===================== */

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 10px;
    position: absolute;
    top: 60px;
    right: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .menu.show {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}