:root {
      color-scheme: light only;
  --teal:      #00c4a7;
  --teal-dark: #1a7a6e;
  --turquesa:  #47ead4;
  --black:     #1a1a1a;
  --dark:      #1c2124;
  --mid:       #3d4a52;
  --grey:      #6b7a84;
  --light:     #e8ecee;
  --bg:        #f5f6f7;
  --white:     #ffffff;
  --yellow:    #f5c842;
  --borda:     #e8ecee;
  --display:   'Space Grotesk', sans-serif;
  --body:      'Manrope', sans-serif;
  --font-ui:   'Inter', sans-serif;
}

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

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--black);
  min-height: 100vh;
  padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 80px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borda);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; display: block; object-fit: contain; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(26,28,28,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--turquesa); }
.nav-links a.active { color: var(--turquesa); }

.search-box {
  width: 205px; height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px;
  background: #fff;
}
.search-box svg path { stroke: rgb(82,97,96); }
.search-box input {
  width: 100%; border: none; outline: none; background: transparent;
  font-family: var(--font-ui); font-size: 14px; color: rgb(82,97,96);
}
.search-box input::placeholder { color: rgb(82,97,96); opacity: 1; }

/* ── HERO ── */
.hero {
  background: var(--bg);
  padding: 56px 40px 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(0,196,167,.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 20px;
}

.hero-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--teal-dark);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 16px;
}

.hero h1 em { font-style: normal; color: var(--teal-dark); }

.hero p {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 560px;
}

/* ── PROGRESS BAR ── */
.progress-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--light);
  padding: 0 40px;
  position: sticky;
  top: 80px;
  z-index: 40;
}

.progress-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.step-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px 16px 0;
  opacity: .4;
  transition: opacity .25s;
  cursor: default;
  position: relative;
}

.step-tab.active { opacity: 1; }
.step-tab.done   { opacity: .7; cursor: pointer; }
.step-tab.done:hover { opacity: 1; }

.step-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
}

.step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--light);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  flex-shrink: 0;
  transition: background .25s, color .25s;
}

.step-tab.active .step-num {
  background: var(--teal-dark);
  color: var(--white);
}

.step-tab.done .step-num {
  background: var(--teal);
  color: var(--white);
}

.step-tab.done .step-num::after { content: '✓'; }
.step-tab.done .step-num-inner  { display: none; }

.step-label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.step-divider {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── MAIN AREA ── */
.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

/* ── STEP PANELS ── */
.step-panel { display: none; }
.step-panel.active { display: block; }

.step-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-subtitle {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── OPTION CARDS (step 1 & 2) ── */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.option-card {
  border: 1.5px solid var(--light);
  background: var(--white);
  padding: 20px 18px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  position: relative;
}

.option-card:hover {
  border-color: var(--teal-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

.option-card.selected {
  border-color: var(--teal-dark);
  background: #f0faf8;
}

.option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px; right: 12px;
  width: 20px; height: 20px;
  background: var(--teal-dark);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 20px;
  text-align: center;
}

.option-icon {
  width: 36px; height: 36px;
  background: rgba(0,196,167,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

.option-icon svg { color: var(--teal-dark); }

.option-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.option-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

.option-badge {
  display: inline-block;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 7px;
  background: var(--yellow);
  color: var(--dark);
  margin-bottom: 8px;
}

/* ── SLIDERS (step 3) ── */
.filters-section { margin-bottom: 32px; }

.filter-group {
  background: var(--white);
  border: 1px solid var(--light);
  padding: 20px 24px;
  margin-bottom: 12px;
}

.filter-label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0;
  text-transform: none;
}

.range-wrap {
  position: relative;
  padding: 8px 0;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--light);
  outline: none;
  border-radius: 2px;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-dark);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  transition: transform .15s;
}

input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }

.range-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.range-tick {
  font-size: 11px;
  color: var(--grey);
}

/* ── RESULTS (step 4) ── */
.results-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.result-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  transition: border-color .2s;
  cursor: pointer;
}

.result-card:hover { border-color: var(--teal-dark); }

.result-card.recommended {
  border-color: var(--teal-dark);
  position: relative;
}

.result-card.recommended::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: -1px; right: 20px;
  background: var(--teal-dark);
  color: white;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 3px 10px;
}

.result-rank {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: var(--light);
  border-right: 1px solid var(--light);
  align-self: stretch;
}

.result-card.recommended .result-rank { color: var(--teal); }

.result-body { padding: 18px 20px; }

.result-series {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 4px;
}

.result-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.result-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 12px;
}

.result-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.spec-chip {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 3px 8px;
  background: var(--bg);
  color: var(--mid);
  border: 1px solid var(--light);
}

.result-actions {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--light);
  min-width: 150px;
}

.btn-result-primary {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: var(--teal-dark);
  color: var(--white);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}

.btn-result-primary:hover { background: var(--teal); }

.btn-result-secondary {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: transparent;
  color: var(--mid);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--light);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}

.btn-result-secondary:hover { border-color: var(--dark); color: var(--dark); }

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border: 1px solid var(--light);
}

.no-results h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.no-results p { font-size: 14px; color: var(--grey); }

/* ── FORM (step 5) ── */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--light);
  padding: 32px;
  margin-bottom: 24px;
}

.selected-machine-summary {
  background: var(--dark);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.summary-icon {
  width: 40px; height: 40px;
  background: rgba(0,196,167,.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.summary-label {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.summary-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--light);
  background: var(--bg);
  font-family: var(--body);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--teal-dark); background: var(--white); }

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

/* ── NAV BUTTONS ── */
.nav-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}

.btn-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  transition: color .2s;
}

.btn-back:hover { color: var(--dark); }
.btn-back:disabled { opacity: .3; cursor: default; }

.btn-next {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal-dark);
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  transition: background .2s, transform .15s;
}

.btn-next:hover { background: var(--teal); transform: translateY(-1px); }
.btn-next:disabled { opacity: .4; cursor: default; transform: none; }

/* ── SUCCESS ── */
.success-panel {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 72px; height: 72px;
  background: rgba(0,196,167,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}

.success-panel h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 12px;
}

.success-panel p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 32px;
}

.btn-restart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: none;
  border: 1.5px solid var(--teal-dark);
  padding: 12px 24px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.btn-restart:hover { background: var(--teal-dark); color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .header { padding: 0 20px; }
  .main   { padding: 24px 20px 60px; }
  .hero   { padding: 36px 20px 32px; }
  .progress-wrap { padding: 0 20px; overflow-x: auto; }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: 1fr; }
  .result-rank { display: none; }
  .result-actions { border-left: none; border-top: 1px solid var(--light); flex-direction: row; }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: none; border: none; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #1a1a1a; border-radius: 2px; transition: all .25s;
}
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 88vw); height: 100dvh;
  background: #fff; z-index: 500;
  display: flex; flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px); z-index: 490;
  opacity: 0; pointer-events: none; transition: opacity .32s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px; height: 72px; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
}
.mobile-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: #f4f4f4; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #1a1a1a;
}
.mobile-nav { flex: 1; display: flex; flex-direction: column; padding: 8px 0; overflow-y: auto; }
.mobile-link {
  display: block; padding: 17px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: -.02em;
  color: #1a1a1a; text-decoration: none;
  border-bottom: 1px solid #f5f5f5; transition: color .2s, padding-left .2s;
}
.mobile-link:hover, .mobile-link.active { color: #1a7a6e; padding-left: 32px; }
.mobile-bottom {
  padding: 20px 22px 28px; border-top: 1px solid #f0f0f0;
  display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
}
.mobile-cta-btn {
  display: block; text-align: center; padding: 15px;
  background: #1a7a6e; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-radius: 6px; transition: background .2s;
}
.mobile-cta-btn:hover { background: #006b5f; }
.mobile-contact { text-align: center; font-size: 13px; color: #6b7a84; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  body { padding-top: 72px !important; overflow-x: hidden; }
  nav { height: 72px !important; padding: 0 20px !important; }
  nav .nav-links, nav .search-box { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .progress-wrap { top: 72px !important; }
}

@media (max-width: 640px) {
  /* Hero */
  .hero { padding: 36px 20px 32px !important; }
  .hero h1 { font-size: clamp(28px, 8vw, 44px) !important; }
  .hero p { font-size: 15px !important; }

  /* Progress bar */
  .progress-wrap { padding: 0 !important; overflow-x: auto; }
  .progress-inner { padding: 0 16px; min-width: max-content; }
  .step-tab { padding: 14px 12px 14px 0 !important; }
  .step-label { font-size: 11px !important; }

  /* Main */
  .main { padding: 24px 16px 60px !important; }

  /* Step titles */
  .step-title { font-size: 20px !important; }
  .step-subtitle { font-size: 14px !important; margin-bottom: 20px !important; }

  /* Options grid — 1 col on small, 2 on medium */
  .options-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .option-card { padding: 16px 14px !important; }
  .option-name { font-size: 14px !important; }
  .option-desc { font-size: 12px !important; }
  .option-icon { width: 30px !important; height: 30px !important; margin-bottom: 10px !important; }

  /* Sliders */
  .filter-group { padding: 16px 18px !important; }
  .filter-label { font-size: 11px !important; }

  /* Results */
  .result-card { grid-template-columns: 1fr !important; }
  .result-rank { display: none !important; }
  .result-body { padding: 16px !important; }
  .result-name { font-size: 15px !important; }
  .result-desc { font-size: 13px !important; }
  .result-actions {
    border-left: none !important;
    border-top: 1px solid var(--light) !important;
    flex-direction: row !important;
    padding: 12px 16px !important;
    min-width: auto !important;
  }
  .btn-result-primary, .btn-result-secondary { flex: 1; text-align: center; font-size: 10px !important; padding: 8px 10px !important; }

  /* Form */
  .form-wrap { padding: 20px !important; }
  .selected-machine-summary { padding: 16px !important; gap: 12px !important; }
  .summary-name { font-size: 14px !important; }
  .form-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Nav buttons */
  .nav-buttons { flex-wrap: wrap; gap: 10px; }
  .btn-next { padding: 12px 20px !important; font-size: 12px !important; }

  /* Success */
  .success-panel { padding: 40px 16px !important; }
  .success-panel h2 { font-size: 22px !important; }
}

@media (max-width: 380px) {
  .options-grid { grid-template-columns: 1fr !important; }
}

/* ── FOOTER ── */
.footer {
  background: #f5f6f7;
  padding-top: 70px;
  border-top: 1px solid rgba(0,0,0,0.04);
  margin-top: 0;
}
.footer-container {
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 70px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 70px;
}
.footer-logo { width: 56px; height: auto; margin-bottom: 32px; }
.footer-brand p {
  max-width: 240px; color: rgb(82,97,96);
  font-family: var(--body); font-size: 15px;
  line-height: 1.7; margin-bottom: 34px;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 40px; height: 40px; border: 1px solid #dfe3e6;
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; background: white; transition: 0.2s ease;
}
.footer-socials a:hover { border-color: #1a7a6e; }
.footer-column h4 {
  text-transform: uppercase; margin-bottom: 28px;
  font-family: var(--font-ui); font-size: 13px;
  font-weight: 700; letter-spacing: 0.22em; color: #1a7a6e;
}
.footer-column a, .footer-column p {
  display: block; margin-bottom: 18px; color: rgb(82,97,96);
  font-family: var(--body); font-size: 15px; text-decoration: none;
}
.footer-column a:hover { color: #1a7a6e; }
.newsletter-form { margin-top: 22px; }
.newsletter-form input {
  width: 100%; height: 54px; box-sizing: border-box;
  border: 1px solid #d9dfe3; border-bottom: none;
  border-radius: 10px 10px 0 0; padding: 0 16px; outline: none;
  background: white; font-family: var(--font-ui);
  font-size: 15px; color: rgb(82,97,96);
}
.newsletter-form input::placeholder { color: rgb(82,97,96); }
.newsletter-form button {
  width: 100%; height: 50px; border: none; border-radius: 0 0 10px 10px;
  background: #1a7a6e; color: white; font-family: var(--font-ui);
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer; transition: background .2s;
}
.newsletter-form button:hover { background: #00574d; }
.footer-bottom {
  border-top: 1px solid #dde3e5; padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
}
.footer-bottom p, .footer-bottom a {
  color: #8c979b; font-family: var(--body);
  font-size: 14px; text-decoration: none;
}
.footer-bottom a:hover { color: #006b5f; }
.footer-bottom-links { display: flex; align-items: center; gap: 24px; }
.livro-reclamacoes-link {
  display: flex; align-items: center; gap: 8px; color: #8c979b;
  font-family: var(--body); font-size: 14px; text-decoration: none; transition: color 0.2s;
}
.livro-reclamacoes-link:hover { color: #006b5f !important; }
.livro-reclamacoes-link svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .footer { padding-top: 40px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 28px 18px; padding: 0 20px 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 14px; max-width: 100%; margin-bottom: 18px; }
  .footer-logo { width: 44px; margin-bottom: 18px; }
  .footer-column h4 { font-size: 11px; margin-bottom: 12px; }
  .footer-column a, .footer-column p { font-size: 13px; margin-bottom: 10px; }
  .newsletter-form input { height: 46px; font-size: 14px; }
  .newsletter-form button { height: 42px; font-size: 11px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
  .footer-bottom p, .footer-bottom a { font-size: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}
@media (max-width: 480px) {
  .footer-container { grid-template-columns: 1fr; }
}

