/* ── Design Tokens ─────────────────────────────────────────────────────────── */

:root {
  /* Colors */
  --color-navy: #0B1220;
  --color-blue: #174EA6;
  --color-blue-dark: #123F85;
  --color-cyan: #2A9FB0;
  --color-bg: #FAFAF7;
  --color-surface: #FFFFFF;
  --color-surface-low: #F5F2EB;
  --color-surface-mid: #EDE8DF;
  --color-text: #111827;
  --color-text-muted: #5B6472;
  --color-border: #E0D9CE;
  --color-border-strong: #C8BFB0;
  --color-error: #BA1A1A;
  --color-error-bg: #FFDAD6;
  --color-success-bg: #D4EDDA;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing (8px rhythm) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 80px;

  /* Layout */
  --container-max: 1440px;
  --gutter: 24px;
  --radius-sm: 2px;
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 2px 8px rgba(15, 23, 42, 0.06);

  /* Grid dot pattern */
  --grid-dot: radial-gradient(circle, #C6C6CD 0.7px, transparent 0.7px);
  --grid-dot-size: 16px;
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p + p {
  margin-top: var(--sp-4);
}

ul, ol {
  padding-left: var(--sp-5);
}

/* ── Focus ─────────────────────────────────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

/* ── Layout ────────────────────────────────────────────────────────────────── */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.section--alt {
  background-color: var(--color-surface);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.stack--lg {
  gap: var(--sp-7);
}

.grid {
  display: grid;
  gap: var(--sp-5);
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  h1 { font-size: 3rem; }
}

/* ── Header ────────────────────────────────────────────────────────────────── */

.site-header {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.site-header__logo svg {
  height: 32px;
  width: auto;
}

/* ── Navigation ────────────────────────────────────────────────────────────── */

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--sp-5);
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--color-navy);
  text-decoration: none;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-left: var(--sp-5);
  padding-left: var(--sp-5);
  border-left: 1px solid var(--color-border);
}

.nav-lang a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.nav-lang a[aria-current="true"] {
  color: var(--color-blue);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none !important;
  }
}

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--color-text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--sp-4) var(--gutter) var(--sp-5);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  display: block;
  padding: var(--sp-2) 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  color: var(--color-navy);
}

.nav-mobile__lang {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--color-border);
}

.nav-mobile__lang a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: none;
  padding: var(--sp-1) 0;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none !important;
  }
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-blue);
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: var(--color-blue-dark);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn--secondary:hover {
  background-color: rgba(23, 78, 166, 0.06);
}

.btn--cyan {
  background: #B87524;
  color: #FFFFFF;
}

.btn--cyan:hover {
  background: #9E621D;
  opacity: 1;
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ── Cards ─────────────────────────────────────────────────────────────────── */

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: box-shadow 0.15s;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.card__icon--blue {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-blue);
}

.card__icon--cyan {
  background: rgba(0, 218, 243, 0.1);
  color: var(--color-cyan);
}

.card__icon--navy {
  background: rgba(15, 23, 42, 0.06);
  color: var(--color-navy);
}

.card__tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-2);
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--sp-2);
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */

.hero {
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-8);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grid-dot);
  background-size: var(--grid-dot-size) var(--grid-dot-size);
  opacity: 0.3;
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 720px;
}

.hero h1 {
  margin-bottom: var(--sp-4);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

/* ── Bento grid ────────────────────────────────────────────────────────────── */

.bento {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}

.bento__item--wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .bento__item--wide {
    grid-column: span 2;
  }
}

/* ── Step list (method section) ────────────────────────────────────────────── */

.step-list {
  list-style: none;
  counter-reset: step;
}

.step-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.step-list li:last-child {
  border-bottom: none;
}

.step-list li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-blue);
  background: rgba(37, 99, 235, 0.06);
  border-radius: var(--radius);
}

.step-list li strong {
  display: block;
  margin-bottom: var(--sp-1);
}

/* ── CTA band ──────────────────────────────────────────────────────────────── */

.cta-band {
  background: var(--color-navy);
  color: #FFFFFF;
  text-align: center;
  padding: var(--sp-8) var(--gutter);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grid-dot);
  background-size: var(--grid-dot-size) var(--grid-dot-size);
  opacity: 0.08;
  pointer-events: none;
}

.cta-band h2 {
  color: #FFFFFF;
  margin-bottom: var(--sp-4);
  position: relative;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto var(--sp-5);
  position: relative;
}

.cta-band .btn {
  position: relative;
}

/* ── Data pipe visual ──────────────────────────────────────────────────────── */

.data-pipe {
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
  border-radius: 1px;
  margin: var(--sp-5) 0;
}

/* ── Social Links ──────────────────────────────────────────────────────────── */

.site-footer__social {
  display: flex;
  gap: var(--sp-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-cyan);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Utilities ─────────────────────────────────────────────────────────────── */

.rounded { border-radius: var(--radius-lg); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mb-8 { margin-bottom: var(--sp-8); }

/* ── WhatsApp Floating Button ──────────────────────────────────────────────── */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--sp-7) 0 var(--sp-5);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
  color: #FFFFFF;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: var(--sp-3);
  max-width: 320px;
}

.site-footer h4 {
  color: #FFFFFF;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer li + li {
  margin-top: var(--sp-2);
}

.site-footer li a {
  font-size: 0.875rem;
}

.site-footer__bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* ── Contact form ──────────────────────────────────────────────────────────── */

.form-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-1);
}

.form-input,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: var(--sp-3);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color 0.15s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

form[action="/api/contact"] {
  position: relative;
}

/* ── Contact result ────────────────────────────────────────────────────────── */

.contact-success {
  background: var(--color-success-bg);
  border: 1px solid #A3D9A5;
  border-radius: var(--radius);
  padding: var(--sp-4);
}

.contact-success p {
  color: #155724;
  margin: 0;
}

.contact-success p + p {
  margin-top: var(--sp-2);
}

.contact-error {
  background: var(--color-error-bg);
  border: 1px solid #F5C6CB;
  border-radius: var(--radius);
  padding: var(--sp-4);
}

.contact-error p {
  color: var(--color-error);
  margin: 0;
}

.contact-error ul {
  margin-top: var(--sp-2);
  padding-left: var(--sp-5);
  color: var(--color-error);
}

/* ── htmx indicator ────────────────────────────────────────────────────────── */

.htmx-indicator {
  display: none;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  display: inline-block;
}

/* ── Section label ─────────────────────────────────────────────────────────── */

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  margin-bottom: var(--sp-3);
}

/* ── Service page hero ─────────────────────────────────────────────────────── */

.page-hero {
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  margin-bottom: var(--sp-3);
}

.page-hero h1 {
  font-size: 2.25rem;
  margin-bottom: var(--sp-4);
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 2.75rem;
  }
}

.page-hero__desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.6;
}

/* ── About timeline ────────────────────────────────────────────────────────── */

.timeline {
  list-style: none;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-blue), var(--color-cyan));
}

.timeline li {
  padding-left: 48px;
  padding-bottom: var(--sp-6);
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--color-surface);
  border: 2px solid var(--color-blue);
  border-radius: 50%;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline__year {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: var(--sp-1);
}

.timeline__text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ── Pillar grid ───────────────────────────────────────────────────────────── */

.pillar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
}

.pillar-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--sp-2);
}

.pillar-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ── Example list ──────────────────────────────────────────────────────────── */

.example-list {
  list-style: none;
  padding: 0;
}

.example-list li {
  padding: var(--sp-2) 0;
  padding-left: var(--sp-5);
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.example-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: var(--color-cyan);
}

/* ── Utility ───────────────────────────────────────────────────────────────── */

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}


/* ── Home PT-BR page hook (semantic only) ───────────────────────────────────── */

.home-pt { }

/* ── Nav dropdown ──────────────────────────────────────────────────────────── */

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
}

.nav-dropdown[open] summary::after {
  border-top-color: transparent;
  border-bottom: 5px solid currentColor;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: var(--sp-1) 0;
  z-index: 100;
}

.nav-dropdown__menu a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a[aria-current="page"] {
  background-color: var(--color-surface-low);
  color: var(--color-text);
}

/* Active Soluções group when a service page is current */
.nav-dropdown[data-current="true"] summary {
  color: var(--color-blue);
}
.nav-dropdown[data-current="true"] summary::after {
  border-top-color: var(--color-blue);
}
.nav-dropdown[data-current="true"][open] summary::after {
  border-bottom-color: var(--color-blue);
}

/* Mobile dropdown: expand inline */
@media (max-width: 767px) {
  .nav-dropdown__menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    padding: 0;
  }

  .nav-dropdown__menu a {
    padding-left: var(--sp-6);
    font-weight: 600;
  }

  .nav-mobile .nav-dropdown summary {
    padding: var(--sp-3) var(--sp-4);
    border-bottom: 1px solid var(--color-border);
  }
}

/* ── Trust list ────────────────────────────────────────────────────────────── */

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.trust-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
  color: var(--color-text);
}

.trust-list li:last-child {
  border-bottom: none;
}

.trust-list li::after {
  content: "✓";
  color: var(--color-blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-left: var(--sp-3);
}