/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1a3a1a;
  --green-mid:    #2d5a27;
  --green-light:  #4a8c3f;
  --green-bright: #5fb247;
  --gold:         #c8a84b;
  --gold-light:   #e2c97e;
  --white:        #ffffff;
  --off-white:    #f4f8f0;
  --text:         #1e2a1e;
  --text-muted:   #5a6b5a;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(0,0,0,.12);
  --transition:   .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn--primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,168,75,.4); }

.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.1); }

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); }

.btn--full { width: 100%; justify-content: center; }

/* ===== SECTION COMMON ===== */
.section { padding: 5rem 0; }
.section__label {
  display: inline-block;
  background: var(--green-light);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}
.section__title span { color: var(--gold); }
.section__title--center { text-align: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 .15rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}
.logo__pro { color: var(--white); }
.logo__hab { color: var(--gold); }
.logo__sub {
  width: 100%;
  font-size: .58rem;
  letter-spacing: .22em;
  color: var(--gold-light);
  font-weight: 600;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav__link {
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: .45rem .9rem;
  border-radius: 50px;
  transition: var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav__link--cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: .5rem 1.2rem;
}
.nav__link--cta:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(26,58,26,.92) 0%, rgba(26,58,26,.75) 60%, rgba(26,58,26,.5) 100%),
    url('https://images.unsplash.com/photo-1500622944204-b135684e99fd?w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,140,63,.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4rem;
  max-width: 700px;
}
.hero__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .8rem;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title span { color: var(--gold); }

.hero__checklist {
  margin-bottom: 2rem;
}
.hero__checklist li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.92);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.check { color: var(--green-bright); font-size: 1.1rem; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }

.hero__location {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.hero__location strong { color: var(--gold-light); }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== EQUIPE ===== */
.equipe { background: var(--white); }
.equipe__subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}
.equipe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: end;
}
.equipe__card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(74,140,63,.12);
  transition: var(--transition);
}
.equipe__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.equipe__card--featured {
  background: var(--green-dark);
  border-color: var(--gold);
  border-width: 2px;
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(26,58,26,.35);
}
.equipe__card--featured:hover { transform: translateY(-16px); }
.equipe__card--featured .equipe__info h3 { color: var(--white); }
.equipe__card--featured .equipe__role { color: var(--gold-light); }

.equipe__photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.equipe__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}
.equipe__card:hover .equipe__photo-wrap img { transform: scale(1.04); }

.equipe__info {
  padding: 1.2rem 1.5rem 1.5rem;
}
.equipe__info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .3rem;
}
.equipe__role {
  font-size: .82rem;
  color: var(--green-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 768px) {
  .equipe__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .equipe__card--featured { transform: none; }
  .equipe__card--featured:hover { transform: translateY(-6px); }
}

/* ===== SOBRE ===== */
.sobre { background: var(--white); }
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sobre__text p { color: var(--text-muted); margin-bottom: 1rem; }

.sobre__card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.sobre__card {
  background: var(--off-white);
  border: 1px solid rgba(74,140,63,.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.sobre__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sobre__stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-mid);
  line-height: 1.1;
  margin-bottom: .3rem;
}

/* ===== SERVIÇOS ===== */
.servicos { background: var(--off-white); }
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.servico-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(74,140,63,.12);
  transition: var(--transition);
}
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.servico-card--highlight {
  background: var(--green-dark);
  border-color: var(--gold);
  border-width: 2px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(26,58,26,.35);
}
.servico-card--highlight h3 { color: #fff !important; font-size: 1.2rem; margin-bottom: .8rem; }
.servico-card--highlight p { color: rgba(255,255,255,.95); }
.servico-card--highlight li { color: rgba(255,255,255,.95); }

.servico-card__icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.servico-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-mid);
}
.servico-card--highlight .servico-card__icon {
  background: rgba(255,255,255,.12);
}
.servico-card--highlight .servico-card__icon svg {
  stroke: var(--gold-light);
}
.servico-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .8rem;
}
.servico-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 1rem; }
.servico-card ul { padding-left: 0; }
.servico-card li {
  font-size: .88rem;
  color: var(--text-muted);
  padding: .3rem 0;
  border-top: 1px solid rgba(74,140,63,.1);
  padding-left: 1.2rem;
  position: relative;
}
.servico-card li::before { content: '→'; position: absolute; left: 0; color: var(--green-bright); }
.servico-card--highlight li { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.95); }
.servico-card--highlight li::before { color: var(--gold); }

/* ===== ATUAÇÃO ===== */
.atuacao { background: var(--white); }
.atuacao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.atuacao__text p { color: var(--text-muted); margin-bottom: 1.2rem; }

.estados__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.estados__grid span {
  font-size: .88rem;
  color: var(--text-muted);
  padding: .4rem .8rem;
  background: var(--off-white);
  border-radius: 6px;
  border-left: 3px solid var(--green-light);
}

.atuacao__map-placeholder {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,168,75,.2);
}
.atuacao__map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 60%, rgba(74,140,63,.18) 0%, transparent 65%);
  pointer-events: none;
}
.map__label-top {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .8rem;
}
.map__label-top strong { color: var(--gold-light); }

.map__svg-wrap {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}
.map__brazil { width: 100%; height: auto; display: block; }

.pulse-ring { transform-origin: 258px 328px; }
.r1 { animation: pulse-map 2.4s ease-out infinite; }
.r2 { animation: pulse-map 2.4s ease-out .8s infinite; }
@keyframes pulse-map {
  0%   { opacity: .8; transform: scale(.85); }
  100% { opacity: 0;  transform: scale(1.5); }
}

.map__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.map__stat-item { display: flex; flex-direction: column; gap: .1rem; }
.map__stat-item strong { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 900; color: var(--gold-light); }
.map__stat-item span { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }
.map__stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.15); }

.map__pin {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto .8rem;
}
.map__circle {
  width: 260px; height: 260px;
  border: 2px dashed rgba(200,168,75,.4);
  border-radius: 50%;
  margin: 1.5rem auto;
  position: relative;
}
.map__circle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(200,168,75,.25);
}
.map__label { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .5rem; }

/* ===== DIFERENCIAIS ===== */
.diferenciais { background: var(--green-dark); }
.diferenciais .section__label { background: var(--green-light); }
.diferenciais .section__title { color: var(--white); }
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.diferencial {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.diferencial:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.diferencial__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.diferencial__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-light);
}
.diferencial h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.diferencial p { color: rgba(255,255,255,.7); font-size: .88rem; }

/* ===== CONTATO ===== */
.contato { background: var(--off-white); }
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contato__info p { color: var(--text-muted); margin-bottom: .5rem; }
.contato__details { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contato__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(74,140,63,.15);
  transition: var(--transition);
}
a.contato__item:hover { border-color: var(--green-light); transform: translateX(4px); }
.contato__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contato__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-mid);
  fill: none;
}
a.contato__item .contato__icon { background: #e8f8ef; }
a.contato__item .contato__icon svg { stroke: none; fill: #25d366; }
.contato__item div { display: flex; flex-direction: column; gap: .15rem; }
.contato__item strong { color: var(--green-dark); font-size: .95rem; }
.contato__item span { color: var(--text-muted); font-size: .83rem; }

/* FORM */
.contato__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contato__form h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.form__group { margin-bottom: 1.1rem; }
.form__group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .35rem;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #d4e4d0;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(74,140,63,.1); }
.form__group textarea { resize: vertical; }
.form__note { font-size: .78rem; color: var(--text-muted); margin-top: .8rem; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); color: rgba(255,255,255,.8); padding-top: 4rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand .logo__pro,
.footer__brand .logo__hab { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 900; }
.footer__brand .logo__pro { color: var(--white); }
.footer__brand .logo__hab { color: var(--gold); }
.footer__brand p { font-size: .88rem; color: rgba(255,255,255,.55); margin-top: .8rem; line-height: 1.6; }

.footer__links, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer__links strong, .footer__contact strong {
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.footer__links a, .footer__contact a, .footer__contact span {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__links a:hover, .footer__contact a:hover { color: var(--gold-light); }

.footer__bottom {
  text-align: center;
  padding: 1.2rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); animation: none; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(85vw, 320px);
    height: 100vh;
    background: var(--green-dark);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .nav__link { font-size: 1.05rem; padding: .6rem 1rem; width: 100%; }

  .hero__title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .sobre__grid,
  .atuacao__inner,
  .contato__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .servicos__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .sobre__card-wrap { grid-template-columns: 1fr 1fr; }
  .hero__ctas { flex-direction: column; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .estados__grid { grid-template-columns: 1fr; }
  .contato__form { padding: 1.5rem; }
}
