/* =============================================
   KAJUMAR EMPREENDIMENTOS — style.css
   Cores: Navy #091923 | Gold #C9A97A | White #FFFFFF
   Fonte: Montserrat
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #091923;
  --navy-mid: #0d2233;
  --navy-light: #112b40;
  --gold: #C9A97A;
  --gold-light: #dfc49a;
  --white: #ffffff;
  --gray: #a8b4bc;
  --gray-light: #e8edf0;
  --radius: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 32px;
}
.section-title--light { color: var(--white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,122,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 28px;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(9,25,35,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 8px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo__img {
  height: 52px;
  width: auto;
  border-radius: 4px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__link--cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  margin-left: 8px;
}
.nav__link--cta:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(9,25,35,0.88) 0%, rgba(9,25,35,0.60) 50%, rgba(9,25,35,0.72) 100%),
    url('imagens/DJI_0697.JPG') center center / cover no-repeat;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 140px 24px 100px;
  max-width: 720px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- NUMBERS ---- */
.numbers { background: var(--gold); padding: 40px 0; }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(9,25,35,0.15);
}
.numbers__item:last-child { border-right: none; }
.numbers__item strong { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.numbers__item span { font-size: 0.78rem; font-weight: 500; color: rgba(9,25,35,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- SOBRE ---- */
.sobre {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('imagens/DJI_0652.JPG') center center / cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.sobre__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.sobre__text { color: #3a4a54; margin-bottom: 20px; font-size: 1rem; }
.sobre__valores { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.valor { display: flex; gap: 16px; align-items: flex-start; }
.valor__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(201,169,122,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.valor__icon svg { width: 20px; height: 20px; }
.valor strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.valor p { font-size: 0.85rem; color: #5a6a74; }

/* Sobre visual — foto Adenisio */
.sobre__visual { position: sticky; top: 100px; }
.sobre__foto-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.sobre__foto {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sobre__foto-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,25,35,0.9) 0%, transparent 100%);
  padding: 32px 20px 20px;
  color: var(--white);
}
.sobre__foto-badge strong { display: block; font-size: 1.1rem; font-weight: 700; }
.sobre__foto-badge span { font-size: 0.8rem; color: var(--gold); font-weight: 500; letter-spacing: 0.05em; }
.sobre__quote {
  font-size: 0.95rem;
  font-style: italic;
  color: #5a6a74;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  line-height: 1.6;
}

/* ---- DIFERENCIAIS ---- */
.diferenciais { background: var(--navy); padding: 100px 0; }
.diferenciais .section-title { margin-bottom: 56px; }
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}
.diferencial { background: var(--navy-mid); padding: 40px 32px; transition: background var(--transition); }
.diferencial:hover { background: var(--navy-light); }
.diferencial__num { font-size: 2.5rem; font-weight: 800; color: rgba(201,169,122,0.2); line-height: 1; margin-bottom: 16px; }
.diferencial h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.diferencial p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ---- EMPREENDIMENTOS ---- */
.empreendimentos { padding: 100px 0; background: #f5f7f9; }
.empreendimentos .section-title { margin-bottom: 48px; }

/* Card base */
.emp__card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(9,25,35,0.1);
  position: relative;
  margin-bottom: 24px;
}

/* Card featured (Glamour) */
.emp__card--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 48px rgba(201,169,122,0.2);
}

.emp__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}
.emp__badge--launch { background: var(--gold); color: var(--navy); }
.emp__badge--sold { background: var(--navy); color: var(--gold); }

.emp__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
}
.emp__inner--reverse {
  grid-template-columns: 1fr 420px;
}

/* Imagem dos empreendimentos */
.emp__img-wrap {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}
.emp__img-wrap--maju { min-height: 360px; }
.emp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.emp__card:hover .emp__img { transform: scale(1.03); }

.emp__info { padding: 48px; display: flex; flex-direction: column; gap: 0; }

.emp__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #5a6a74;
  margin-bottom: 10px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--green { background: #22c55e; animation: pulse 2s infinite; }
.status-dot--orange { background: #f59e0b; animation: pulse-orange 2s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}

.emp__name { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.emp__loc {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.88rem; color: #5a6a74;
  margin-bottom: 28px;
}

.emp__specs {
  display: flex; gap: 28px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}
.spec { display: flex; flex-direction: column; }
.spec strong { font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.spec span { font-size: 0.75rem; color: #5a6a74; margin-top: 4px; }

.emp__tip-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.emp__tipologias { margin-bottom: 20px; }
.emp__tipologias ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.emp__tipologias li {
  font-size: 0.88rem; color: #3a4a54;
  padding-left: 14px; position: relative;
}
.emp__tipologias li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 1px; background: var(--gold);
}

.emp__infra { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.tag {
  background: rgba(201,169,122,0.1);
  color: var(--navy);
  font-size: 0.75rem; font-weight: 500;
  padding: 5px 12px; border-radius: 20px;
  border: 1px solid rgba(201,169,122,0.3);
}

.emp__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }

/* Próximos lançamentos */
.emp__futuro {
  border: 2px dashed rgba(201,169,122,0.35);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(201,169,122,0.03);
}
.emp__futuro-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.emp__futuro-icon svg { width: 24px; height: 24px; }
.emp__futuro-content { flex: 1; }
.emp__futuro-content h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.emp__futuro-content p { font-size: 0.88rem; color: #5a6a74; }
.emp__futuro .btn { flex-shrink: 0; }

/* ---- CONTATO ---- */
.contato { background: var(--navy); padding: 100px 0; }
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.contato__desc { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 1rem; line-height: 1.7; }
.contato__dados { display: flex; flex-direction: column; gap: 16px; }
.dado { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.5; }
.dado svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.dado--social { flex-direction: column; gap: 10px; margin-top: 8px; }

.social-link {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
}
.form-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-card > p { font-size: 0.88rem; color: #5a6a74; margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.03em;
}
.required { color: var(--gold); }
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: #fafafa;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,122,0.15);
  background: var(--white);
}
.form-group input.error { border-color: #e53e3e; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23091923' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ---- FOOTER ---- */
.footer { background: #050f16; padding: 56px 0 0; border-top: 1px solid rgba(201,169,122,0.1); }
.footer__inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
}
.footer__brand {}
.footer__logo { height: 64px; width: auto; border-radius: 6px; margin-bottom: 12px; display: block; }
.footer__brand p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.footer__nav a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color var(--transition); }
.footer__nav a:hover { color: var(--gold); }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact p {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer__contact svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer__social { display: flex; gap: 12px; margin-top: 4px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
  text-align: center;
}
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__visual { position: static; }
  .sobre__foto-wrap { max-width: 400px; }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .contato__inner { grid-template-columns: 1fr; }
  .emp__inner { grid-template-columns: 1fr; }
  .emp__inner--reverse { grid-template-columns: 1fr; }
  .emp__inner--reverse .emp__img-wrap { order: -1; }
  .emp__img-wrap { min-height: 280px; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__item:nth-child(2) { border-right: none; }
  .numbers__item { padding: 14px 12px; }
  .numbers__item strong { font-size: 1.5rem; }
  .numbers__item span { font-size: 0.72rem; letter-spacing: 0.03em; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(9,25,35,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav__link { font-size: 1.2rem; padding: 12px 24px; }
  .nav__link--cta { margin-left: 0; }
  .hamburger { display: flex; z-index: 1000; }

  .diferenciais__grid { grid-template-columns: 1fr; }
  .emp__futuro { flex-direction: column; text-align: center; }
  .emp__actions { flex-direction: column; }
  .emp__actions .btn { width: 100%; justify-content: center; }
  .emp__info { padding: 28px 20px; }
  .emp__specs { gap: 16px; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__inner { padding: 120px 24px 80px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .form-card { padding: 32px 24px; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__item { padding: 16px 8px; }
  .numbers__item strong { font-size: 1.3rem; }
  .numbers__item span { font-size: 0.68rem; }
}
