/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #222;
  background-color: #f5f5f7;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 18px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

.main-nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.main-nav a {
  text-decoration: none;
  color: #374151;
  padding: 4px 0;
}

.main-nav a:hover {
  color: #111827;
}

.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-btn {
  border: none;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 999px;
  background: #e5e7eb;
  cursor: pointer;
}

.lang-btn.active {
  background: #111827;
  color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  margin-top: 64px; /* header fixo */
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image: url('assets/img/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  padding: 60px 16px 80px;
  text-align: left;
  max-width: 720px;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 10px;
  font-weight: 700;
}

.hero-subtitle {
  margin: 0 0 22px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 12px;
  opacity: 0.9;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(34, 197, 94, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.4);
}

.btn-info {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

.btn-info:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

/* SEÇÕES */
.section {
  padding: 56px 0;
}

.section-light {
  background-color: #ffffff;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 30px;
  color: #111827;
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card h3 {
  margin: 0;
  font-size: 17px;
}

.card p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

.card-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* DETALHES */
.details.collapsed {
  display: none;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  font-size: 14px;
  color: #374151;
}

.price {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
}

.center {
  text-align: center;
  margin-top: 16px;
}

/* BANNER CAPA */
.banner-capa img {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
  display: block;
  margin: 0 auto;
}

/* MAPA */
.map-wrapper {
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* FOOTER */
.site-footer {
  padding: 24px 0 26px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

/* MULTI-IDIOMA: por JS, mas definimos fallback */
.lang {
  display: none;
}
.lang-pt {
  display: inline;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    text-align: left;
    align-items: flex-end;
    min-height: 360px;
  }

  .hero-content {
    padding: 40px 16px 40px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }
}
