/* =========================================================
   FarturaFoods — Design System
   Paleta: Navy #083177 · Salmão #f18d7d · Ciano #23CDE7
   Tipografia: Urbanist (títulos) · Epilogue (corpo)
   ========================================================= */

:root {
  --navy: #083177;
  --navy-deep: #041c47;
  --navy-mid: #2c5aa0;
  --salmon: #f18d7d;
  --cyan: #23cde7;
  --white: #ffffff;
  --bg: #ffffff;
  --ink: #051c40;
  --ink-fg: #ffffff;
  --secondary: #f2f5fa;
  --border: #e2e7f0;
  --text: #16213e;
  --muted: #5c6a85;
  --muted-soft: #8891a8;

  --gradient-deep: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  --shadow-soft: 0 30px 70px -40px rgba(8, 49, 119, 0.35);
  --shadow-lift: 0 40px 90px -50px rgba(8, 49, 119, 0.5);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;

  --font-display: "Urbanist", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Epilogue", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  margin: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--salmon);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow-row .line { width: 3rem; height: 1px; background: var(--salmon); }

.hairline {
  height: 1px;
  width: 100%;
  background-image: linear-gradient(90deg, var(--salmon) 0%, var(--cyan) 100%);
}

.gradient-deep { background-image: var(--gradient-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  border: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.btn svg { transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-accent { background: var(--salmon); color: #241016; }
.btn-accent:hover { filter: brightness(1.06); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { filter: brightness(1.25); }
.btn-outline { border: 1px solid var(--border); color: var(--text); background: transparent; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
}
.site-header .header-bar {
  position: relative;
  transition: all 0.4s ease;
}
.site-header.scrolled .header-bar {
  background: var(--bg);
  border-bottom: 1px solid rgba(226, 231, 240, 0.7);
}
.site-header .header-glow {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: -1;
  height: 80px;
  background: linear-gradient(to bottom, rgba(8, 49, 119, 0.82) 0%, rgba(8, 49, 119, 0.55) 65%, rgba(8, 49, 119, 0) 100%);
  transition: opacity 0.4s ease;
}
.site-header.scrolled .header-glow { opacity: 0; }

.header-row {
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 80px;
  transition: height 0.4s ease;
}
.site-header.scrolled .header-row { height: 64px; }
@media (min-width: 1024px) { .header-row { padding: 0 3rem; } }

.header-logo img { height: 40px; width: auto; transition: all 0.4s ease; }
.site-header.scrolled .header-logo img { height: 32px; filter: none; }

.main-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .main-nav { display: flex; } }

.main-nav a.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.site-header.scrolled .main-nav a.nav-link { color: var(--muted); }
.main-nav a.nav-link:hover { color: #fff; }
.site-header.scrolled .main-nav a.nav-link:hover { color: var(--text); }
.main-nav a.nav-link.active { color: #fff; }
.site-header.scrolled .main-nav a.nav-link.active { color: var(--text); }
.main-nav a.nav-link .underline {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--salmon);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.main-nav a.nav-link:hover .underline,
.main-nav a.nav-link.active .underline { transform: scaleX(1); }

.main-nav .btn-accent { margin-left: 1rem; padding: 0.75rem 1.5rem; }

.header-burger {
  display: block;
  background: none;
  border: none;
  color: #fff;
  padding: 0;
}
.site-header.scrolled .header-burger { color: var(--text); }
@media (min-width: 768px) { .header-burger { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(226, 231, 240, 0.6);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu .mnav { display: flex; flex-direction: column; }
.mobile-menu .mnav a {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(226, 231, 240, 0.6);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
}
.mobile-menu .btn-accent { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* =========================================================
   PAGE HEADER (banner interno)
   ========================================================= */
.page-header {
  position: relative;
  padding: 8rem 0 3.5rem;
  color: #fff;
}
@media (min-width: 1024px) { .page-header { padding: 10rem 0 5rem; } }
.page-header h1 {
  margin-top: 1.25rem;
  max-width: 56rem;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 200;
}
@media (min-width: 768px)  { .page-header h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .page-header h1 { font-size: 3.75rem; } }
.page-header h1 em, .page-header h1 .accent { color: var(--salmon); font-style: italic; }
.page-header p.subtitle {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 768px) { .page-header p.subtitle { font-size: 1.125rem; } }

/* =========================================================
   HERO (home)
   ========================================================= */
.hero { position: relative; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,49,119,0.95) 0%, rgba(8,49,119,0.75) 55%, rgba(8,49,119,0.25) 100%);
}
.hero .overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,49,119,0.85) 0%, rgba(8,49,119,0) 55%, rgba(8,49,119,0.55) 100%);
}
.hero-content {
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  min-height: min(92vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
}
@media (min-width: 1024px) { .hero-content { padding: 7rem 3rem; } }
.hero-content .inner { max-width: 42rem; }
.hero-content h1 {
  margin-top: 2rem;
  font-size: 3rem;
  line-height: 0.95;
  font-weight: 200;
  color: #fff;
}
@media (min-width: 768px) { .hero-content h1 { font-size: 4.5rem; } }
.hero-content h1 .accent { display: block; margin-top: 0.5rem; font-weight: 300; color: var(--salmon); }
.hero-content h1 .accent em { font-style: italic; }
.hero-content .rule { margin-top: 2.5rem; height: 1px; width: 6rem; }
.hero-content .lead {
  margin-top: 2.5rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 768px) { .hero-content .lead { font-size: 1.125rem; } }
.hero-content .cta { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 32rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
}
.hero-stats .num { font-family: var(--font-display); font-size: 1.875rem; font-weight: 300; color: #fff; }
.hero-stats .lbl { margin-top: 0.5rem; font-size: 0.68rem; line-height: 1.3; color: rgba(255,255,255,0.5); text-transform: uppercase; }

/* =========================================================
   SEÇÕES GENÉRICAS
   ========================================================= */
.section { padding: 6rem 0; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section-tight { padding: 5rem 0; }
@media (min-width: 1024px) { .section-tight { padding: 7rem 0; } }
.section-alt { background: var(--secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.split {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 5rem; } }

h2.title { font-size: 2.25rem; line-height: 1.05; font-weight: 300; color: var(--text); }
@media (min-width: 768px) { h2.title { font-size: 3rem; } }
h2.title .accent { display: block; color: var(--navy); font-style: italic; }
h2.title .accent-inline { color: var(--salmon); }

p.lead-text { margin-top: 2rem; max-width: 32rem; font-size: 1rem; line-height: 1.7; color: var(--muted); }

.image-frame { position: relative; }
.image-frame .bg-blob { position: absolute; inset: -1rem; z-index: -1; border-radius: 2rem; background: var(--secondary); }
.image-frame img { width: 100%; border-radius: 1.5rem; object-fit: cover; box-shadow: var(--shadow-soft); }

.link-underline {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--salmon);
  padding-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
}
.link-underline svg { color: var(--salmon); transition: transform 0.2s; }
.link-underline:hover svg { transform: translate(2px, -2px); }

/* Segmentos de produtos (home) */
.segments-head {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}
@media (min-width: 1024px) { .segments-head { grid-template-columns: 0.9fr 1fr; } }

.segments-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--border);
}
@media (min-width: 640px)  { .segments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .segments-grid { grid-template-columns: repeat(4, 1fr); } }

.segment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: background 0.4s;
}
.segment-card:hover { background: var(--white); }
.segment-card .thumb { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.segment-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s; }
.segment-card:hover .thumb img { transform: scale(1.06); }
.segment-card .thumb .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,28,64,0.7), transparent 60%); }
.segment-card .thumb .num { position: absolute; top: 1.25rem; left: 1.25rem; font-size: 0.65rem; color: rgba(255,255,255,0.7); }
.segment-card .thumb h3 { position: absolute; bottom: 1.25rem; left: 1.25rem; font-size: 1.5rem; font-weight: 300; color: #fff; }
.segment-card .body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; }
.segment-card .body p { font-size: 0.875rem; line-height: 1.6; color: var(--muted); }
.segment-card .explore { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; color: var(--text); }
.segment-card .explore svg { color: var(--salmon); transition: transform 0.2s; }
.segment-card:hover .explore svg { transform: translateX(4px); }

.center-cta { margin-top: 3.5rem; display: flex; justify-content: center; }

/* Capacidade / cards gradiente */
.cap-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
.cap-card {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem;
  color: #fff;
  transition: box-shadow 0.2s;
}
.cap-card:hover { box-shadow: var(--shadow-soft); }
.cap-card .icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: rgba(255,255,255,0.1);
}
.cap-card h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 300; }
.cap-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.7); }

.stat-big { margin-top: 3rem; }
.stat-big .num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--navy); }
@media (min-width: 768px) { .stat-big .num { font-size: 3.75rem; } }
.stat-big .lbl { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); text-transform: uppercase; }

/* =========================================================
   PILARES / DIFERENCIAIS (grid de cards com ícone)
   ========================================================= */
.pillars-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }

.pillar-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pillar-card:hover { border-color: rgba(241,141,125,0.3); box-shadow: var(--shadow-soft); }
.pillar-card .icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 999px;
  background: rgba(8,49,119,0.05); color: var(--cyan);
  transition: background 0.2s, color 0.2s;
}
.pillar-card:hover .icon { background: var(--navy); color: #fff; }
.pillar-card h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 300; }
.pillar-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

.highlight-row {
  display: flex; gap: 1.25rem;
  border-radius: 0.75rem; border: 1px solid var(--border);
  background: var(--white); padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.highlight-row:hover { border-color: rgba(241,141,125,0.3); box-shadow: var(--shadow-soft); }
.highlight-row .icon {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 999px;
  background: rgba(8,49,119,0.05); color: var(--cyan);
}
.highlight-row h3 { font-size: 1.125rem; font-weight: 300; }
.highlight-row p { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

.logos-row { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 2.5rem; }
.logos-row img { height: 48px; width: auto; object-fit: contain; }

/* =========================================================
   PRODUTOS — filtros + grid
   ========================================================= */
.products-layout { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .products-layout { grid-template-columns: 280px 1fr; gap: 4rem; } }

.filters-aside { display: none; }
@media (min-width: 1024px) { .filters-aside { display: block; } }
.filters-aside .sticky-box { position: sticky; top: 7rem; border-left: 1px solid var(--border); padding-left: 2rem; }

.filter-block + .filter-block { margin-top: 2.5rem; }

.search-box { position: relative; margin-top: 1rem; }
.search-box svg.icon-search { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search-box input {
  width: 100%; border: none; border-bottom: 1px solid var(--border);
  background: transparent; padding: 0.75rem 1.75rem 0.75rem 1.75rem;
  font-size: 0.875rem; color: var(--text); outline: none;
}
.search-box input:focus { border-color: var(--salmon); }
.search-box button.clear { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--muted); }

.cat-list { margin-top: 1rem; display: flex; flex-direction: column; }
.cat-item {
  display: flex; align-items: center; gap: 0.75rem;
  border-bottom: 1px solid rgba(226,231,240,0.7);
  padding: 0.9rem 0; width: 100%; background: none; border-top: none; border-left: none; border-right: none;
  text-align: left; cursor: pointer;
}
.cat-item .box {
  flex-shrink: 0; width: 1rem; height: 1rem; border-radius: 3px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.cat-item.on .box { border-color: var(--salmon); background: var(--salmon); color: #241016; }
.cat-item .label { flex: 1; font-size: 0.875rem; color: var(--muted); }
.cat-item.on .label { color: var(--text); }
.cat-item .count { font-size: 0.68rem; color: rgba(92,106,133,0.6); }

.origin-list { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.origin-chip {
  border-radius: 999px; border: 1px solid var(--border);
  padding: 0.5rem 0.9rem; font-size: 0.66rem; font-weight: 500; text-transform: uppercase;
  color: var(--muted); background: none; cursor: pointer; transition: all 0.15s;
}
.origin-chip.on { border-color: var(--navy); background: var(--navy); color: #fff; }
.origin-chip .n { margin-left: 0.35rem; opacity: 0.5; }

.clear-filters {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem;
  font-size: 0.66rem; font-weight: 600; text-transform: uppercase; color: var(--salmon);
  background: none; border: none; cursor: pointer;
}

.pdf-box { margin-top: 2rem; border-radius: 1.25rem; padding: 1.5rem; color: #fff; }
.pdf-box p.title { margin-top: 0.75rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; }
.pdf-box a { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--salmon); padding-bottom: 0.35rem; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; }

.results-bar { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--border); padding-bottom: 1.25rem; }
.results-bar .count { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--text); }
.results-bar .txt { font-size: 0.875rem; color: var(--muted); }
.filters-toggle { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; border: 1px solid var(--border); padding: 0.65rem 1.25rem; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; background: none; }
@media (min-width: 1024px) { .filters-toggle { display: none; } }

.category-desc { margin-top: 1.5rem; max-width: 42rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

.products-grid { margin-top: 2.5rem; display: grid; gap: 2rem; }
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 1.25rem; border: 1px solid var(--border); background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover { border-color: rgba(8,49,119,0.25); box-shadow: var(--shadow-soft); }
.product-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--secondary); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s; }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .badge {
  position: absolute; top: 1rem; left: 1rem;
  border-radius: 999px; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  padding: 0.4rem 0.75rem; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; color: var(--text);
}
.product-card .body { flex: 1; display: flex; flex-direction: column; padding: 1.5rem; }
.product-card h3 { font-size: 1.125rem; font-weight: 500; line-height: 1.35; }
.product-card .pack { margin-top: 0.5rem; font-size: 0.78rem; line-height: 1.6; color: var(--muted); }
.product-card .foot { margin-top: auto; padding-top: 1.25rem; }
.product-card .origins { display: flex; flex-wrap: wrap; gap: 0.5rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.product-card .origins span { display: inline-flex; align-items: center; gap: 0.3rem; border-radius: 999px; border: 1px solid var(--border); padding: 0.25rem 0.6rem; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; color: var(--navy); }
.product-card .origins span img { width: 12px; height: 12px; border-radius: 50%; object-fit: cover; }
.product-card .quote { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; color: var(--salmon); }
.product-card .quote svg { transition: transform 0.2s; }
.product-card:hover .quote svg { transform: translateX(3px); }

.empty-state { margin-top: 5rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.empty-state h3 { margin-top: 1.5rem; font-size: 1.5rem; font-weight: 300; }
.empty-state p { margin-top: 0.75rem; max-width: 24rem; font-size: 0.875rem; color: var(--muted); }
.empty-state button { margin-top: 2rem; }

.help-banner {
  margin-top: 5rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; justify-content: space-between;
  border-radius: 1.5rem; border: 1px solid var(--border); background: var(--secondary); padding: 2rem;
}
@media (min-width: 640px) { .help-banner { flex-direction: row; align-items: center; } }
.help-banner p.title { margin-top: 0.75rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; }

/* Drawer mobile de filtros */
.drawer-overlay { display: none; position: fixed; inset: 0; z-index: 60; }
.drawer-overlay.open { display: block; }
.drawer-overlay .backdrop { position: absolute; inset: 0; background: rgba(22,33,62,0.4); backdrop-filter: blur(2px); border: none; }
.drawer-panel {
  position: absolute; top: 0; bottom: 0; right: 0; width: 88%; max-width: 380px;
  background: var(--white); box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column;
}
.drawer-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding: 1.25rem 1.5rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 2rem 1.5rem; }
.drawer-foot { border-top: 1px solid var(--border); padding: 1rem 1.5rem; }
.drawer-foot button { width: 100%; border-radius: 999px; background: var(--salmon); color: #241016; padding: 0.9rem; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; border: none; }

/* =========================================================
   CONTATO
   ========================================================= */
.contact-section { position: relative; overflow: hidden; background: var(--secondary); padding: 3rem 1rem; }
@media (min-width: 1024px) { .contact-section { padding: 4rem 2rem; } }
.contact-card { margin: 0 auto; max-width: 1400px; overflow: hidden; border-radius: 2rem; background: var(--white); box-shadow: var(--shadow-soft); display: grid; }
@media (min-width: 1024px) { .contact-card { grid-template-columns: 1fr 1fr; border-radius: 2.5rem; } }

.contact-panel { position: relative; isolation: isolate; overflow: hidden; padding: 3rem 1.5rem; color: #fff; }
@media (min-width: 1024px) { .contact-panel { padding: 5rem 3.5rem; } }
.contact-panel .glow-1, .contact-panel .glow-2 {
  pointer-events: none; position: absolute; z-index: -1; border-radius: 999px; filter: blur(60px);
}
.contact-panel .glow-1 { top: -6rem; left: -4rem; width: 26rem; height: 26rem; opacity: 0.45; background: radial-gradient(circle, var(--cyan), transparent 68%); }
.contact-panel .glow-2 { bottom: -8rem; right: -5rem; width: 24rem; height: 24rem; opacity: 0.35; background: radial-gradient(circle, var(--salmon), transparent 70%); }
.contact-panel h2 { margin-top: 1.5rem; font-size: 2.25rem; line-height: 1.05; font-weight: 300; }
@media (min-width: 768px) { .contact-panel h2 { font-size: 3rem; } }
.contact-panel h2 .accent { display: block; color: var(--salmon); }
.contact-panel p.lead { margin-top: 2rem; max-width: 26rem; font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.7); }

.contact-links { margin-top: 3rem; max-width: 26rem; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-links a { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-links a:last-child { border-bottom: none; }
.contact-links a svg.lead-icon { color: var(--salmon); flex-shrink: 0; }
.contact-links .info-row { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-links .info-row:last-child { border-bottom: none; }
.contact-links .info-row svg.lead-icon { color: var(--salmon); flex-shrink: 0; }
.contact-links .info-row span { font-size: 0.875rem; color: rgba(255,255,255,0.85); }
.contact-links a span { flex: 1; font-size: 0.875rem; word-break: break-all; }
.contact-links a svg.arrow { color: rgba(255,255,255,0.4); flex-shrink: 0; transition: transform 0.2s, color 0.2s; }
.contact-links a:hover svg.arrow { transform: translateX(3px); color: var(--salmon); }

.contact-form-wrap { padding: 3rem 1.5rem; }
@media (min-width: 1024px) { .contact-form-wrap { padding: 5rem 3.5rem; } }
.contact-form-wrap p.intro { max-width: 26rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }
.form-fields { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.form-field label { display: block; font-family: var(--font-sans); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; color: var(--muted); }
.form-field:focus-within label { color: var(--salmon); }
.form-field input, .form-field textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--border); background: transparent;
  padding: 0.75rem 0; font-size: 1rem; color: var(--text); outline: none; resize: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--salmon); }
.contact-form-wrap button[type="submit"] { margin-top: 3rem; }
.form-msg { margin-top: 1.25rem; font-size: 0.85rem; border-radius: 0.6rem; padding: 0.75rem 1rem; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: #e6f7ec; color: #1a7a3d; }
.form-msg.error { background: #fbe8e6; color: #b13c2c; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { position: relative; overflow: hidden; background: var(--ink); color: var(--ink-fg); }
.footer-grid { margin: 0 auto; max-width: 1400px; padding: 5rem 1.5rem; display: grid; gap: 4rem; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; padding: 5rem 3rem; } }
.footer-grid img.logo { height: 120px; width: auto; }
.footer-grid p.tag { margin-top: 1.5rem; max-width: 22rem; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.4; font-weight: 300; color: rgba(255,255,255,0.8); }
.footer-grid p.tag .accent { display: block; color: var(--salmon); }
.footer-grid p.desc { margin-top: 1.5rem; max-width: 22rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.55); }
.footer-col nav { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-col nav a { color: rgba(255,255,255,0.7); transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col nav a:hover { color: #fff; }
.footer-col nav a .ico { flex-shrink: 0; color: var(--salmon); }
.footer-social { margin-top: 1.5rem; display: flex; gap: 0.6rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--salmon); color: var(--salmon); }
.footer-col p.addr { color: rgba(255,255,255,0.45); font-size: 0.875rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom .row { margin: 0 auto; max-width: 1400px; display: flex; flex-direction: column; gap: 0.5rem; padding: 1.5rem; font-size: 0.7rem; color: rgba(255,255,255,0.4); }
@media (min-width: 768px) { .footer-bottom .row { flex-direction: row; align-items: center; justify-content: space-between; padding: 1.5rem 3rem; } }
.footer-bottom .row p.upper { text-transform: uppercase; }
.footer-bottom .row p.upper a { color: rgba(255,255,255,0.6); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom .row p.upper a:hover { color: #fff; }

/* =========================================================
   Utilitários
   ========================================================= */
.icon { display: block; }
.text-center { text-align: center; }
.mt-lg { margin-top: 4rem; }
.italic { font-style: italic; }
