*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --green:      #5c7e6b;
  --green-mid:  #4a6858;
  --green-light:#eaf1ed;
  --gray-bg:    #f8f9fb;
  --gray-line:  #e5e7eb;
  --gray-mid:   #6b7280;
  --text:       #1a1a1a;
  --white:      #ffffff;
  --serif:      'Lora', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --max:        1100px;
  --radius:     6px;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 24px; }
.section--gray { background: var(--gray-bg); }
.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}
.sub { font-size: 0.95rem; color: var(--gray-mid); max-width: 500px; margin-bottom: 40px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--white); }
.nav .btn-green { color: #ffffff !important; }
.btn-outline { border: 1.5px solid var(--green); color: var(--green); background: transparent; }

/* ANNOUNCE */
.announce {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.8rem;
}
.announce a { color: rgba(255,255,255,.85); text-decoration: underline; }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  z-index: 100;
}
.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 48px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav a { font-size: 0.84rem; color: var(--gray-mid); text-decoration: none; transition: color .2s; }
.nav a:hover { color: var(--green); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-nav {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid var(--gray-line); }
.mobile-nav a { display: block; padding: 12px 0; font-size: 0.9rem; color: var(--text); text-decoration: none; }
.mobile-nav .m-cta { margin-top: 16px; width: 100%; justify-content: center; }

/* HERO */
.hero { padding: 64px 24px 56px; }
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.hero__sub { font-size: 1rem; color: var(--gray-mid); margin-bottom: 28px; line-height: 1.65; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 0.73rem; color: var(--gray-mid); border: 1px solid var(--gray-line); padding: 4px 10px; border-radius: 100px; }

/* HERO com foto */
.hero--photo {
  background-image:
    linear-gradient(100deg,
      rgba(46, 68, 56, .95) 0%,
      rgba(46, 68, 56, .85) 45%,
      rgba(46, 68, 56, .35) 68%,
      rgba(46, 68, 56, .12) 100%),
    url('../img/hero/hero-mogi-desktop.webp');
  background-size: cover;
  background-position: right center;
}
.hero--photo h1 { color: var(--white); }
.hero--photo .hero__sub { color: rgba(255, 255, 255, .85); }
.hero--photo .hero__eyebrow { background: rgba(255, 255, 255, .14); color: var(--white); }
.hero--photo .tag { color: rgba(255, 255, 255, .85); border-color: rgba(255, 255, 255, .35); }
.hero--photo .btn-outline { border-color: var(--white); color: var(--white); }
.hero--photo .btn-green { background: var(--white); color: var(--green-dark, #2e4438); }
.hero--photo .units__label { color: rgba(255, 255, 255, .75); }
.hero--photo .unit,
.hero--photo .units--mobile .unit { background: var(--white); border-color: transparent; }

/* UNIT CARDS */
.units { display: flex; flex-direction: column; gap: 14px; }
.hero--photo .units {
  align-self: end;
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  margin-bottom: 8px;
}
.units__label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-mid); margin-bottom: 6px; }
.units--mobile { display: none; flex-direction: column; gap: 12px; margin-top: 28px; }
.unit {
  display: block;
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.unit:hover { border-color: var(--green); box-shadow: 0 2px 12px rgba(15,81,50,.07); }
.unit__badge { font-size: 0.65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.unit__city { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.unit__addr { font-size: 0.8rem; color: var(--gray-mid); }
.unit__row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--gray-line); font-size: 0.78rem; color: var(--green); font-weight: 600; }

.unit-chip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  text-decoration: none; transition: background .2s, border-color .2s;
}
.unit-chip:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); }
.unit-chip__badge { display: block; font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 2px; }
.unit-chip__city { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.unit-chip__arrow { color: var(--white); font-size: 1.1rem; }
.hero--photo .units__label { color: rgba(255,255,255,.75); }

/* STATS */
.stats { background: var(--green); padding: 32px 24px; }
.stats__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat { padding: 8px 0; border-right: 1px solid rgba(255,255,255,.15); }
.stat:last-child { border-right: none; }
.stat__n { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--white); }
.stat__l { font-size: 0.75rem; color: rgba(255,255,255,.65); margin-top: 2px; }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area { border: 1.5px solid var(--gray-line); border-radius: var(--radius); padding: 24px 22px; transition: border-color .2s, box-shadow .2s; }
.area:hover { border-color: var(--green); box-shadow: 0 2px 12px rgba(15,81,50,.06); }
.area--highlight { background: var(--green-light); border-color: transparent; display: flex; flex-direction: column; justify-content: center; }
.area--highlight .btn { margin-top: 14px; align-self: flex-start; font-size: 0.8rem; padding: 9px 16px; }
.area__icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--green); }
.area__name { font-family: var(--serif); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.area__desc { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.55; }
.area__note { display: block; font-size: 0.75rem; color: var(--green); font-weight: 500; margin-top: 8px; }

/* FLOW */
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1.5px solid var(--gray-line); border-radius: var(--radius); overflow: hidden; }
.flow-item { padding: 28px 22px; border-right: 1px solid var(--gray-line); }
.flow-item:last-child { border-right: none; }
.flow-n { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--green-light); margin-bottom: 10px; }
.flow-t { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.flow-d { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.55; }
.flow-cta { text-align: center; margin-top: 32px; }
.flow-sub { font-size: 0.78rem; color: var(--gray-mid); margin-top: 8px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { border: 1.5px solid var(--gray-line); border-radius: var(--radius); overflow: hidden; }
.team-card img { width: 100%; height: 260px; object-fit: cover; object-position: center top; display: block; }
.team-card__body { padding: 18px 20px; }
.team-card__name { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.team-card__role { font-size: 0.73rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.team-card__bio { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.55; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rcard { border: 1.5px solid var(--gray-line); border-radius: var(--radius); padding: 20px; }
.rcard__stars { color: #d97706; font-size: 0.85rem; margin-bottom: 10px; }
.rcard__text { font-size: 0.83rem; color: var(--gray-mid); font-style: italic; line-height: 1.6; margin-bottom: 14px; }
.rcard__author { display: flex; align-items: center; gap: 10px; }
.rcard__author img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.rcard__name { font-size: 0.82rem; font-weight: 600; }
.rcard__date { font-size: 0.72rem; color: var(--gray-mid); }
.reviews-link { text-align: center; margin-top: 24px; font-size: 0.83rem; }
.reviews-link a { color: var(--green); }

/* LOCATIONS */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lcard { border: 1.5px solid var(--gray-line); border-radius: var(--radius); overflow: hidden; }
.lcard iframe { width: 100%; height: 200px; display: block; border: none; }
.lcard__body { padding: 20px 22px; }
.lcard__tag { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--green); margin-bottom: 4px; display: block; }
.lcard__city { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.lcard__info { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.lcard__info li { font-size: 0.82rem; color: var(--gray-mid); }
.lcard__info a { color: var(--gray-mid); text-decoration: none; }
.lcard__info a:hover { color: var(--green); }
.lcard__btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.82rem; font-weight: 600; color: var(--green); text-decoration: none; }
.lcard__btn:hover { text-decoration: underline; }

/* CONTACT */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-fields { display: flex; flex-direction: column; gap: 12px; }
input, textarea, select {
  width: 100%; border: 1.5px solid var(--gray-line); border-radius: var(--radius);
  padding: 11px 14px; font-family: var(--sans); font-size: 0.88rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color .2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--green); }
textarea { resize: vertical; min-height: 110px; }
.form-submit { justify-content: center; }
.form-feats { display: flex; flex-direction: column; gap: 20px; }
.feat { border-left: 3px solid var(--green-light); padding-left: 14px; }
.feat__t { font-weight: 600; font-size: 0.88rem; margin-bottom: 3px; }
.feat__d { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.55; }
.feat__d a { color: var(--green); }

/* CTA FINAL */
.cta-final { background: var(--green-light); padding: 64px 24px; text-align: center; }
.cta-final .wrap { max-width: 580px; text-align: center; }
.cta-final h2 { margin-bottom: 10px; }
.cta-final p { color: var(--gray-mid); margin-bottom: 24px; }

/* FOOTER */
.footer { background: var(--gray-bg); border-top: 1px solid var(--gray-line); padding: 48px 24px 24px; }
.footer__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer__logo img { height: 40px; width: auto; margin-bottom: 8px; }
.footer__tagline { font-size: 0.8rem; color: var(--gray-mid); line-height: 1.55; max-width: 200px; }
.footer__head { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin-bottom: 12px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer__links a { font-size: 0.82rem; color: var(--gray-mid); text-decoration: none; }
.footer__links a:hover { color: var(--green); }
.footer__bottom { max-width: var(--max); margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--gray-line); display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--gray-mid); }

/* WA FLOAT */
.wa-float { position: fixed; bottom: 20px; right: 20px; z-index: 200; display: flex; align-items: center; gap: 8px; background: #25d366; color: var(--white); padding: 11px 18px; border-radius: 100px; text-decoration: none; font-size: 0.84rem; font-weight: 600; box-shadow: 0 4px 16px rgba(37,211,102,.3); transition: transform .2s; }
.wa-float:hover { transform: translateY(-2px); }

/* HEADER CTA (antes inline no <a> do menu) */
.nav .btn-green { padding: 9px 16px; font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .units { display: none; }
  .hero--photo {
    background-image: linear-gradient(rgba(46,68,56,1), rgba(46,68,56,1));
  }
  .units--mobile { display: flex !important; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .flow-grid { grid-template-columns: 1fr 1fr; }
  .flow-item { border-right: none; border-bottom: 1px solid var(--gray-line); }
  .flow-item:nth-child(odd) { border-right: 1px solid var(--gray-line); }
  .flow-item:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 4px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 14px 0; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
  .stat:last-child, .stat:nth-last-child(2) { border-bottom: none; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .areas-grid { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-item { border-right: none !important; }
  .flow-item:last-child { border-bottom: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 13px; border-radius: 50%; }
}