/* =============================================================
   CARGO PET — Design System v1
   Maré Inside · Abril 2026
   ============================================================= */

/* ─── 0. SELF-HOSTED FONTS ─────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter-800.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Cargo Pet — Cores primárias */
  --clr-blue:        #005588;
  --clr-blue-dark:   #003d66;
  --clr-blue-pale:   rgba(0, 85, 136, 0.08);
  --clr-green:       #62d438;
  --clr-green-dark:  #4dbc28;
  --clr-green-pale:  rgba(98, 212, 56, 0.12);

  /* Cargo Pet — Cores secundárias */
  --clr-yellow:      #f2c406;
  --clr-dark:        #232323;
  --clr-brand-gray:  #d6d6d6;

  /* Neutros */
  --clr-white:    #FFFFFF;
  --clr-surface:  #F3F5F8; /* Branco acinzentado (~4.5% cinza) */
  --clr-gray-100: #EEF2F7;
  --clr-gray-200: #DDE3ED;
  --clr-gray-300: #C8D3E0;
  --clr-gray-400: #94A3B8;
  --clr-gray-500: #64748B;
  --clr-gray-600: #475569;
  --clr-gray-700: #334155;
  --clr-gray-900: #0F172A;

  /* Legado — mantido para não quebrar nada */
  --clr-navy:        #0C1D33;
  --clr-navy-mid:    #14284B;
  --clr-navy-light:  #1C3A6A;
  --clr-orange:      #E8611A;
  --clr-orange-dark: #C95410;
  --clr-orange-pale: rgba(232, 97, 26, 0.12);

  /* Semântico */
  --clr-text:       var(--clr-dark);
  --clr-text-muted: var(--clr-gray-500);
  --clr-border:     var(--clr-gray-200);
  --clr-bg:         var(--clr-white);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Font Weights */
  --fw-normal:    400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  /* Line Heights */
  --lh-tight:  1.15;
  --lh-snug:   1.3;
  --lh-normal: 1.5;
  --lh-relaxed:1.65;

  /* Spacing (4px grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Border Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md:  0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
  --shadow-lg:  0 10px 20px -4px rgb(0 0 0 / 0.1), 0 4px 8px -4px rgb(0 0 0 / 0.06);
  --shadow-xl:  0 24px 40px -8px rgb(0 0 0 / 0.15);

  /* Transitions */
  --ease:      0.2s ease;
  --ease-slow: 0.35s ease;

  /* Layout */
  --container:    1200px;
  --container-sm: 840px;
  --container-xs: 600px;
  --header-h:     72px;
  --section-py:   var(--sp-24);
}

/* ─── 1.1 ANIMATIONS ─────────────────────────────────────── */
[data-fade] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 2. RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 { line-height: var(--lh-tight); font-weight: var(--fw-bold); }

/* ─── 3. BASE ───────────────────────────────────────────────── */
::selection { background: var(--clr-green); color: var(--clr-dark); }

:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ─── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-8);
}
.container--sm  { max-width: var(--container-sm); }
.container--xs  { max-width: var(--container-xs); }

.section {
  padding-block: var(--section-py);
}
.section--dark {
  background: var(--clr-dark);
  color: var(--clr-white);
}
.section--mid {
  background: var(--clr-dark);
  color: var(--clr-white);
}
.section--surface {
  background: var(--clr-surface);
}
.section--blue {
  background: var(--clr-blue);
  color: var(--clr-white);
}
.section--blue .section-title,
.section--blue .section-subtitle {
  color: var(--clr-white);
}
.section--blue .section-subtitle {
  opacity: 0.9;
}
.section--green {
  background: var(--clr-green);
  color: var(--clr-dark);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

/* ─── 5. TYPOGRAPHY ─────────────────────────────────────────── */
.text-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-blue);
}
.section--dark .text-label  { color: var(--clr-green); }
.section--blue .text-label  { color: rgba(255,255,255,0.9); }
.section--green .text-label { color: var(--clr-blue); }

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-12);
}
.section--dark .section-subtitle,
.section--mid .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* ─── 6. COMPONENTS ─────────────────────────────────────────── */

/* 6.1 Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: normal;
  text-align: center;
  justify-content: center;
}
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--clr-green);
  color: var(--clr-dark);
  border: 2px solid var(--clr-green);
}
.btn-primary:hover {
  background: var(--clr-green-dark);
  border-color: var(--clr-green-dark);
  box-shadow: 0 4px 14px rgb(98 212 56 / 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.1);
}

/* btn-secondary escuro — sobre fundos claros */
.btn-secondary--dark {
  background: transparent;
  color: var(--clr-blue);
  border: 2px solid var(--clr-blue);
}
.btn-secondary--dark:hover {
  background: var(--clr-blue-pale);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-blue);
  border: 2px solid var(--clr-blue);
  padding: calc(var(--sp-3) - 2px) calc(var(--sp-6) - 2px);
}
.btn-ghost:hover {
  background: var(--clr-blue-pale);
}

.btn-ghost--dark {
  background: transparent;
  color: var(--clr-dark);
  border: 2px solid var(--clr-dark);
}
.btn-ghost--dark:hover {
  background: var(--clr-dark);
  color: var(--clr-white);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--text-lg);
  border-radius: var(--r-lg);
}

.btn-sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* 6.2 Cards */
.card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-gray-300);
  transform: translateY(-2px);
}

.card--dark {
  background: var(--clr-navy-mid);
  border-color: rgba(255,255,255,0.08);
  color: var(--clr-white);
}
.card--dark:hover {
  border-color: rgba(255,255,255,0.16);
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--clr-blue);
  margin-bottom: var(--sp-5);
  stroke-width: 1.5;
}

.card-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}

.card-text {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}
.card--dark .card-text { color: rgba(255,255,255,0.6); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-blue);
  transition: gap var(--ease);
}
.card-link:hover { gap: var(--sp-3); }
.card-link svg { width: 16px; height: 16px; }

/* 6.3 Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  background: var(--clr-blue-pale);
  color: var(--clr-blue);
  border: 1px solid rgba(0, 85, 136, 0.2);
}

/* 6.4 Image Placeholders */
.img-slot {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--clr-navy-mid);
  border: 1.5px dashed rgba(255,255,255,0.18);
}
.img-slot::before {
  content: '';
  display: block;
  padding-top: 60%;
}
.img-slot__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-6);
  text-align: center;
}
.img-slot__icon {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.3);
  stroke-width: 1.5;
}
.img-slot__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  line-height: var(--lh-relaxed);
  max-width: 260px;
}
.img-slot--square::before  { padding-top: 100%; }
.img-slot--tall::before    { padding-top: 110%; }
.img-slot--wide::before    { padding-top: 45%; }
.img-slot--hero::before    { padding-top: 0; min-height: 100%; }
.img-slot--light {
  background: var(--clr-gray-100);
  border-color: var(--clr-gray-300);
}
.img-slot--light .img-slot__icon { color: var(--clr-gray-400); }
.img-slot--light .img-slot__label { color: var(--clr-gray-500); }

/* 6.5 Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-gray-700);
}
.form-label--light { color: rgba(255,255,255,0.8); }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-gray-200);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  color: var(--clr-text);
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px var(--clr-blue-pale);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--clr-gray-400); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-input--dark,
.form-textarea--dark,
.form-select--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--clr-white);
}
.form-select--dark option {
  background-color: var(--clr-dark);
  color: var(--clr-white);
}
.form-input--dark::placeholder,
.form-textarea--dark::placeholder { color: rgba(255,255,255,0.35); }
.form-input--dark:focus,
.form-textarea--dark:focus {
  border-color: var(--clr-green);
  background: rgba(255,255,255,0.09);
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--clr-gray-500);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.form-hint svg { width: 14px; height: 14px; flex-shrink: 0; }

/* 6.6 Modern Accordion (UI/UX Refined) */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.accordion-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
  border-color: var(--clr-blue-pale);
  box-shadow: 0 4px 12px rgba(12, 29, 51, 0.04);
}

.accordion-item.is-active {
  border-color: var(--clr-blue);
  box-shadow: 0 10px 30px rgba(12, 29, 51, 0.08);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.accordion-item.is-active .accordion-trigger {
  color: var(--clr-blue);
}

.accordion-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: var(--clr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-item.is-active .accordion-icon-wrap {
  background: var(--clr-blue);
  color: var(--clr-white);
  transform: rotate(180deg);
}

.accordion-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-inner {
  padding: 0 var(--sp-6) var(--sp-6) var(--sp-6);
  color: var(--clr-text-muted);
  font-size: var(--text-base);
  line-height: 1.6;
}

.faq-group-title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-blue);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-10);
  display: block;
}
.faq-group:first-child .faq-group-title { margin-top: 0; }
.accordion-trigger[aria-expanded="true"] { color: var(--clr-blue); }

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease-slow);
}
.accordion-body.is-open { grid-template-rows: 1fr; }
.accordion-body-inner {
  overflow: hidden;
  padding-bottom: var(--sp-5);
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

/* Dark accordion */
.accordion--dark .accordion-item { border-color: rgba(255,255,255,0.1); }
.accordion--dark .accordion-trigger { color: rgba(255,255,255,0.9); }
.accordion--dark .accordion-trigger:hover { color: var(--clr-green); }
.accordion--dark .accordion-body-inner { color: rgba(255,255,255,0.6); }

/* ─── 7. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}
.site-header--transparent { background: transparent; }

/* Transparent state — texto branco sobre hero escura */
.site-header--transparent .nav-link {
  color: rgba(255, 255, 255, 0.85);
}
.site-header--transparent .nav-link:hover,
.site-header--transparent .nav-link.active {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.1);
}
.site-header--transparent .logo-placeholder {
  color: var(--clr-white);
}
.site-header--transparent .logo-placeholder span {
  color: var(--clr-green);
}
.site-header--transparent .nav-toggle {
  color: var(--clr-white);
}
.site-header--transparent .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.site-header--transparent .btn-whatsapp {
  color: rgba(255, 255, 255, 0.8);
}
.site-header--transparent .btn-whatsapp:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.1);
}

.site-header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo svg, .logo img {
  height: 36px;
  width: auto;
}
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-blue);
  font-weight: var(--fw-extrabold);
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
}
.logo-placeholder span { color: var(--clr-green); }

.nav-main {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-right: auto;
  margin-left: var(--sp-10);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-dark);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: color var(--ease), background var(--ease);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--clr-blue);
  background: var(--clr-blue-pale);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--ease), transform var(--ease);
  box-shadow: var(--shadow-xl);
}
/* Invisible hover bridge fills the 6px gap — keeps hover active while moving mouse into menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -4px;
  right: -4px;
  height: 6px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--clr-dark);
  border-radius: var(--r-md);
  transition: color var(--ease), background var(--ease);
}
.nav-dropdown-link:hover {
  color: var(--clr-blue);
  background: var(--clr-blue-pale);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
/* Header CTA: more compact, sharp corners — differentiates from section CTAs */
.site-header .btn-primary {
  border-radius: var(--r-sm);
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-dark);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: color var(--ease), background var(--ease);
}
.btn-whatsapp:hover {
  color: var(--clr-blue);
  background: var(--clr-blue-pale);
}
.btn-whatsapp svg { width: 18px; height: 18px; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  color: var(--clr-dark);
}
.nav-toggle:hover { background: var(--clr-gray-100); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--clr-white);
  display: flex;
  flex-direction: column;
  padding: var(--header-h) var(--sp-8) var(--sp-8);
  transform: translateX(100%);
  transition: transform var(--ease-slow);
  overflow-y: auto;
}
.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  flex: 1;
}
.nav-mobile-link {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--clr-gray-200);
  transition: color var(--ease);
}
.nav-mobile-link:hover { color: var(--clr-blue); }

.nav-mobile-sub {
  padding-left: var(--sp-4);
  margin-top: var(--sp-2);
}
.nav-mobile-sublabel {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-gray-600);
  margin-bottom: var(--sp-2);
}
.nav-mobile-sublink {
  display: block;
  font-size: var(--text-lg);
  color: var(--clr-gray-600);
  padding: var(--sp-2) 0;
  transition: color var(--ease);
}
.nav-mobile-sublink:hover { color: var(--clr-blue); }

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

/* WhatsApp floating button */
.btn-float-whatsapp {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: #25D366;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgb(37 211 102 / 0.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgb(37 211 102 / 0.5);
}
.btn-float-whatsapp svg { width: 26px; height: 26px; }

/* ─── 8. FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-gray-900);
  color: rgba(255,255,255,0.65);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-placeholder {
  margin-bottom: var(--sp-4);
  font-size: var(--text-lg);
}
.footer-tagline {
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
  max-width: 280px;
}
.footer-cnpj {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-5);
}
.footer-socials {
  display: flex;
  gap: var(--sp-3);
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.footer-social-btn:hover {
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}
.footer-social-btn svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
}
.footer-link:hover { color: var(--clr-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}
.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── 9. SECTIONS ───────────────────────────────────────────── */

/* 9.1 Hero — Imagem de fundo completa, texto à esquerda */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

/* Camada de fundo: imagem cobre tudo */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Placeholder enquanto não há foto real */
.hero__img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1f38 0%, #0d2d50 50%, #081828 100%);
}
.hero__img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 50%, rgba(98,212,56,0.05) 0%, transparent 55%),
    repeating-linear-gradient(
      -45deg, transparent, transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
}
/* Overlay: escuro à esquerda (para legibilidade), transparente à direita (foto aparece) */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 20, 38, 0.95) 0%,
    rgba(8, 20, 38, 0.85) 35%,
    rgba(8, 20, 38, 0.45) 60%,
    rgba(8, 20, 38, 0.05) 100%
  );
}

/* Container principal — ocupa largura total */
.hero__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-8);
  padding-block: var(--sp-20);
}

/* Bloco de conteúdo — ancorado à esquerda, máximo ~50% da largura */
.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: var(--sp-5);
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--clr-green);
  flex-shrink: 0;
}
.hero__title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
}
.hero__title em {
  font-style: normal;
  color: var(--clr-green);
}
.hero__desc--short { display: none; }

.hero__desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-10);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.65);
}
.hero__trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--clr-green);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero__scroll svg { width: 18px; height: 18px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* 9.2 Stats Bar */
.stats-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-gray-200);
  border-bottom: 1px solid var(--clr-gray-200);
  padding-block: var(--sp-12);
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  position: relative;
}
.stat-item {
  text-align: center;
  padding: var(--sp-6);
  border-right: 1px solid var(--clr-gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  font-weight: var(--fw-extrabold);
  color: var(--clr-blue);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-snug);
  max-width: 160px;
  margin-inline: auto;
}

/* 9.3 Section Header Shared */
.section-header { margin-bottom: var(--sp-12); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }

/* 9.4 Features / Pillars */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.features-grid--5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--ease), transform var(--ease);
  box-sizing: border-box;
  min-width: 0;
  word-break: break-word;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feature-card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
  color: var(--clr-white);
}
.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--clr-blue);
  margin-bottom: var(--sp-4);
  stroke-width: 1.5;
}
.feature-title {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--clr-text);
  min-width: 0;
  word-break: break-word;
}
.feature-card--dark .feature-title { color: var(--clr-white); }
.feature-text {
  font-size: clamp(0.78rem, 1.4vw, 0.875rem);
  line-height: 1.6;
  color: var(--clr-text-muted);
  min-width: 0;
  word-break: break-word;
}
.feature-card--dark .feature-text { color: rgba(255,255,255,0.55); }

@media (max-width: 1024px) {
  .features-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .features-grid--5 {
    grid-template-columns: 1fr;
  }
}

/* 9.5 Solutions Section */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
.solution-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--ease), transform var(--ease);
}
.solution-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.solution-card__img { flex-shrink: 0; }
.solution-card__img .img-slot { border-radius: 0; }
.solution-card__img .img-slot::before { padding-top: 52%; }
.solution-card__body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.solution-card__icon {
  width: 36px;
  height: 36px;
  color: var(--clr-blue);
  stroke-width: 1.5;
  margin-bottom: var(--sp-4);
}
.solution-card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
  color: var(--clr-dark);
  line-height: var(--lh-snug);
}
.solution-card__text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  flex: 1;
}
/* solution-card__footer removed as cards are now fully clickable */

/* 9.6 How It Works */
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + var(--sp-6));
  right: calc(10% + var(--sp-6));
  height: 1px;
  background: linear-gradient(to right, var(--clr-blue), var(--clr-green));
  opacity: 0.3;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-inline: var(--sp-6);
  padding-top: var(--sp-2);
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background: var(--clr-blue);
  color: var(--clr-white);
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}
.step-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--lh-relaxed);
}

/* 9.7 Governance / Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.trust-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.trust-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-blue);
}
.trust-logo-slot {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.trust-logo-text {
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-blue);
  letter-spacing: 0.04em;
}
.trust-card-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
}
.trust-card-text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}
.downloads-box {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}
.downloads-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.download-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
}
.download-item svg { width: 18px; height: 18px; color: var(--clr-green); flex-shrink: 0; }

/* 9.8 Clients Section */
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-12);
}
.logo-slot {
  flex: 1;
  min-width: 120px;
  max-width: 160px;
  height: 64px;
  background: var(--clr-gray-100);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color var(--ease), background var(--ease);
}
.logo-slot:hover {
  background: var(--clr-white);
  border-color: var(--clr-gray-300);
}

.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-8);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-blue);
  opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-quote {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  color: var(--clr-gray-700);
  margin-bottom: var(--sp-6);
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--clr-gray-100);
  border: 2px solid var(--clr-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: var(--clr-gray-500);
  font-size: var(--text-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-name { font-weight: var(--fw-semibold); font-size: var(--text-base); }
.testimonial-role { font-size: var(--text-sm); color: var(--clr-text-muted); }

/* 9.9 Coverage */
.coverage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: stretch; /* Alinha altura do mapa com o texto */
}
.map-placeholder {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 100%; /* Garante altura total */
  min-height: 500px; /* Base vertical mínima */
}
.map-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
.coverage-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
}
.coverage-item svg { width: 14px; height: 14px; color: var(--clr-green); flex-shrink: 0; }

/* 9.10 CTA Final */
.cta-section {
  background: var(--clr-blue);
  padding-block: var(--sp-32);
  position: relative;
  overflow: hidden;
  color: var(--clr-white);
}
.cta-section .section-title,
.cta-section .section-subtitle {
  color: var(--clr-white);
}
.cta-section .section-subtitle {
  opacity: 0.9;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(98,212,56,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.cta-content {
  max-width: 580px;
}
.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.cta-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.cta-checklist-item svg {
  color: var(--clr-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  width: 100%;
  max-width: 540px; /* Limite definido */
  justify-self: end;
}
.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.cta-form-grid .form-group--full { grid-column: 1 / -1; }
.cta-form-actions {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.cta-or {
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  position: relative;
}
.cta-or::before,
.cta-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.cta-or::before { left: 0; }
.cta-or::after { right: 0; }

/* ─── 10. PAGE-SPECIFIC ──────────────────────────────────────── */

/* Page Hero (inner pages) */
.page-hero {
  background: var(--clr-blue);
  padding-top: calc(var(--header-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
  position: relative;
  overflow: hidden;
  color: var(--clr-white);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 29, 51, 0.85); /* Tom azul escuro (var(--clr-blue) com opacidade) */
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,0.025) 40px,
    rgba(255,255,255,0.025) 41px
  );
  z-index: 1;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(98,212,56,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--clr-white); }
.breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; }
.page-hero-title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  line-height: var(--lh-tight);
  max-width: 700px;
  margin-bottom: var(--sp-5);
}
.page-hero-desc {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: var(--lh-relaxed);
}

/* About Page */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-blue), var(--clr-green));
}
.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
  position: relative;
}
.timeline-year {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-blue);
  min-width: 60px;
  padding-top: var(--sp-1);
  text-align: right;
}
.timeline-dot {
  position: absolute;
  left: -5px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: var(--r-full);
  background: var(--clr-blue);
  border: 2px solid var(--clr-white);
}
.timeline-body { padding-left: var(--sp-6); }
.timeline-event-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
}
.timeline-event-text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}
.team-card {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-8);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  background: var(--clr-white);
}
.team-photo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.team-photo .img-slot { border-radius: var(--r-lg); }
.team-photo .img-slot::before { padding-top: 100%; }
.team-name { font-size: var(--text-xl); font-weight: var(--fw-bold); margin-bottom: var(--sp-1); }
.team-role { font-size: var(--text-sm); color: var(--clr-blue); font-weight: var(--fw-medium); margin-bottom: var(--sp-3); }
.team-bio { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: var(--lh-relaxed); }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.mvv-card {
  padding: var(--sp-8);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
}
.mvv-icon { width: 36px; height: 36px; color: var(--clr-blue); stroke-width: 1.5; margin-bottom: var(--sp-4); }
.mvv-title { font-size: var(--text-xl); font-weight: var(--fw-bold); margin-bottom: var(--sp-4); }
.mvv-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.mvv-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}
.mvv-list-item svg { width: 14px; height: 14px; color: var(--clr-green); flex-shrink: 0; margin-top: 3px; }

/* Transparency Page */
.compliance-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--r-md);
  background: var(--clr-white);
}
.compliance-item svg { width: 20px; height: 20px; color: var(--clr-green); flex-shrink: 0; }
.compliance-item-title { font-size: var(--text-base); font-weight: var(--fw-semibold); color: var(--clr-dark); margin-bottom: var(--sp-1); }
.compliance-item-text { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: var(--lh-relaxed); }

/* Contact Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.contact-info-item {
  display: flex;
  gap: var(--sp-4);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--clr-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--clr-blue); stroke-width: 1.5; }
.contact-info-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; font-weight: var(--fw-semibold); color: var(--clr-text-muted); margin-bottom: var(--sp-1); }
.contact-info-value { font-size: var(--text-base); font-weight: var(--fw-medium); }

.form-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-xl);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.form-grid .form-group--full { grid-column: 1 / -1; }

/* FAQ Page */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.faq-categories {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}
.faq-cat-title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-3);
}
.faq-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--clr-gray-600);
  transition: background var(--ease), color var(--ease);
  margin-bottom: var(--sp-1);
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--clr-blue-pale);
  color: var(--clr-blue);
}

/* Solution sub-page */
.solution-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.solution-benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.solution-benefit {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
}
.solution-benefit svg { width: 20px; height: 20px; color: var(--clr-blue); flex-shrink: 0; stroke-width: 1.5; margin-top: 2px; }
.solution-benefit-title { font-weight: var(--fw-semibold); font-size: var(--text-base); margin-bottom: var(--sp-1); }
.solution-benefit-text { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: var(--lh-relaxed); }

/* LGPD pages */
.policy-content {
  max-width: var(--container-sm);
  margin-inline: auto;
  padding-block: var(--sp-20);
}
.policy-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}
.policy-content h3 {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.policy-content p { color: var(--clr-text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--sp-4); }
.policy-content ul { padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.policy-content li { color: var(--clr-text-muted); line-height: var(--lh-relaxed); margin-bottom: var(--sp-2); list-style: disc; }

/* 9.11 Section de clientes */
.section-clients {
  padding-block: var(--sp-12);
  border-top: 1px solid var(--clr-gray-200);
  border-bottom: 1px solid var(--clr-gray-200);
  background: var(--clr-white);
}
.clients-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gray-400);
  margin-bottom: var(--sp-8);
}
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-12);
}
.client-logo {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%) contrast(0.75) brightness(1.1);
  opacity: 0.5;
  transition: filter var(--ease), opacity var(--ease);
}
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ─── 11. UTILITIES ─────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.text-orange { color: var(--clr-orange); }
.text-white  { color: var(--clr-white); }
.text-muted  { color: var(--clr-text-muted); }
.text-center { text-align: center; }
.text-sm     { font-size: var(--text-sm); }
.fw-semibold { font-weight: var(--fw-semibold); }
.fw-bold     { font-weight: var(--fw-bold); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.gap-4 { gap: var(--sp-4); }

.divider {
  height: 1px;
  background: var(--clr-border);
  margin-block: var(--sp-12);
}
.divider--dark { background: rgba(255,255,255,0.08); }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  background: var(--clr-gray-100);
  color: var(--clr-gray-600);
  border: 1px solid var(--clr-gray-200);
}

/* Garante que âncoras não ficam escondidas sob o header fixo */
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ─── 12. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: var(--sp-20); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .footer-brand { grid-column: 1 / -1; }
  .features-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
  .steps-list::before { display: none; }
  .cta-layout { grid-template-columns: 1fr; gap: var(--sp-12); }
  .cta-content { max-width: 600px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-categories { position: static; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
  .faq-cat-title { display: none; }
  .faq-cat-btn { display: inline-flex; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --section-py: var(--sp-16);
  }
  .nav-main { display: none; }
  .nav-toggle { display: flex; }
  .btn-whatsapp span { display: none; }
  .header-actions .btn-primary { display: none; }

  .grid-2,
  .grid-3,
  .grid-4,
  .features-grid,
  .features-grid--5,
  .solutions-grid,
  .trust-grid,
  .mvv-grid,
  .coverage-split,
  .cta-layout,
  .contact-layout,
  .solution-page-layout { grid-template-columns: 1fr; }
  .coverage-split { gap: var(--sp-8); }

  .cta-section { padding-block: var(--sp-16); }
  .cta-layout { gap: var(--sp-10); text-align: center; }
  .cta-content { max-width: 100%; }
  .cta-content .section-subtitle { margin-bottom: var(--sp-10); margin-inline: auto; }
  .cta-checklist { align-items: center; }
  .cta-checklist-item { text-align: left; }
  .cta-form { max-width: 100%; padding: var(--sp-6) var(--sp-5); }

  .section-header { margin-bottom: var(--sp-8); }
  .steps-list { grid-template-columns: 1fr; }

  .hero__content { max-width: 100%; }
  .hero__img { object-position: right center; }
  .hero__title { font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl)); }
  .hero__wrap { padding-block: var(--sp-12) var(--sp-10); }
  .hero__eyebrow { font-size: 0.6rem; letter-spacing: 0.05em; }
  .hero__desc--long { display: none; }
  .hero__desc--short { display: block; }
  .page-hero-title { font-size: clamp(var(--text-3xl), 7vw, var(--text-4xl)); }
  .section-title { font-size: clamp(var(--text-2xl), 6vw, var(--text-4xl)); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { flex-wrap: wrap; gap: var(--sp-4); }

  .cta-form-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .logos-grid { gap: var(--sp-3); }
  .logo-slot { min-width: 100px; }

  .team-card { flex-direction: column; }
  .team-photo { width: 80px; height: 80px; }
  .btn-float-whatsapp { bottom: var(--sp-4); right: var(--sp-4); }

  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--sp-5); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item:last-child { border-bottom: none; }
}


