/* ===================== TOKENS ===================== */
:root {
  --green-900: #0f3d21;
  --green-800: #1a5633;
  --green-700: #1f6b3a;
  --green-600: #2a8144;
  --green-500: #4ba657;
  --green-400: #7cc242;
  --green-300: #a8d66e;
  --green-50:  #eef6ec;
  --green-25:  #f6fbf3;

  --blue-700: #1d4e89;
  --blue-600: #2b6cb0;
  --blue-500: #4a90d9;
  --blue-300: #a8cef0;
  --blue-50:  #eaf3fb;

  --ink-900: #10231a;
  --ink-800: #1f2e27;
  --ink-600: #4a5a51;
  --ink-500: #6b7a71;
  --ink-400: #97a39b;
  --ink-300: #c5cec8;
  --ink-200: #e3e8e4;
  --ink-100: #f0f3ef;

  --bg: #fafaf7;
  --bg-card: #ffffff;

  --accent: var(--green-700);
  --accent-soft: var(--green-50);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(15, 61, 33, 0.05), 0 1px 2px rgba(15, 61, 33, 0.03);
  --shadow-md: 0 8px 24px rgba(15, 61, 33, 0.08), 0 2px 6px rgba(15, 61, 33, 0.04);
  --shadow-lg: 0 24px 60px rgba(15, 61, 33, 0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  --wrap: 1240px;
}

body[data-accent="blue"] {
  --accent: var(--blue-600);
  --accent-soft: var(--blue-50);
}
body[data-accent="mixed"] {
  --accent: var(--green-700);
  --accent-soft: var(--green-50);
}

/* ===================== BASE ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 120px 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: 64px; }
.section__head--center { text-align: center; margin: 0 auto 64px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow--light { color: var(--green-300); }

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 20px;
  text-wrap: balance;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
.h-display--light { color: #fff; }

.section__lede {
  font-size: 18px;
  color: var(--ink-600);
  max-width: 560px;
  margin: 0;
  text-wrap: pretty;
}

.lede {
  font-size: 18px;
  color: var(--ink-600);
  line-height: 1.65;
  text-wrap: pretty;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(31, 107, 58, 0.24);
}
.btn--primary:hover { background: var(--green-800); box-shadow: 0 8px 24px rgba(31, 107, 58, 0.32); }
body[data-accent="blue"] .btn--primary:hover { background: var(--blue-700); }

.btn--outline {
  background: transparent;
  border-color: var(--ink-300);
  color: var(--ink-800);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); }

.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 14px; border-color: currentColor; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .3s ease;
}
.nav--scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15,61,33,0.06);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand img {
  height: 44px;
  width: auto;
  transition: all .3s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
.nav--scrolled .nav__brand img { height: 38px; filter: none; }

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px;
  background: currentColor; transform: scaleX(0); transition: transform .2s;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav--scrolled .nav__links a { color: var(--ink-800); }

.nav__cta { display: flex; gap: 10px; }
.nav__burger { display: none; color: #fff; }
.nav--scrolled .nav__burger { color: var(--ink-800); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 20px 28px;
  background: #fff;
  border-top: 1px solid var(--ink-200);
  gap: 16px;
}
.nav__mobile a { color: var(--ink-800); padding: 8px 0; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__mobile { display: flex; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.85);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,61,33,0.1) 0%, rgba(15,61,33,0.55) 70%, rgba(15,61,33,0.85) 100%),
    linear-gradient(90deg, rgba(15,61,33,0.6) 0%, rgba(15,61,33,0.15) 60%);
}
.hero__content {
  position: relative; z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 4px rgba(124, 194, 66, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(124, 194, 66, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(124, 194, 66, 0.1); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 14ch;
  text-wrap: balance;
  font-variation-settings: "SOFT" 100, "WONK" 0;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 54ch;
  color: rgba(255,255,255,0.88);
  margin: 0 0 40px;
  text-wrap: pretty;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }

.hero__meta {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  max-width: max-content;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero__meta-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--green-300);
}
.hero__meta-item span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__meta-div {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 32px; right: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(rgba(255,255,255,0.7), transparent);
  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-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 700px) {
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 24px; }
  .hero__meta-div { width: 100%; height: 1px; }
  .hero__scroll { display: none; }
}

/* ===================== SOBRE ===================== */
.sobre { background: var(--bg); }
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.sobre__media {
  position: relative;
  height: 640px;
}
.sobre__img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre__img--1 {
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('assets/hero-parque.jpg') center/cover;
}

.ph-stripes {
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.1) 0 12px,
      rgba(255,255,255,0.02) 12px 24px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: rgba(255,255,255,0.8);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  padding: 16px;
}
.ph-stripes::before { content: attr(data-label); }
.ph-stripes--blue {
  background:
    linear-gradient(135deg, var(--blue-500), var(--blue-700)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0 12px, transparent 12px 24px);
}

.sobre__mark {
  position: absolute;
  top: 55%;
  left: 60%;
  width: 110px; height: 110px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.sobre__mark img { width: 100%; height: 100%; object-fit: contain; }

.sobre__list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sobre__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink-600);
  font-size: 15px;
}
.sobre__list li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.sobre__list li strong { color: var(--ink-900); font-weight: 600; }

@media (max-width: 900px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre__media { height: 500px; }
}

/* ===================== SERVIÇOS ===================== */
.servicos { background: var(--green-25); position: relative; }
.servicos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(var(--bg), transparent);
  pointer-events: none;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--ink-200);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.service__tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.service__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink-900);
}
.service p { color: var(--ink-600); margin: 0 0 20px; font-size: 15px; line-height: 1.6; }
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap .2s;
}
.service__link:hover { gap: 10px; }

@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* ===================== PARQUE ===================== */
.parque { background: var(--bg); }
.parque__main {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.parque__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
}
.parque__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.parque__photo:hover img { transform: scale(1.03); }
.parque__photo-caption {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  color: #fff;
  padding: 24px;
  background: linear-gradient(transparent, rgba(15,61,33,0.9));
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.parque__photo-caption::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15,61,33,0.85));
  border-radius: var(--radius);
  z-index: -1;
}
.parque__photo-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--green-300);
}
.parque__photo-caption h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin: 6px 0 6px;
}
.parque__photo-caption p { margin: 0; opacity: 0.85; font-size: 14px; }

.parque__list { display: flex; flex-direction: column; gap: 10px; }
.parque__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  text-align: left;
  transition: all .25s ease;
  flex: 1;
}
.parque__item:hover { border-color: var(--green-400); transform: translateX(4px); }
.parque__item.is-active {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}
.parque__item-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-400);
  letter-spacing: 0.1em;
}
.parque__item.is-active .parque__item-num { color: var(--green-300); }
.parque__item-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}
.parque__item-arrow { opacity: 0.4; }
.parque__item.is-active .parque__item-arrow { opacity: 1; color: var(--green-300); }

@media (max-width: 900px) {
  .parque__main { grid-template-columns: 1fr; }
  .parque__photo { min-height: 420px; }
}

/* ===================== PLANOS ===================== */
.planos { background: var(--green-25); }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--ink-200);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .2s;
}
.plan:hover { transform: translateY(-4px); }
.plan--featured {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.plan--featured:hover { transform: scale(1.02) translateY(-4px); }
.plan__badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--green-400);
  color: var(--green-900);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 10px;
}
.plan__desc {
  font-size: 14px;
  color: var(--ink-600);
  margin: 0 0 28px;
  line-height: 1.55;
  min-height: 60px;
}
.plan--featured .plan__desc { color: rgba(255,255,255,0.7); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink-200);
  flex-wrap: wrap;
}
.plan--featured .plan__price { border-color: rgba(255,255,255,0.15); }
.plan__currency { font-size: 18px; color: var(--ink-500); }
.plan--featured .plan__currency { color: rgba(255,255,255,0.7); }
.plan__amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan--featured .plan__amount { color: #fff; }
.plan__from {
  font-size: 12px;
  color: var(--ink-500);
  margin-left: 4px;
  width: 100%;
  margin-top: 4px;
}
.plan--featured .plan__from { color: rgba(255,255,255,0.6); }
.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.5;
}
.plan--featured .plan__features li { color: rgba(255,255,255,0.85); }
.plan__features li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--accent);
}
.plan--featured .plan__features li svg { color: var(--green-400); }

.planos__foot {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-600);
  font-size: 15px;
}
.planos__foot a { color: var(--accent); font-weight: 600; border-bottom: 1px solid currentColor; }

@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; gap: 20px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
}

/* ===================== DEPOIMENTOS ===================== */
.depoimentos {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(74,144,217,0.08), transparent 50%),
    linear-gradient(180deg, var(--green-900), var(--ink-900));
  color: #fff;
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.depoimentos__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.depoimentos__nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.depoimentos__nav button:hover {
  background: var(--green-400);
  border-color: var(--green-400);
  color: var(--green-900);
}
.depoimentos__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  backdrop-filter: blur(12px);
}
.depoimentos__quote {
  position: absolute;
  top: 24px; right: 28px;
  color: var(--green-400);
  opacity: 0.4;
}
.depoimentos__text {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.45;
  font-weight: 400;
  margin: 0 0 36px;
  color: #fff;
  text-wrap: pretty;
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.depoimentos__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.depoimentos__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.depoimentos__author strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.depoimentos__author span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

@media (max-width: 900px) {
  .depoimentos__grid { grid-template-columns: 1fr; gap: 40px; }
  .depoimentos__card { padding: 32px 28px; }
  .depoimentos__text { font-size: 20px; }
}

/* ===================== FAQ ===================== */
.faq { background: var(--bg); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq__list { list-style: none; padding: 0; margin: 0; }
.faq__item {
  border-bottom: 1px solid var(--ink-200);
}
.faq__item:first-child { border-top: 1px solid var(--ink-200); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-900);
  transition: color .2s;
}
.faq__q:hover { color: var(--accent); }
.faq__toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.faq__a {
  padding: 0 0 24px;
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.65;
  max-width: 58ch;
}

@media (max-width: 900px) {
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===================== CONTATO ===================== */
.contato {
  background: var(--ink-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contato::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,144,217,0.15), transparent 70%);
  pointer-events: none;
}
.contato::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,194,66,0.12), transparent 70%);
  pointer-events: none;
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contato__lede {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 42ch;
}
.contato__info { display: flex; flex-direction: column; gap: 20px; }
.contato__info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contato__info-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.contato__info-item svg { color: var(--green-400); flex-shrink: 0; }
.contato__info-item strong {
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2px;
}
.contato__info-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.contato__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
}
.contato__form h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #fff;
}
.contato__form-lede {
  color: rgba(255,255,255,0.65);
  margin: 0 0 28px;
  font-size: 14px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all .2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-400);
  background: rgba(255,255,255,0.09);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.contato__form-foot {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 16px 0 0;
}

@media (max-width: 900px) {
  .contato__grid { grid-template-columns: 1fr; gap: 48px; }
  .contato__form { padding: 28px 24px; }
}

/* ===================== FOOTER ===================== */
.footer {
  background: #0a1a10;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.2);
}
.footer__grid p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 30ch;
}
.footer__grid h5 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 600;
}
.footer__grid a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}
.footer__grid a:hover { color: var(--green-400); }
.footer__foot {
  display: flex;
  justify-content: space-between;
  padding: 32px 28px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ===================== WHATSAPP FLOAT ===================== */
.whats-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: all .2s;
  animation: floatBob 3s ease-in-out infinite;
}
.whats-float:hover { transform: scale(1.08); }
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===================== TWEAKS PANEL ===================== */
.tweaks {
  position: fixed;
  top: 80px; right: 20px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
}
.tweaks__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--ink-900);
  color: #fff;
}
.tweaks__head button { color: #fff; opacity: 0.7; }
.tweaks__head button:hover { opacity: 1; }
.tweaks__body { padding: 18px; display: flex; flex-direction: column; gap: 18px; }
.tweaks__row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 8px;
  font-weight: 600;
}
.tweaks__row textarea {
  width: 100%;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
}
.tweaks__row textarea:focus { outline: none; border-color: var(--accent); }
.tweaks__swatches { display: flex; gap: 8px; }
.swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all .2s;
}
.swatch--green { background: var(--green-700); }
.swatch--blue { background: var(--blue-600); }
.swatch--mixed { background: linear-gradient(135deg, var(--green-700) 50%, var(--blue-600) 50%); }
.swatch.is-on { border-color: var(--ink-900); transform: scale(1.1); }
