/* Griffe Campo Limpo — landing page styles */

:root {
  /* base surfaces — light neutral with a faint green cast */
  --cream: #f7faf8;
  --cream-alt: #eef6f2;

  /* body text — matches the GRIFFE book's paragraph ink */
  --ink: #3a3950;
  --ink-strong: #123d27;
  --ink-soft: #4b4a63;
  --ink-mute: #5c5b73;
  --ink-faint: #6b6a80;
  --ink-faintest: #7c7b90;
  --ink-brand-sub: #6b6a80;

  /* GRIFFE brand colors, sampled from the official book (BookGriffe.pdf) */
  --terra: #ed8322;        /* brand orange — "GRIFFE" wordmark */
  --terra-dark: #cf6f16;
  --terra-mid: #ed8322;
  --teal: #1f9d86;         /* brand turquoise accent */
  --gold: #f2c914;         /* brand gold accent */
  --whatsapp: #23b56f;     /* GRIFFE leaf-green (from the logo) tuned to read as WhatsApp green */
  --whatsapp-dark: #178a52;

  --border: #dde5e0;
  --white-ish: #fffefb;

  --dark-bg: #0f3d27;      /* deep GRIFFE forest green */
  --dark-text: #f3f7f4;
  --dark-text-soft: #cfe3d6;
  --dark-text-mute: #a9c7b6;
  --dark-text-faint: #93b6a2;
  --dark-accent: #f2c914;
  --dark-accent-strong: #f7d84a;
  --dark-border: #2f6b4a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  font-family: 'Karla', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

a { color: var(--terra-mid); text-decoration: none; }
a:hover { color: var(--terra-dark); }
::selection { background: rgba(237, 131, 34, 0.28); }

img { max-width: 100%; display: block; }
.media-cover { width: 100%; height: 100%; object-fit: cover; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.serif { font-family: 'Lora', serif; }

.eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--terra-mid);
  font-weight: 700;
}
.eyebrow--dark { color: var(--dark-accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white-ish);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.btn:hover { background: var(--whatsapp-dark); color: var(--white-ish); }
.btn--lg { padding: 18px 36px; font-weight: 700; font-size: 16px; }
.btn--hero { padding: 16px 30px; font-weight: 700; font-size: 15px; }

.link-underline {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid #b7c2bb;
  padding-bottom: 2px;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 48px;
  background: rgba(247, 250, 248, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; letter-spacing: 0.5px; }
.brand-sub { font-size: 11px; letter-spacing: 2px; color: var(--ink-brand-sub); margin-top: 3px; }

/* hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 88vh;
  align-items: stretch;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 64px 64px 80px;
  gap: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-size: 56px;
  line-height: 1.08;
  margin: 0;
  font-weight: 500;
  color: var(--ink-strong);
  text-wrap: pretty;
}
.hero-title em { font-style: italic; color: var(--terra); }
.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 460px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 16px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.hero-media { position: relative; min-height: 320px; }

/* generic section */
.section { padding: 110px 80px; }
.section--alt { background: var(--cream-alt); }
.section--dark { background: var(--dark-bg); color: var(--dark-text); }
.section-intro { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-title { font-size: 38px; font-weight: 500; margin: 14px 0 18px; color: var(--ink-strong); }
.section-desc { font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.section-note { text-align: center; font-size: 13px; color: var(--ink-faintest); margin-top: 24px; }

/* bairro */
.bairro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.bairro-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-content: start; }
.bairro-gallery .lazer-card { min-height: 0; height: 150px; }
.bairro-list { display: flex; flex-direction: column; }
.bairro-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.bairro-item:last-child { border-bottom: none; }
.bairro-item-label { font-family: 'Lora', serif; font-style: italic; color: var(--teal); font-size: 15px; min-width: 80px; flex-shrink: 0; }
.bairro-item-text { font-size: 15px; }

/* lazer */
.lazer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.lazer-card { position: relative; border-radius: 18px; overflow: hidden; min-height: 180px; }
.lazer-card--big { grid-column: span 2; grid-row: span 2; }
.lazer-card--wide { grid-column: span 2; }
.lazer-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(8, 26, 17, 0.7));
  pointer-events: none;
  color: white;
  font-size: 13px;
  font-weight: 600;
}
.lazer-caption--big { padding: 20px; font-family: 'Lora', serif; font-style: italic; font-size: 18px; font-weight: 400; }
.lazer-caption--wide { padding: 16px; font-family: 'Lora', serif; font-style: italic; font-size: 16px; font-weight: 400; }

/* plantas */
.plantas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; max-width: 1100px; margin: 0 auto; }
.planta-card { background: var(--cream); border-radius: 20px; overflow: hidden; }
.planta-media { padding: 32px; background: var(--cream-alt); display: flex; align-items: center; justify-content: center; }
.planta-media .media-cover { width: 100%; height: auto; object-fit: contain; }
.planta-body { padding: 32px; }
.planta-tag { font-size: 12px; letter-spacing: 2px; color: var(--terra-mid); font-weight: 700; }
.planta-title { font-size: 26px; font-weight: 500; margin: 10px 0 6px; }
.planta-desc { font-size: 14px; color: var(--ink-faint); margin: 0; }

/* diferenciais */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1150px; margin: 0 auto; }
.diff-title { font-style: italic; font-size: 17px; font-weight: 500; margin: 0 0 8px; color: var(--teal); }
.diff-desc { font-size: 14px; color: var(--ink-mute); line-height: 1.5; margin: 0; }

/* sobre EPH */
.eph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1200px; margin: 0 auto; align-items: center; }
.eph-title { font-size: 34px; font-weight: 500; margin: 14px 0 20px; }
.eph-desc { font-size: 16px; line-height: 1.7; color: var(--dark-text-soft); margin: 0 0 20px; }
.eph-projects { font-size: 14px; color: var(--dark-text-faint); margin: 0; }
.eph-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-item { border-left: 2px solid var(--dark-border); padding-left: 20px; }
.stat-number { font-size: 36px; font-style: italic; color: var(--dark-accent-strong); }
.stat-label { font-size: 13px; color: var(--dark-text-mute); margin: 6px 0 0; }

/* faq */
.faq { max-width: 820px; margin: 0 auto; }
.faq-intro { text-align: center; margin-bottom: 52px; }
.faq-item { padding: 26px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-size: 18px; font-weight: 500; margin: 0 0 8px; }
.faq-answer { font-size: 15px; line-height: 1.6; color: var(--ink-mute); margin: 0; }

/* cta final */
.cta-final { padding: 120px 80px; text-align: center; }
.cta-title { font-size: 42px; font-weight: 500; max-width: 640px; margin: 0 auto 24px; color: var(--ink-strong); text-wrap: pretty; }
.cta-desc { font-size: 17px; color: var(--ink-soft); max-width: 480px; margin: 0 auto 28px; }

.broker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin: 0 auto;
  padding: 52px 52px 44px;
  max-width: 520px;
  background: var(--cream);
  border-radius: 34px;
  box-shadow: 0 20px 48px rgba(18, 61, 39, 0.16);
}
.broker-photo {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 5px solid var(--white-ish);
  outline: 4px solid var(--whatsapp);
  box-shadow: 0 8px 22px rgba(18, 61, 39, 0.24);
}
.broker-info { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.broker-name { font-size: 28px; font-weight: 600; color: var(--ink-strong); }
.broker-nick { font-weight: 400; font-style: italic; color: var(--ink-faint); font-size: 19px; }
.broker-role { font-size: 16px; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.broker-links { font-size: 17px; margin-top: 6px; }
.broker-links a { color: var(--ink-soft); font-weight: 600; }
.broker-links a:hover { color: var(--terra-dark); }
.broker-links span { color: var(--ink-faintest); margin: 0 6px; }
.broker-cta { margin-top: 6px; }

/* footer */
.site-footer { padding: 48px 80px; background: var(--dark-bg); color: var(--dark-text-faint); font-size: 13px; line-height: 1.7; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-brand { font-family: 'Lora', serif; color: var(--dark-text); font-size: 16px; }
.footer-desc { margin: 6px 0 0; max-width: 420px; }
.footer-address { max-width: 320px; }

/* whatsapp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(35, 181, 111, 0.45);
}
.whatsapp-float:hover { background: var(--whatsapp-dark); }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .site-header { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 56px 24px 40px; }
  .hero-media { height: 320px; order: -1; }
  .hero-title { font-size: 42px; }
  .section { padding: 72px 24px; }
  .cta-final { padding: 80px 24px; }
  .bairro-grid { grid-template-columns: 1fr; }
  .eph-grid { grid-template-columns: 1fr; gap: 40px; }
  .diff-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lazer-grid { grid-template-columns: repeat(2, 1fr); }
  .lazer-card--big { grid-column: span 2; grid-row: span 1; min-height: 260px; }
  .lazer-card--wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .brand-name { font-size: 17px; }
  .brand-sub { font-size: 10px; }
  .btn { padding: 10px 16px; font-size: 13px; }
  .hero-content { padding: 44px 18px 36px; gap: 20px; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .hero-actions { gap: 12px; }
  .section { padding: 56px 18px; }
  .section-title { font-size: 28px; }
  .cta-final { padding: 64px 18px; }
  .cta-title { font-size: 30px; }
  .broker-card { border-radius: 24px; padding: 36px 24px 30px; max-width: 100%; gap: 18px; }
  .broker-photo { width: 116px; height: 116px; }
  .broker-name { font-size: 24px; }
  .broker-nick { font-size: 16px; }
  .broker-links { display: flex; flex-direction: column; gap: 2px; }
  .broker-links span { display: none; }
  .plantas-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .eph-stats { grid-template-columns: 1fr 1fr; }
  .lazer-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lazer-card--big { grid-column: span 2; min-height: 220px; }
  .bairro-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}
