/* =========================================
   LÍDER ENERGIA SOLAR — V2 "CARBON"
   Dark Industrial Corporate
   ========================================= */

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Backgrounds */
  --carbon: #08090B;
  --ink: #0E1418;
  --navy: #0F1E2C;

  /* Cards & Borders */
  --graphite: #161F28;
  --steel: #1F2A36;
  --steel-2: #2A3540;

  /* Text */
  --technical: #E8EAEC;
  --silver: #9AA4AE;
  --mist: #6B7680;

  /* Accent */
  --accent: #C9A35C;
  --accent-soft: #DBBA7C;
  --accent-deep: #9D7D3F;

  /* Green */
  --green: #34B86A;

  /* Fonts */
  --font-display: 'Satoshi', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Easing */
  --ease: cubic-bezier(.16, 1, .3, 1);

  /* Shadows */
  --shadow-deep: 0 40px 100px -30px rgba(0,0,0,.7);
  --shadow-card: 0 8px 32px rgba(0,0,0,.4);

  /* Grid texture */
  --grid-texture: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
                  linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  --grid-size: 80px 80px;
  --grid-mask: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--technical);
  background: var(--carbon);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* --- SPLASH SCREEN --- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--carbon);
  transition: opacity .6s var(--ease), visibility .6s;
}

.splash.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: 120px;
  margin-bottom: 32px;
  animation: splashPulse 2s ease-in-out infinite;
}

@keyframes splashPulse {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}

.splash-bar {
  width: 160px;
  height: 2px;
  background: var(--steel);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 16px;
}

.splash-bar-inner {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-soft));
  animation: splashLoad .8s var(--ease) forwards;
}

@keyframes splashLoad {
  to { width: 100%; }
}

.splash-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all .5s var(--ease);
}

.header.is-scrolled {
  padding: 12px 0;
  background: rgba(14, 20, 24, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(31, 42, 54, .5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 40px;
  transition: height .4s var(--ease);
}

.header.is-scrolled .header-logo {
  height: 32px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.85);
  transition: color .3s var(--ease);
  position: relative;
  padding-bottom: 4px;
}

.header.is-scrolled .nav a {
  color: var(--silver);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .4s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--technical);
}

.nav a.active::after,
.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--carbon) !important;
  border-radius: 2px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s var(--ease);
}

.nav-cta:hover::after {
  left: 100%;
}

.nav-cta:hover {
  background: var(--accent-soft);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  height: 28px;
  justify-content: center;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--technical);
  transition: all .3s var(--ease);
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 9, 11, .97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 500;
  color: var(--silver);
  transition: color .3s var(--ease);
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 24s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 9, 11, .92) 0%,
    rgba(8, 9, 11, .75) 35%,
    rgba(8, 9, 11, .45) 65%,
    rgba(8, 9, 11, .3) 100%
  );
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .035;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 140px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 7.2vw, 124px);
  line-height: .92;
  letter-spacing: -.045em;
  color: var(--technical);
  margin-bottom: 8px;
}

.hero-title-thin {
  display: block;
  font-weight: 400;
  color: rgba(232, 234, 236, .55);
}

.hero-desc {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.7;
  margin: 28px 0 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s var(--ease);
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background: #fff;
  color: var(--carbon);
}

.btn-primary:hover {
  background: var(--technical);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,.12);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--technical);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--carbon);
}

.btn-accent:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 163, 92, .2);
}

.btn svg {
  flex-shrink: 0;
}

/* Hero Dashboard */
.hero-dashboard {
  background: rgba(22, 31, 40, .6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--steel);
  border-radius: 2px;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-deep);
}

.hero-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft), transparent);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.dash-pulse {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 184, 106, .5); }
  50% { box-shadow: 0 0 0 6px rgba(52, 184, 106, 0); }
}

.dash-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mist);
  letter-spacing: .05em;
}

.dash-chart {
  width: 100%;
  height: 64px;
  margin-bottom: 20px;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dash-metric {
  text-align: center;
}

.dash-metric-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 4px;
}

.dash-metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--technical);
}

.dash-metric-unit {
  font-size: 12px;
  font-weight: 400;
  color: var(--silver);
}

/* Hero Bottom Strip */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(8, 9, 11, .5);
  backdrop-filter: blur(10px);
}

.hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-weight: 700;
  font-size: 24px;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--silver);
  line-height: 1.3;
}

.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hero-scroll-cue svg {
  animation: scrollCue 2s ease-in-out infinite;
}

.hero-caption {
  position: absolute;
  bottom: 80px;
  left: 48px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--mist);
  opacity: .6;
}

/* --- MARQUEE --- */
.marquee-section {
  background: var(--carbon);
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
  padding: 0 24px;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- SECTION COMMONS --- */
.section-pad {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-eyebrow-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--technical);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--silver);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- SIMULADOR --- */
.simulador-section {
  background: var(--carbon);
  position: relative;
}

.simulador-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grid-texture);
  background-size: var(--grid-size);
  mask-image: var(--grid-mask);
  -webkit-mask-image: var(--grid-mask);
  pointer-events: none;
}

.sim-card {
  background: var(--graphite);
  border: 1px solid var(--steel);
  border-radius: 2px;
  padding: 48px;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-deep);
}

.sim-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft), transparent);
}

.sim-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 12px;
}

.sim-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

/* Slider */
.sim-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--steel);
  border-radius: 2px;
  outline: none;
  margin-bottom: 8px;
  position: relative;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: var(--p, 0%) 100%;
  background-repeat: no-repeat;
}

.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  transform: rotate(45deg);
  transition: box-shadow .3s var(--ease);
}

.sim-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transform: rotate(45deg);
}

.sim-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(201, 163, 92, .15);
}

.sim-range-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mist);
  margin-bottom: 40px;
}

.sim-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.sim-result {
  background: var(--ink);
  border: 1px solid var(--steel);
  border-radius: 2px;
  padding: 24px 20px;
  position: relative;
  transition: all .4s var(--ease);
}

.sim-result::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 0;
  height: calc(100% - 16px);
  background: var(--accent);
  transition: width .4s var(--ease);
}

.sim-result:hover::before {
  width: 3px;
}

.sim-result:hover {
  border-color: var(--steel-2);
}

.sim-result-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 8px;
}

.sim-result-value {
  font-weight: 700;
  font-size: 22px;
  color: var(--technical);
  letter-spacing: -.02em;
}

.sim-big-result {
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: 2px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sim-big-result::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 163, 92, .08) 0%, transparent 70%);
  pointer-events: none;
}

.sim-big-result-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.sim-big-result-value {
  font-weight: 700;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -.02em;
}

.sim-chart-wrap {
  margin-top: 24px;
  background: var(--ink);
  border: 1px solid var(--steel);
  border-radius: 2px;
  padding: 20px;
}

.sim-chart-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 12px;
}

.sim-chart {
  width: 100%;
  height: 90px;
}

/* --- COMO FUNCIONA --- */
.servicos-section {
  background: var(--carbon);
  position: relative;
}

.servicos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grid-texture);
  background-size: var(--grid-size);
  mask-image: var(--grid-mask);
  -webkit-mask-image: var(--grid-mask);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.step-card {
  padding: 32px 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
  transition: all .4s var(--ease);
}

.step-card:hover .step-number {
  background: var(--accent);
  color: var(--carbon);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--technical);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.step-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}

.step-connector {
  position: absolute;
  top: 56px;
  right: -12px;
  width: 24px;
  height: 1px;
  background: var(--steel);
}

.step-card:last-child .step-connector {
  display: none;
}

/* --- CASES --- */
.cases-section {
  background: var(--ink);
}

.case-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.case-filter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 20px;
  color: var(--silver);
  border: 1px solid var(--steel);
  border-radius: 2px;
  background: transparent;
  transition: all .3s var(--ease);
}

.case-filter:hover {
  border-color: var(--steel-2);
  color: var(--technical);
}

.case-filter.active {
  background: var(--accent);
  color: var(--carbon);
  border-color: var(--accent);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  background: var(--graphite);
  border: 1px solid var(--steel);
  border-radius: 2px;
  overflow: hidden;
  transition: all .5s var(--ease);
  position: relative;
}

.case-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.case-card.featured {
  grid-column: span 3;
}

.case-card.featured .case-card-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.case-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.case-card.featured .case-img-wrap {
  aspect-ratio: auto;
  min-height: 360px;
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.case-card:hover .case-img {
  transform: scale(1.05);
}

.case-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 9, 11, .8) 100%);
}

.case-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(8, 9, 11, .7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 2px;
}

.case-info {
  padding: 24px;
}

.case-card.featured .case-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--technical);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.case-card.featured .case-title {
  font-size: 24px;
}

.case-location {
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 16px;
}

.case-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.case-card.featured .case-specs {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.case-spec dt {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 4px;
}

.case-spec dd {
  font-weight: 600;
  font-size: 15px;
  color: var(--technical);
}

/* --- DEPOIMENTOS --- */
.depoimentos-section {
  background: var(--carbon);
  border-top: 1px solid var(--steel);
}

.testi-wrapper {
  position: relative;
}

.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  background: var(--graphite);
  border: 1px solid var(--steel);
  border-radius: 2px;
  padding: 32px;
  transition: all .4s var(--ease);
  min-width: 300px;
}

.testi-card:hover {
  border-color: var(--accent);
}

.testi-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-star {
  color: var(--accent);
  font-size: 14px;
}

.testi-text {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--steel);
}

.testi-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--technical);
}

.testi-role {
  font-size: 12px;
  color: var(--mist);
}

.testi-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--steel);
}

.testi-spec-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 2px;
}

.testi-spec-value {
  font-weight: 600;
  font-size: 13px;
  color: var(--technical);
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testi-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--steel);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all .3s var(--ease);
}

.testi-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--steel);
  border: none;
  transition: all .3s var(--ease);
}

.testi-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* --- FINANCIAMENTO --- */
.financiamento-section {
  background: var(--ink);
  position: relative;
}

.financiamento-card {
  background: var(--graphite);
  border: 1px solid var(--steel);
  border-radius: 2px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.financiamento-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 163, 92, .06) 0%, transparent 70%);
  pointer-events: none;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.compare-card {
  padding: 32px;
  border-radius: 2px;
  border: 1px solid var(--steel);
}

.compare-card.before {
  background: var(--carbon);
}

.compare-card.after {
  background: var(--ink);
}

.compare-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 16px;
}

.compare-card.after .compare-label {
  color: var(--green);
}

.compare-value {
  font-weight: 700;
  font-size: 36px;
  color: var(--technical);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.compare-card.after .compare-value {
  color: var(--green);
}

.compare-bar {
  width: 100%;
  height: 4px;
  background: var(--steel);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}

.compare-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s var(--ease);
}

.compare-card.before .compare-bar-fill {
  width: 100%;
  background: #e05252;
}

.compare-card.after .compare-bar-fill {
  width: 20%;
  background: linear-gradient(90deg, var(--green), #5dd395);
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.compare-vs-badge {
  width: 48px;
  height: 48px;
  background: var(--graphite);
  border: 1px solid var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
  z-index: 1;
}

.compare-vs::before,
.compare-vs::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 40px;
  background: var(--steel);
}

.compare-vs::before { top: -40px; }
.compare-vs::after { bottom: -40px; }

.compare-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  margin-top: 32px;
  text-align: center;
}

.bank-labels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.bank-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 6px 16px;
  border: 1px solid var(--steel);
  border-radius: 2px;
}

/* --- FAQ --- */
.faq-section {
  background: var(--carbon);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--steel);
  border-radius: 2px;
  margin-bottom: 8px;
  background: var(--graphite);
  transition: all .3s var(--ease);
}

.faq-item:hover {
  background: var(--steel);
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--technical);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .3s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--mist);
  transition: transform .3s var(--ease);
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--accent);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}

/* --- BLOG --- */
.blog-section {
  background: var(--ink);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--graphite);
  border: 1px solid var(--steel);
  border-radius: 2px;
  overflow: hidden;
  transition: all .5s var(--ease);
}

.blog-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}

.blog-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-body {
  padding: 24px;
}

.blog-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent-deep);
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 14px;
}

.blog-title {
  font-weight: 600;
  font-size: 17px;
  color: var(--technical);
  margin-bottom: 8px;
  letter-spacing: -.01em;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mist);
  letter-spacing: .05em;
}

/* --- CONTATO --- */
.contato-section {
  background: var(--ink);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contato-form-card {
  background: var(--graphite);
  border: 1px solid var(--steel);
  border-radius: 2px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contato-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft), transparent);
}

.contato-form-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 163, 92, .04) 0%, transparent 70%);
  pointer-events: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink);
  border: 1px solid var(--steel);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--technical);
  transition: all .3s var(--ease);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 163, 92, .1);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7680' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato-card {
  background: var(--graphite);
  border: 1px solid var(--steel);
  border-radius: 2px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all .3s var(--ease);
}

.contato-card:hover {
  border-color: var(--accent);
}

.contato-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border: 1px solid var(--steel);
  border-radius: 2px;
  color: var(--accent);
  flex-shrink: 0;
}

.contato-card-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--technical);
  margin-bottom: 4px;
}

.contato-card-text {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.5;
}

.contato-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.contato-social {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--steel);
  border-radius: 0;
  color: var(--silver);
  transition: all .3s var(--ease);
}

.contato-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--carbon);
}

/* --- FOOTER --- */
.footer {
  background: var(--carbon);
  position: relative;
  padding: 60px 0 32px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-soft), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--silver);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-logo {
  height: 36px;
}

.footer-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--silver);
  transition: color .3s var(--ease);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all .3s var(--ease);
}

.footer-social:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--steel);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mist);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--mist);
  transition: color .3s var(--ease);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* --- FLOATING ELEMENTS --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 14px 24px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, .3);
  transition: all .3s var(--ease);
  animation: waFloat 3s ease-in-out infinite;
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.whatsapp-float:hover {
  box-shadow: 0 12px 40px rgba(37, 211, 102, .4);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: 1px solid var(--steel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--carbon);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }
.reveal.d6 { transition-delay: .6s; }

.word-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.word-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */

/* Prevent horizontal overflow globally */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 960px) {
  .container { padding: 0 32px; }

  /* HERO: stack everything vertically, no overlap */
  .hero { min-height: auto; display: block; }
  .hero-content { padding: 120px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-dashboard { max-width: 100%; width: 100%; }

  /* CRITICAL: hero-bottom must flow in document, not absolute */
  .hero-bottom { position: relative; bottom: auto; }
  .hero-bottom-inner { padding: 20px 32px; }

  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card.featured { grid-column: span 2; }
  .case-card.featured .case-card-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .financiamento-card { padding: 40px; }
  .compare-grid { grid-template-columns: 1fr; gap: 20px; }
  .compare-vs { flex-direction: row; }
  .compare-vs::before, .compare-vs::after { display: none; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-bottom-inner { flex-direction: column; gap: 16px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .hero-stat { padding: 8px 16px; }
  .contato-grid { grid-template-columns: 1fr; }
  .hero-caption { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }

  /* Hero — single column, dashboard below text */
  .hero { min-height: auto; }
  .hero-content { padding: 120px 0 80px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-dashboard {
    max-width: 100%;
    width: 100%;
  }
  .hero-title {
    font-size: clamp(36px, 10vw, 52px);
  }
  .hero-desc {
    font-size: 15px;
    margin: 20px 0 28px;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 9, 11, .92) 0%,
      rgba(8, 9, 11, .85) 50%,
      rgba(8, 9, 11, .7) 100%
    );
  }

  /* Hero bottom strip */
  .hero-bottom-inner {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .hero-stat {
    border-right: none;
    padding: 8px 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }
  .hero-stat-number { font-size: 20px; }
  .hero-stat-label { font-size: 11px; text-align: center; }
  .hero-scroll-cue { display: none; }

  /* Simulator */
  .sim-card { padding: 28px 20px; }
  .sim-results { grid-template-columns: 1fr; }
  .sim-display { font-size: 32px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Cases */
  .cases-grid { grid-template-columns: 1fr; }
  .case-card.featured { grid-column: span 1; }
  .case-card.featured .case-card-inner { grid-template-columns: 1fr; }
  .case-card.featured .case-img-wrap { min-height: 200px; }

  /* Testimonials */
  .testi-card {
    flex: 0 0 88%;
    min-width: 0;
    padding: 24px;
  }
  .testi-specs { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* Financing */
  .financiamento-card { padding: 28px 20px; }
  .compare-grid { grid-template-columns: 1fr; gap: 16px; }
  .compare-card { padding: 24px; }
  .compare-value { font-size: 28px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contato-grid { grid-template-columns: 1fr; }
  .contato-form-card { padding: 28px 20px; }

  /* FAQ — already single column via max-width, just tighten padding */
  .faq-item summary { padding: 16px 20px; font-size: 14px; }
  .faq-answer { padding: 0 20px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }

  /* WhatsApp button — icon only on mobile */
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }

  /* Dashboard metrics */
  .dash-metrics { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .dash-metric-value { font-size: 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 60px 0; }

  /* Hero tighter */
  .hero-content { padding: 100px 0 70px; }
  .hero-title {
    font-size: clamp(30px, 9vw, 42px);
  }
  .hero-desc { font-size: 14px; }
  .hero-eyebrow-text { font-size: 10px; }

  /* Hero actions stack */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Dashboard card */
  .hero-dashboard { padding: 20px; }
  .dash-metrics { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dash-metric-value { font-size: 17px; }
  .dash-metric-label { font-size: 8px; }

  /* Hero stats 2x2 */
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-stat-number { font-size: 18px; }
  .hero-stat-label { font-size: 10px; }

  /* Section titles */
  .section-title { font-size: clamp(24px, 7vw, 32px); }
  .section-desc { font-size: 14px; }

  /* Simulator */
  .sim-card { padding: 20px 16px; }
  .sim-display { font-size: 28px; }
  .sim-big-result-value { font-size: 24px; }
  .sim-big-result { padding: 24px 16px; }
  .sim-result { padding: 18px 16px; }
  .sim-result-value { font-size: 18px; }

  /* Steps cards */
  .step-card { padding: 24px 16px; }

  /* Cases */
  .case-info { padding: 18px; }
  .case-card.featured .case-info { padding: 24px 18px; }
  .case-card.featured .case-title { font-size: 20px; }
  .case-specs { gap: 8px; }

  /* Testimonials — almost full width */
  .testi-card {
    flex: 0 0 92%;
    padding: 20px;
  }
  .testi-specs { grid-template-columns: 1fr 1fr; gap: 8px; }
  .testi-text { font-size: 14px; }

  /* Financing */
  .financiamento-card { padding: 20px 16px; }
  .compare-card { padding: 20px 16px; }
  .compare-value { font-size: 24px; }
  .bank-label { font-size: 9px; padding: 5px 10px; }

  /* Contact */
  .contato-form-card { padding: 20px 16px; }
  .contato-card { padding: 20px; }

  /* Blog */
  .blog-body { padding: 18px; }
  .blog-title { font-size: 15px; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer-grid { gap: 24px; }
  .footer-bottom { gap: 10px; }

  /* Buttons slightly smaller */
  .btn { font-size: 13px; padding: 12px 24px; }

  /* WhatsApp button smaller */
  .whatsapp-float { padding: 12px; bottom: 16px; right: 16px; }
  .scroll-top { bottom: 16px; left: 16px; width: 38px; height: 38px; }
}
