:root {
  --color-bg: #ffffff;
  --color-dark: #0b2947;      /* azul royal escuro, extraído do logo */
  --color-dark-2: #123a63;
  --color-accent: #16437a;    /* azul royal do logo */
  --color-accent-dark: #0b2947;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1DA851;
  --color-text: #262626;
  --color-text-light: #6b6b6b;
  --max-width: 1140px;
  --radius: 10px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); }

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.icon-wpp { width: 20px; height: 20px; fill: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.logo { height: 44px; width: auto; }
.header-cta { padding: 10px 16px; font-size: .9rem; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  color: #fff;
  padding: 56px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 1.1rem;
  color: #d8d8d8;
  margin-bottom: 26px;
  max-width: 46ch;
}
.hero-hint {
  margin-top: 14px;
  font-size: .85rem;
  color: #b6b6b6;
}
.hero-image img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #333;
}
.hero-image.img-fallback {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #333, #333 10px, #3a3a3a 10px, #3a3a3a 20px);
}

/* ---------- Vantagens ---------- */
.advantages { padding: 64px 0; background: #fafafa; }
.advantages h2, .gallery h2, .location h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 40px;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.advantage-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.advantage-card h3 { font-size: 1.05rem; }
.advantage-card p { color: var(--color-text-light); font-size: .92rem; margin: 0; }

/* ---------- Galeria ---------- */
.gallery { padding: 64px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f0f0f0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-note {
  text-align: center;
  color: var(--color-text-light);
  font-size: .82rem;
  margin-top: 18px;
}

/* ---------- Localização ---------- */
.location { padding: 64px 0; background: #fafafa; }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.location-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.location-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}
.location-list a { color: var(--color-accent-dark); }
.location-map {
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: #ccc;
  padding: 28px 0;
  text-align: center;
  font-size: .85rem;
}
.site-footer p { margin: 4px 0; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 100;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { min-height: 240px; }
  .header-cta span { display: none; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }
}
