:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --surface: rgba(255, 255, 255, 0.06);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #0b1120 0%, #111827 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
.video-box {
  width: 95%;
  max-height: 365px;
  overflow: hidden;
}


img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  height: 70px;
}

.logo img{
  height: 60px;
  width: auto;
  

}

.logo span {
  color: var(--primary);
}

.desktop-menu {
  display: flex;
  gap: 24px;
}

.desktop-menu a {
  color: var(--muted);
  transition: 0.3s ease;
}

.desktop-menu a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #111827;
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.hero {
  padding: 82px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.24);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero p,
.section-title p,
.contato-info p,
.card-body p,
.vantagem-card p,
.modal-header p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-card,
.empreendimento-card,
.vantagem-card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 18px;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-box {
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-image-card {
  min-height: 500px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.15), rgba(15,23,42,0.7)),
    url('../img/empreendimento-1-1.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
}

.hero-overlay-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.section {
  padding: 76px 0;
}

.section-dark {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.section-title h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.empreendimentos-grid,
.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.empreendimento-card {
  overflow: hidden;
}

.card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-label {
  position: absolute;
  left: 16px;
  top: 16px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.card-body {
  padding: 24px;
}

.card-body h3,
.vantagem-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.card-body .btn {
  margin-top: 18px;
  width: 100%;
}

.vantagem-card {
  padding: 26px;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.form-card {
  padding: 26px;
  display: grid;
  gap: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 15px 16px;
  border-radius: 16px;
  outline: none;
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  color: #fde68a;
  min-height: 24px;
}

.footer {
  padding: 28px 0 40px;
  text-align: center;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: 92vh;
  overflow-y: auto;
  background: #0f172a;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 1.8rem;
}

.modal-content {
  margin-top: 22px;
}

.modal-video-wrap {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.modal-video-wrap iframe {
  width: 100%;
  height: 100%;
}

.carousel-wrap {
  margin-top: 20px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0b1120;
}

.carousel-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.82);
  color: white;
  font-size: 2rem;
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.28);
}

.carousel-dots button.active {
  background: var(--primary);
}

.modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .contato-grid,
  .empreendimentos-grid,
  .vantagens-grid,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .desktop-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 48px;
  }

  .section {
    padding: 58px 0;
  }

  .btn,
  .modal-actions .btn {
    width: 100%;
  }

  .carousel-wrap img {
    height: 240px;
  }

  .modal-dialog {
    padding: 22px 16px;
  }
}