/* ============================================================
   ARCAIXAS — components.css
   Header, Footer, Hero, Cards, Botões, Forms e todos os componentes
   ============================================================ */

/* ══════════════════════════════════════════
   HEADER E NAVEGAÇÃO
══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow .3s;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* Nav desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  padding: 7px 12px;
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 600;
  color: var(--mid);
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: var(--ease);
  white-space: nowrap;
  position: relative;
}
.nav__link:hover,
.nav__link.active {
  color: var(--forest);
  background: var(--linen);
}

/* Dropdown */
.nav__item {
  position: relative;
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: .82rem;
  color: var(--mid);
  border-radius: var(--r-sm);
  transition: var(--ease);
}
.nav__dropdown a:hover {
  background: var(--linen);
  color: var(--forest);
}
.nav__dropdown__divider {
  height: 1px;
  background: var(--border-light);
  margin: 6px 8px;
}

/* CTA nav */
.nav__cta {
  padding: 10px 22px;
  background: var(--forest);
  color: var(--white) !important;
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-left: 10px;
  box-shadow: 0 4px 14px rgba(27,94,47,.25);
  transition: var(--ease);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,94,47,.3);
}

/* Hamburger mobile */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: var(--ease);
}
.nav__toggle:hover {
  background: var(--linen);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav panel */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px var(--container-pad) 28px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - var(--header-h));
}
.nav__mobile.open {
  display: block;
}
.nav__mobile a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--mid);
  border-bottom: 1px solid var(--border-light);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--forest);
}
.nav__mobile .mobile-cta {
  display: block;
  margin-top: 20px;
  text-align: center;
  padding: 14px 24px;
  background: var(--forest);
  color: var(--white) !important;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .82rem;
  border-bottom: none;
}
.nav__mobile-section {
  padding: 6px 0 4px;
  font-family: var(--font-heading);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  border-bottom: none !important;
}

/* ══════════════════════════════════════════
   HERO — SPLIT SCREEN (Home)
══════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 580px;
  max-height: 680px;
  margin-top: var(--header-h);
}
.hero__text {
  background: linear-gradient(155deg, var(--forest-deeper) 0%, var(--forest) 55%, #1F6A35 100%);
  padding: 80px 50px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero__text::after {
  content: '';
  position: absolute;
  top: 0; right: -28px;
  width: 56px; height: 100%;
  background: linear-gradient(to right, var(--forest), transparent);
  z-index: 2;
  pointer-events: none;
}
.hero__text-inner {
  padding-left: 56px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}
.hero__title em {
  font-style: normal;
  color: var(--kraft);
}
.hero__subtitle {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100px; height: 100%;
  background: linear-gradient(to right, var(--forest), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: rgba(255,255,255,.96);
  border-radius: var(--r-md);
  padding: 15px 20px;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--forest);
  line-height: 1;
}
.hero__badge span {
  font-size: .72rem;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}

/* ══════════════════════════════════════════
   HERO SIMPLES (páginas internas)
══════════════════════════════════════════ */
.hero-simple {
  background: linear-gradient(155deg, var(--forest-deeper), var(--forest));
  padding: 72px 0 60px;
  text-align: center;
  margin-top: var(--header-h);
}
.hero-simple .eyebrow {
  justify-content: center;
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.hero-simple h1 {
  color: var(--white);
  margin-bottom: 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-simple p {
  color: rgba(255,255,255,.68);
  max-width: 500px;
  margin: 0 auto;
  font-size: .98rem;
}
.hero-simple + .kraft-strip {
  /* já herdado */
}

/* ══════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════ */
/* Primário — verde folha */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--leaf);
  color: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: var(--ease);
  box-shadow: 0 4px 14px rgba(63,162,64,.28);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--leaf-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(63,162,64,.36);
  color: var(--white);
}

/* Secundário — contorno branco (fundos escuros) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.42);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  color: var(--white);
}

/* Dark — verde floresta (fundos claros) */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: var(--ease);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-dark:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* Outline verde (fundos claros) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

/* WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: var(--ease);
  box-shadow: 0 4px 14px rgba(37,211,102,.28);
  cursor: pointer;
  border: none;
  width: 100%;
  margin-bottom: 22px;
}
.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  color: var(--white);
}

/* Tamanhos */
.btn-lg { padding: 16px 34px; font-size: .88rem; }
.btn-sm { padding: 9px 20px; font-size: .72rem; }

/* ══════════════════════════════════════════
   CARDS GENÉRICOS
══════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--leaf);
}
.card__icon {
  width: 48px; height: 48px;
  background: var(--linen);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card h3 { margin-bottom: 8px; }
.card p  { font-size: .88rem; }

/* Card inline (ícone ao lado) */
.card--inline {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
}
.card--inline .card__icon { margin-bottom: 0; }

/* ══════════════════════════════════════════
   SEGMENT PILLS
══════════════════════════════════════════ */
.seg-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.seg-pill:hover,
.seg-pill.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: var(--shadow-md);
}
.seg-pill__icon { font-size: 1.1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: var(--ease-slow);
  text-decoration: none;
  display: block;
  color: inherit;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-top-color: var(--kraft);
}
.product-card__image {
  height: 185px;
  overflow: hidden;
  position: relative;
  background: var(--linen);
}
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.07);
}
.product-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--kraft);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  z-index: 1;
}
.product-card__body { padding: 16px; }
.product-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.product-card__desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.product-card__cta {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-card:hover .product-card__cta {
  color: var(--leaf);
}

/* ══════════════════════════════════════════
   HUMAN SECTION (equipe/fábrica)
══════════════════════════════════════════ */
.human-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.human-section__image {
  position: relative;
  overflow: hidden;
}
.human-section__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.human-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,94,47,.55), rgba(27,94,47,.1));
}
.human-section__stats {
  position: absolute;
  bottom: 28px; left: 28px;
  display: flex;
  gap: 24px;
  z-index: 1;
}
.human-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.human-stat span {
  font-size: .62rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.human-section__content {
  background: var(--linen);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ══════════════════════════════════════════
   TECH COMPARISON (onda simples vs dupla)
══════════════════════════════════════════ */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tech-card {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
  text-decoration: none;
  display: block;
  color: inherit;
}
.tech-card:hover { box-shadow: var(--shadow-md); }
.tech-card__image {
  height: 200px;
  overflow: hidden;
  background: var(--linen);
}
.tech-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tech-card:hover .tech-card__image img { transform: scale(1.04); }
.tech-card__body { padding: 28px; }
.tech-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.tech-badge--simples { background: var(--linen); color: var(--leaf); }
.tech-badge--dupla   { background: var(--forest); color: var(--white); }
.tech-card__body h3 { margin-bottom: 10px; }
.tech-list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tech-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  color: var(--mid);
}
.tech-list li::before {
  content: '✓';
  color: var(--leaf);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(140deg, var(--forest-deeper) 0%, var(--forest) 60%, #225E37 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  border: 70px solid rgba(255,255,255,.035);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border: 50px solid rgba(255,255,255,.025);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p  {
  color: rgba(255,255,255,.68);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: .98rem;
}
.cta-band .btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
   STATS ROW
══════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat-box {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.stat-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.stat-box__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--forest);
  line-height: 1;
}
.stat-box__label {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ══════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════ */
.steps-wrap { max-width: 760px; margin: 0 auto; }
.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 0;
}
.step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.step__num {
  min-width: 48px; height: 48px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.step__body h3 {
  margin-bottom: 6px;
  padding-top: 10px;
}
.step__body p { font-size: .88rem; }

/* ══════════════════════════════════════════
   TABS
══════════════════════════════════════════ */
.tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: var(--ease);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
}

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ══════════════════════════════════════════
   SEGMENT PANELS (tabs de segmento)
══════════════════════════════════════════ */
.seg-panel { display: none; }
.seg-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.seg-badge {
  display: inline-block;
  background: var(--kraft-light);
  color: var(--kraft);
  font-family: var(--font-heading);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.seg-panel__dor {
  background: #FFF8EE;
  border-left: 4px solid var(--kraft);
  padding: 15px 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 14px;
  font-size: .875rem;
  color: #7D5A2A;
  line-height: 1.6;
}
.seg-panel__sol {
  background: #EDF7EE;
  border-left: 4px solid var(--leaf);
  padding: 15px 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 20px;
  font-size: .875rem;
  color: #2A6B2D;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════ */
.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
  text-decoration: none;
  display: block;
  color: inherit;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-card__image {
  height: 180px;
  overflow: hidden;
  background: var(--linen);
}
.blog-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 20px; }
.blog-card__category {
  font-family: var(--font-heading);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--leaf);
  margin-bottom: 8px;
  display: block;
}
.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.blog-card__excerpt {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}
.blog-card__meta {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 20px 0;
  user-select: none;
}
.faq-question h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  flex: 1;
  line-height: 1.4;
}
.faq-toggle {
  width: 28px; height: 28px;
  min-width: 28px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  font-size: 1.2rem;
  line-height: 1;
  transition: var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  border-color: var(--kraft);
  color: var(--kraft);
}
.faq-answer {
  display: none;
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.75;
  padding-bottom: 20px;
}
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════════════════
   FORMULÁRIOS
══════════════════════════════════════════ */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-label .required { color: var(--leaf); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(27,94,47,.08);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
  font-size: .85rem;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-textarea {
  min-height: 110px;
  resize: vertical;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-hint {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 5px;
}
.form-error {
  font-size: .72rem;
  color: #D32F2F;
  margin-top: 5px;
  display: none;
}
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #D32F2F;
}
.form-group.has-error .form-error { display: block; }
.form-submit-area { margin-top: 8px; }
.form-privacy {
  font-size: .7rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   CONTACT INFO ROWS
══════════════════════════════════════════ */
.contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  padding: 16px 18px;
  background: var(--linen);
  border-radius: var(--r-md);
  transition: var(--ease);
}
.contact-row:hover { background: var(--border-light); }
.contact-row__icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: var(--white);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-xs);
}
.contact-row h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.contact-row p { font-size: .85rem; margin: 0; }
.contact-row a { color: var(--forest); }
.contact-row a:hover { color: var(--leaf); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--forest);
  padding: 60px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 16px;
  display: block;
  background: rgba(255,255,255,0.92);
  border-radius: 4px;
  padding: 4px 10px;
  box-sizing: content-box;
}
.footer__tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  max-width: 220px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer__contact p {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.footer__contact a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer__contact a:hover { color: var(--leaf); }
.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer__links a:hover { color: var(--leaf); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}
.footer__bottom a {
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer__bottom a:hover { color: var(--leaf); }

/* ══════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: .4; }

/* ══════════════════════════════════════════
   COOKIES BANNER
══════════════════════════════════════════ */
.cookies-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding: 16px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 2000;
  font-size: .78rem;
  flex-wrap: wrap;
  display: none;
}
.cookies-banner.visible { display: flex; }
.cookies-banner a { color: var(--leaf); }
.cookies-banner__btn {
  padding: 8px 20px;
  background: var(--leaf);
  color: var(--white);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .72rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--ease);
  z-index: 500;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
}
