/* ============================================================
   CSS Variables — translated from index.css + tailwind.config.ts
   ============================================================ */
:root {
  --background:        hsl(0 0% 12.5%);
  --foreground:        hsl(0 0% 100%);
  --card:              hsl(0 0% 6.7%);
  --card-foreground:   hsl(0 0% 100%);
  --primary:           hsl(137 100% 50%);
  --primary-foreground:hsl(0 0% 6.7%);
  --secondary:         hsl(0 0% 12.5%);
  --secondary-foreground: hsl(0 0% 100%);
  --muted:             hsl(0 0% 12.5%);
  --muted-foreground:  hsl(0 0% 56.5%);
  --accent:            hsl(137 100% 50%);
  --accent-foreground: hsl(0 0% 6.7%);
  --destructive:       hsl(340 64% 53%);
  --destructive-foreground: hsl(0 0% 100%);
  --border:            hsla(0 0% 100% / 0.1);
  --input:             hsla(0 0% 100% / 0.12);
  --ring:              hsl(137 100% 50%);
  --surface:           hsl(0 0% 6.7%);
  --surface-light:     hsl(0 0% 12.5%);
  --radius:            0.5rem;

  /* Semantic shortcuts */
  --color-primary:     #00FF40;
  --color-bg:          #202020;
  --color-card:        #111111;
  --color-surface:     #111111;
  --color-fg:          #ffffff;
  --color-muted:       #909090;
  --color-border:      rgba(255,255,255,0.1);

  /* Gradients */
  --gradient-dark:     linear-gradient(to bottom, #0a0a0a, #111111);
  --gradient-primary:  linear-gradient(135deg, #00FF40 0%, #00cc33 100%);
  --gradient-surface:  linear-gradient(to bottom, #111111, #1a1a1a);
  --shadow-brand:      0 4px 24px rgba(0, 255, 64, 0.15);

  /* Container */
  --container-max: 1200px;
  --container-px:  1rem;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   Container
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ============================================================
   Typography
   ============================================================ */
.text-xs   { font-size: 0.75rem;   line-height: 1rem; }
.text-sm   { font-size: 0.875rem;  line-height: 1.25rem; }
.text-base { font-size: 1rem;      line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem;  line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;   line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;    line-height: 2rem; }
.text-3xl  { font-size: 1.875rem;  line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;   line-height: 2.5rem; }
.text-5xl  { font-size: 3rem;      line-height: 1; }
.text-6xl  { font-size: 3.75rem;   line-height: 1; }
.text-7xl  { font-size: 4.5rem;    line-height: 1; }

.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-extrabold{ font-weight: 800; }

.uppercase     { text-transform: uppercase; }
.italic        { font-style: italic; }
.leading-none  { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-2px  { letter-spacing: 2px; }
.text-center   { text-align: center; }
.text-left     { text-align: left; }

/* ============================================================
   Colors
   ============================================================ */
.bg-background { background-color: var(--background); }
.bg-card       { background-color: var(--card); }
.bg-surface    { background-color: var(--surface); }
.bg-primary    { background-color: var(--primary); }
.bg-transparent{ background-color: transparent; }

.bg-gradient-dark    { background: var(--gradient-dark); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-surface { background: var(--gradient-surface); }

.text-foreground       { color: var(--foreground); }
.text-primary          { color: var(--primary); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-destructive      { color: var(--destructive); }
.text-white            { color: #ffffff; }

.border-border   { border-color: var(--border); }
.border-primary  { border-color: var(--primary); }

/* Semi-transparent backgrounds used in case pages */
.bg-primary-10  { background-color: rgba(0,255,64,0.1); }
.bg-white-5     { background-color: rgba(255,255,255,0.05); }
.bg-muted-20    { background-color: rgba(32,32,32,0.8); }

/* ============================================================
   Layout — Flex
   ============================================================ */
.flex           { display: flex; }
.inline-flex    { display: inline-flex; }
.flex-col       { flex-direction: column; }
.flex-wrap      { flex-wrap: wrap; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.flex-shrink-0  { flex-shrink: 0; }
.flex-1         { flex: 1 1 0%; }
.flex-grow      { flex-grow: 1; }
.min-w-0        { min-width: 0; }

/* ============================================================
   Layout — Grid
   ============================================================ */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

/* ============================================================
   Sizing
   ============================================================ */
.w-auto    { width: auto; }
.w-full    { width: 100%; }
.w-1-2     { width: 50%; }
.h-auto    { height: auto; }
.h-full    { height: 100%; }
.min-h-screen { min-height: 100vh; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* Icon sizes */
.icon-4  { width: 1rem;    height: 1rem; }
.icon-5  { width: 1.25rem; height: 1.25rem; }
.icon-6  { width: 1.5rem;  height: 1.5rem; }
.icon-8  { width: 2rem;    height: 2rem; }

/* ============================================================
   Spacing — Margin / Padding
   ============================================================ */
.p-0  { padding: 0; }
.p-4  { padding: 1rem; }
.p-5  { padding: 1.25rem; }
.p-6  { padding: 1.5rem; }
.p-8  { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-4 { padding-inline: 1rem; }
.px-6 { padding-inline: 1.5rem; }
.px-8 { padding-inline: 2rem; }
.py-4 { padding-block: 1rem; }
.py-8 { padding-block: 2rem; }
.py-12{ padding-block: 3rem; }
.py-16{ padding-block: 4rem; }
.py-20{ padding-block: 5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }

.m-0   { margin: 0; }
.mx-auto{ margin-inline: auto; }
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 0.25rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-1  { margin-bottom: 0.25rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-2  { margin-right: 0.5rem; }
.mr-3  { margin-right: 0.75rem; }
.ml-2  { margin-left: 0.5rem; }

/* ============================================================
   Borders & Radius
   ============================================================ */
.border      { border: 1px solid var(--border); }
.border-t    { border-top: 1px solid var(--border); }
.border-b    { border-bottom: 1px solid var(--border); }
.border-l-3  { border-left: 3px solid; }
.border-primary-20 { border-color: rgba(0,255,64,0.2); }
.border-destructive-20 { border-color: rgba(220,38,83,0.2); }
.border-white-08 { border-color: rgba(255,255,255,0.08); }
.border-white-10 { border-color: rgba(255,255,255,0.1); }
.border-white-20 { border-color: rgba(255,255,255,0.2); }
.border-primary-l { border-left-color: var(--primary); }
.border-purple-l  { border-left-color: #6C00FF; }

.rounded    { border-radius: 0.25rem; }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl{ border-radius: 1rem; }
.rounded-3xl{ border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t  { border-radius: var(--radius) var(--radius) 0 0; }

/* ============================================================
   Shadows
   ============================================================ */
.shadow-brand { box-shadow: var(--shadow-brand); }
.shadow-lg    { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3), 0 4px 6px -2px rgba(0,0,0,0.2); }

/* ============================================================
   Position / Display
   ============================================================ */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }
.top-0    { top: 0; }
.left-0   { left: 0; }
.right-0  { right: 0; }
.bottom-0 { bottom: 0; }
.z-10     { z-index: 10; }
.z-50     { z-index: 50; }
.select-none    { user-select: none; }
.pointer-events-none { pointer-events: none; }
.hidden   { display: none; }
.block    { display: block; }
.inline-block { display: inline-block; }
.sr-only  { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   Transitions
   ============================================================ */
.transition-all  { transition: all 0.3s ease; }
.transition-300  { transition: all 0.3s ease; }
.duration-300    { transition-duration: 0.3s; }

/* ============================================================
   Object / Opacity
   ============================================================ */
.object-contain  { object-fit: contain; }
.opacity-60      { opacity: 0.6; }
.opacity-80      { opacity: 0.8; }
.opacity-90      { opacity: 0.9; }
.brightness-invert { filter: brightness(0) invert(1); }

/* ============================================================
   Backdrop
   ============================================================ */
.backdrop-blur  { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ============================================================
   Max-width helpers
   ============================================================ */
.max-w-md  { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-h-8   { max-height: 2rem; }
.max-h-10  { max-height: 2.5rem; }
.max-h-24  { max-height: 6rem; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes accordion-down {
  from { height: 0; }
  to   { height: var(--radix-accordion-content-height); }
}
@keyframes accordion-up {
  from { height: var(--radix-accordion-content-height); }
  to   { height: 0; }
}
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out both; }

/* ============================================================
   COMPONENTS — Button
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.btn:disabled { pointer-events: none; opacity: 0.5; }

/* sizes */
.btn-sm  { height: 2.25rem; padding: 0 0.75rem; font-size: 0.875rem; }
.btn-md  { height: 2.5rem;  padding: 0 1rem; }
.btn-lg  { height: 3rem;    padding: 0 2rem; font-size: 1rem; }

/* variants */
.btn-default {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.btn-default:hover { background-color: hsl(137 100% 43%); }

.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--foreground);
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--border);
}
.btn-secondary:hover { background-color: rgba(255,255,255,0.08); }

/* ============================================================
   COMPONENTS — Card
   ============================================================ */
.card {
  background-color: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-header { padding: 1.5rem 1.5rem 0; }
.card-title  { font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.card-content{ padding: 1.5rem; }
.card-content.p-0 { padding: 0; }

/* surface card variant */
.card-surface { background-color: var(--surface); border-color: var(--border); }

/* ============================================================
   COMPONENT — Badge / Tag
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  background-color: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
}

.tag-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background-color: rgba(32,32,32,0.95);
  backdrop-filter: blur(12px);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-px);
  max-width: var(--container-max);
  margin-inline: auto;
}
.site-header .logo img { height: 2.5rem; width: auto; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a,
.nav-desktop button {
  color: #ffffff;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-desktop a:hover,
.nav-desktop button:hover { color: var(--primary); }

.header-cta { display: none; }

.btn-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: none;
  border: none;
  padding: 0.25rem;
}
.btn-hamburger:hover { color: var(--primary); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem var(--container-px);
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--container-max);
  margin-inline: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a,
.mobile-nav button {
  color: #ffffff;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.mobile-nav a:hover,
.mobile-nav button:hover { color: var(--primary); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding-block: 6.25rem; } /* 100px */
.section-sm { padding-block: 4rem; }

/* Section header pattern */
.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-desc {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin-inline: auto;
  line-height: 1.625;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background-color: var(--background);
  padding-top: 7rem;
  padding-bottom: 6rem;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
.hero-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #333;
}
.hero-stat-value {
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-value.large { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.hero-stat-value.medium{ font-size: clamp(1.5rem, 3vw, 2rem); }
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* Hero dashboard panel */
.hero-panel {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
}
.hero-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-panel-metric {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-panel-metric .label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-panel-metric .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}
.hero-panel-metric .sub {
  font-size: 0.75rem;
  color: var(--primary);
  margin-top: 0.25rem;
}
.hero-chart {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-chart-bars {
  height: 8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
}
.hero-chart-bar {
  background-color: var(--primary);
  border-radius: 4px 4px 0 0;
  flex: 1;
}

/* Hero logo strip */
.hero-logos {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-logos-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.hero-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  max-width: 64rem;
  margin-inline: auto;
}
.hero-logos-grid img {
  max-height: 2rem;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.hero-logos-grid img:hover { opacity: 1; }

/* ============================================================
   METHODOLOGY SECTION
   ============================================================ */
.methodology { background-color: var(--card); }

.methodology-tabs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.funnel-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}
.funnel-heading { text-align: center; margin-bottom: 2rem; }
.funnel-heading h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.funnel-heading p { color: var(--primary); font-weight: 600; }
.funnel-steps { display: flex; flex-direction: column; gap: 1rem; }
.funnel-step {
  background-color: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.3s;
}
.funnel-step:hover { transform: translateY(-4px); }
.funnel-step.captation { border-left: 3px solid var(--primary); }
.funnel-step.conversion { border-left: 3px solid #6C00FF; }
.funnel-step-inner { display: flex; align-items: center; gap: 1rem; }
.funnel-step-inner svg { flex-shrink: 0; }
.funnel-step h4 { font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.funnel-step p  { font-size: 0.875rem; color: var(--muted-foreground); }

.funnel-cards { display: grid; gap: 2rem; margin-bottom: 4rem; }

.methodology-rastreio {
  background-color: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 4rem;
  text-align: center;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { background-color: var(--background); }
.services-grid { display: grid; gap: 2rem; }
.service-card .icon { margin-bottom: 1rem; color: var(--primary); }
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.service-card p  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }
.service-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.service-feature-dot {
  width: 6px; height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FOR WHO SECTION
   ============================================================ */
.forwho { background-color: var(--card); }
.forwho-grid { display: grid; gap: 2rem; max-width: 64rem; margin-inline: auto; }
.forwho-box {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
}
.forwho-box.positive { border: 1px solid rgba(0,255,64,0.2); }
.forwho-box.negative { border: 1px solid rgba(220,38,83,0.2); }
.forwho-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.forwho-item svg { flex-shrink: 0; margin-top: 2px; }
.forwho-item span { color: var(--muted-foreground); }

/* ============================================================
   CASES SECTION
   ============================================================ */
.cases { background-color: var(--background); }
.cases-grid { display: grid; gap: 2rem; }
.case-card .case-company { font-size: 1.25rem; font-weight: 700; color: var(--foreground); }
.case-card .case-subtitle { color: var(--primary); font-weight: 500; font-size: 0.875rem; }
.case-card .case-desc { color: var(--muted-foreground); line-height: 1.625; margin-bottom: 1.5rem; }
.case-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-bottom: 1.5rem; }
.case-metrics > div { min-width: 0; }
.case-metric-value {
  font-size: clamp(0.875rem, 1.5vw, 1.375rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-metric-label {
  font-size: 0.625rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
}
.case-testimonial {
  position: relative;
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.case-testimonial .quote-mark {
  position: absolute;
  top: 0.5rem; left: 0.75rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(0,255,64,0.12);
  font-weight: 800;
  user-select: none;
  pointer-events: none;
}
.case-testimonial .quote-text {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
}
.case-testimonial .quote-author {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  position: relative;
  z-index: 1;
}

/* ============================================================
   ANALYSIS FREE CTA
   ============================================================ */
.analysis-cta { background-color: var(--card); }
.analysis-cta-inner { max-width: 56rem; margin-inline: auto; text-align: center; }
.analysis-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.analysis-cta-checklist {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin-inline: auto;
}
.analysis-cta-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.check-dot {
  width: 8px; height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   DIFFERENTIALS SECTION
   ============================================================ */
.differentials { background-color: var(--card); }
.differentials-grid { display: grid; gap: 2rem; }
.differential-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background-color: rgba(0,255,64,0.1);
  border: 1px solid rgba(0,255,64,0.2);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: 1rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background-color: var(--background); }
.contact-grid { display: grid; gap: 3rem; }
.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.contact-info-desc { color: var(--muted-foreground); line-height: 1.625; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.contact-item p, .contact-item div { color: var(--muted-foreground); }
.contact-trust {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-trust h4 { font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.trust-dot {
  width: 8px; height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background-color: var(--card); padding-block: 3rem; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-logo img { height: 2rem; width: auto; margin-bottom: 1rem; }
.footer-desc { color: var(--muted-foreground); line-height: 1.625; max-width: 28rem; }
.footer-col h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a, .footer-col li { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-block: 0; }
.footer-seals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-block: 2rem 1.5rem;
}
.footer-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.footer-seal svg { color: var(--primary); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-copyright { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--primary); }

/* ============================================================
   CASE PAGES — Common
   ============================================================ */
.case-hero { padding-block: 5rem; }
.case-hero-inner { max-width: 56rem; margin-inline: auto; }
.case-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}
.case-hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}
.case-hero-desc {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* Case with modern gradient hero (Reportei, Analize, LanceFacil style) */
.case-hero-modern {
  padding-top: 8rem;
  padding-bottom: 5rem;
}
.case-badge {
  display: inline-block;
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 2rem;
}
.case-hero-title-gradient {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #ffffff, #ffffff, var(--muted-foreground));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
.case-hero-tagline {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  max-width: 56rem;
  margin-inline: auto;
  line-height: 1.625;
  text-align: center;
}
.case-hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.case-metrics-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}
.case-metric-card {
  background-color: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.case-metric-card svg { color: var(--primary); margin-inline: auto; margin-bottom: 0.75rem; }
.case-metric-card .metric-val {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.case-metric-card .metric-label { font-size: 0.875rem; color: var(--muted-foreground); }

/* Hero metrics for "dark" style cases */
.case-key-metrics { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
.case-key-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.case-key-card .icon-wrap {
  width: 3rem; height: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.case-key-card .icon-wrap svg { color: var(--primary-foreground); }
.case-key-val {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.case-key-label { font-size: 0.875rem; color: var(--muted-foreground); }

.case-content { background-color: var(--background); padding-block: 5rem; }
.case-content-inner { max-width: 56rem; margin-inline: auto; }
.case-content-section { margin-bottom: 4rem; }
.case-content-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.case-content-section p { color: var(--muted-foreground); line-height: 1.625; margin-bottom: 1rem; }
.case-content-section strong { color: var(--foreground); }
.case-content-section a { color: var(--primary); text-decoration: underline; }

.case-highlight-card {
  background: var(--gradient-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1rem;
}
.case-results-card {
  background-color: rgba(0,255,64,0.1);
  border: 1px solid rgba(0,255,64,0.2);
  border-radius: var(--radius);
  padding: 2rem;
}
.case-results-stats { display: grid; gap: 2rem; margin-bottom: 2rem; text-align: center; }
.case-results-stat .val {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.case-results-stat .lbl { font-size: 0.875rem; color: var(--muted-foreground); }

.case-solutions-grid { display: grid; gap: 2rem; }
.case-solution-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.case-solution-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.case-solution-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.case-solution-card li { color: var(--muted-foreground); font-size: 0.875rem; }

.case-cta {
  text-align: center;
  background: var(--gradient-dark);
  border-radius: 1rem;
  padding: 3rem;
}
.case-cta h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.case-cta p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-inline: auto;
}

/* ROI highlight box */
.roi-box {
  background: var(--gradient-primary);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  color: var(--primary-foreground);
}
.roi-box h3 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
.roi-box p  { font-size: 1.125rem; opacity: 0.9; margin-bottom: 2rem; }
.roi-stats { display: grid; gap: 2rem; text-align: center; }
.roi-stat .val { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.roi-stat .lbl { opacity: 0.9; }

/* Gradient hero variations */
.hero-gradient-purple {
  background: linear-gradient(135deg, rgba(168,85,247,0.2) 0%, rgba(236,72,153,0.1) 50%, rgba(168,85,247,0.05) 100%);
}
.hero-gradient-green {
  background: linear-gradient(135deg, rgba(34,197,94,0.2) 0%, rgba(16,185,129,0.1) 50%, rgba(34,197,94,0.05) 100%);
}
.hero-gradient-primary {
  background: linear-gradient(135deg, rgba(0,255,64,0.2) 0%, rgba(0,255,64,0.1) 50%, rgba(0,255,64,0.05) 100%);
}

/* Result box purple/green variants */
.result-box-purple {
  background: linear-gradient(to right, rgba(168,85,247,0.2), rgba(236,72,153,0.2));
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}
.result-box-green {
  background: linear-gradient(to right, rgba(34,197,94,0.2), rgba(16,185,129,0.2));
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

/* Problem/Solution section */
.problem-solution { background-color: rgba(32,32,32,0.5); padding-block: 5rem; }
.problem-solution-grid { display: grid; gap: 4rem; max-width: 72rem; margin-inline: auto; }
.problem-solution h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}
.problem-solution p { color: var(--muted-foreground); line-height: 1.625; margin-bottom: 1.5rem; }
.problem-solution img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; margin-top: 1.5rem; }

/* 404 */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
}
.page-404 .inner { text-align: center; }
.page-404 h1 { font-size: 4rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.page-404 p  { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.page-404 a  { color: var(--primary); text-decoration: underline; }

/* ============================================================
   Tooltip / Prose helpers
   ============================================================ */
.prose p { color: var(--muted-foreground); line-height: 1.75; margin-bottom: 1rem; }
.prose strong { color: var(--foreground); }
.prose a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   RESPONSIVE — sm: 640px
   ============================================================ */
@media (min-width: 640px) {
  .hero-ctas    { flex-direction: row; }
  .case-hero-btns { flex-direction: row; }
  .analysis-cta-btns { flex-direction: row; }
  .hero-logos-grid { grid-template-columns: repeat(4, 1fr); }
  .case-metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — md: 768px
   ============================================================ */
@media (min-width: 768px) {
  .section       { padding-block: 6.25rem; }
  .section-title { font-size: clamp(2.25rem, 4vw, 3rem); }

  .forwho-grid         { grid-template-columns: 1fr 1fr; }
  .differentials-grid  { grid-template-columns: 1fr 1fr; }
  .services-grid       { grid-template-columns: 1fr 1fr; }
  .cases-grid          { grid-template-columns: 1fr 1fr; }
  .funnel-cards        { grid-template-columns: 1fr 1fr; }
  .analysis-cta-checklist { grid-template-columns: repeat(3, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer-bottom       { flex-direction: row; justify-content: space-between; }
  .contact-grid        { grid-template-columns: 1fr 1fr; }

  .case-metrics-grid   { grid-template-columns: repeat(4, 1fr); }
  .case-key-metrics    { grid-template-columns: repeat(3, 1fr); }
  .case-solutions-grid { grid-template-columns: 1fr 1fr; }
  .case-results-stats  { grid-template-columns: repeat(3, 1fr); }
  .roi-stats           { grid-template-columns: repeat(3, 1fr); }
  .problem-solution-grid { grid-template-columns: 1fr 1fr; }
  .result-box-purple .roi-stats,
  .result-box-green .roi-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — lg: 1024px
   ============================================================ */
@media (min-width: 1024px) {
  :root { --container-px: 1rem; }

  .nav-desktop   { display: flex; }
  .header-cta    { display: block; }
  .btn-hamburger { display: none; }
  .mobile-nav    { display: none !important; }

  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero      { padding-top: 8rem; padding-bottom: 8rem; }
  .hero-title{ font-size: 3rem; }
  .hero-logos-grid { grid-template-columns: repeat(6, 1fr); }
  .hero-logos-grid img { max-height: 2.5rem; }

  .funnel-grid   { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .cases-grid    { grid-template-columns: repeat(3, 1fr); }

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

/* ============================================================
   RD Station Form Override — dark theme
   (copied verbatim from src/index.css)
   ============================================================ */
[id^="formulario-de-contato-home"],
[id^="formulario-de-concessionarias"] {
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-family: 'Montserrat', sans-serif !important;
}
[id^="formulario-de-contato-home"] *,
[id^="formulario-de-concessionarias"] * { color: #ffffff !important; }

[id^="formulario-de-contato-home"] input,
[id^="formulario-de-contato-home"] select,
[id^="formulario-de-contato-home"] textarea,
[id^="formulario-de-concessionarias"] input,
[id^="formulario-de-concessionarias"] select,
[id^="formulario-de-concessionarias"] textarea,
.bricks-form input,
.bricks-form select,
.bricks-form textarea {
  background: #1a1a1a !important;
  border: 1px solid #333 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  margin-bottom: 0.25rem !important;
  font-size: 0.9375rem !important;
  font-family: 'Montserrat', sans-serif !important;
  transition: border-color 0.3s ease !important;
}
[id^="formulario-de-contato-home"] label,
[id^="formulario-de-concessionarias"] label,
.bricks-form label {
  color: #C2C7CC !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  margin-bottom: 0.375rem !important;
  display: block !important;
  font-family: 'Montserrat', sans-serif !important;
}
[id^="formulario-de-contato-home"] button[type="submit"],
[id^="formulario-de-concessionarias"] button[type="submit"],
.bricks-form button[type="submit"],
.bricks-form .bricks-button {
  background: #00FF40 !important;
  color: #111111 !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 16px 40px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: opacity 0.3s ease !important;
  font-family: 'Montserrat', sans-serif !important;
  text-transform: uppercase !important;
  margin-top: 0.5rem !important;
  box-shadow: none !important;
}
[id^="formulario-de-contato-home"] button[type="submit"]:hover,
[id^="formulario-de-concessionarias"] button[type="submit"]:hover,
.bricks-form button[type="submit"]:hover,
.bricks-form .bricks-button:hover { opacity: 0.85 !important; transform: none !important; box-shadow: none !important; }

[id^="formulario-de-contato-home"] .form-field,
[id^="formulario-de-contato-home"] .form-group,
[id^="formulario-de-concessionarias"] .form-field,
[id^="formulario-de-concessionarias"] .form-group,
.bricks-form .form-field,
.bricks-form .form-group { margin-bottom: 1.25rem !important; }

[id^="formulario-de-contato-home"] input:focus,
[id^="formulario-de-contato-home"] select:focus,
[id^="formulario-de-contato-home"] textarea:focus,
[id^="formulario-de-concessionarias"] input:focus,
[id^="formulario-de-concessionarias"] select:focus,
[id^="formulario-de-concessionarias"] textarea:focus,
.bricks-form input:focus,
.bricks-form select:focus,
.bricks-form textarea:focus {
  outline: none !important;
  border-color: #00FF40 !important;
  box-shadow: none !important;
}
[id^="formulario-de-contato-home"] input::placeholder,
[id^="formulario-de-contato-home"] textarea::placeholder,
[id^="formulario-de-concessionarias"] input::placeholder,
[id^="formulario-de-concessionarias"] textarea::placeholder {
  color: #505050 !important;
  -webkit-text-fill-color: #505050 !important;
}
[id^="formulario-de-contato-home"] .rd-choices,
[id^="formulario-de-contato-home"] .rd-choices__inner,
[id^="formulario-de-contato-home"] .choices,
[id^="formulario-de-contato-home"] .choices__inner,
[id^="formulario-de-concessionarias"] .rd-choices,
[id^="formulario-de-concessionarias"] .rd-choices__inner,
[id^="formulario-de-concessionarias"] .choices,
[id^="formulario-de-concessionarias"] .choices__inner {
  background-color: #111111 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
}
[id^="formulario-de-contato-home"] .rd-choices__list--single,
[id^="formulario-de-contato-home"] .rd-choices__list--dropdown,
[id^="formulario-de-contato-home"] .choices__list--single,
[id^="formulario-de-contato-home"] .choices__list--dropdown,
[id^="formulario-de-concessionarias"] .rd-choices__list--single,
[id^="formulario-de-concessionarias"] .rd-choices__list--dropdown,
[id^="formulario-de-concessionarias"] .choices__list--single,
[id^="formulario-de-concessionarias"] .choices__list--dropdown {
  background-color: #111111 !important;
  color: #ffffff !important;
}
[id^="formulario-de-concessionarias"] .rd-choices__list--dropdown .rd-choices__item,
[id^="formulario-de-concessionarias"] .choices__list--dropdown .choices__item {
  background-color: #111111 !important;
  color: #ffffff !important;
}
[id^="formulario-de-concessionarias"] .rd-choices__list--dropdown .rd-choices__item--selectable.is-highlighted,
[id^="formulario-de-concessionarias"] .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #202020 !important;
}
[id^="formulario-de-concessionarias"] .rd-choices__item,
[id^="formulario-de-concessionarias"] .choices__item { color: #ffffff !important; }
[id^="formulario-de-concessionarias"] .iti,
[id^="formulario-de-concessionarias"] .iti__flag-container,
[id^="formulario-de-concessionarias"] .intl-tel-input { overflow: visible !important; }
[id^="formulario-de-concessionarias"] .iti__selected-flag,
[id^="formulario-de-concessionarias"] .selected-flag {
  background-color: #111111 !important;
  border-right: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 6px 0 0 6px !important;
  padding: 0 8px !important;
}
[id^="formulario-de-concessionarias"] .iti__country-list,
[id^="formulario-de-concessionarias"] .country-list {
  background-color: #111111 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
}
[id^="formulario-de-concessionarias"] .iti__country.iti__highlight,
[id^="formulario-de-concessionarias"] .country.highlight { background-color: #202020 !important; }
[id^="formulario-de-concessionarias"] p,
[id^="formulario-de-concessionarias"] span,
[id^="formulario-de-concessionarias"] a,
[id^="formulario-de-concessionarias"] div { color: #ffffff !important; }
[id^="formulario-de-concessionarias"] .choices[data-type*="select-one"]::after {
  border-color: #ffffff transparent transparent !important;
}
[id^="formulario-de-concessionarias"] .choices[data-type*="select-one"].is-open::after {
  border-color: transparent transparent #ffffff !important;
}
