:root {
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Inter", "Segoe UI", Arial, sans-serif;
  --font-price: "Inter", "Segoe UI", Arial, sans-serif;
  --bg: #121212;
  --bg-2: #181818;
  --surface: #1f1f1f;
  --surface-2: #242424;
  --surface-3: #2a2a2a;
  --text: #f6f6f6;
  --muted: #b7b7b7;
  --line: rgba(56, 182, 107, 0.16);
  --green-900: #041e42;
  --green-800: #06336b;
  --green-700: #064180;
  --green-600: #007c32;
  --green-500: #008b38;
  --lime-400: #58ce8a;
  --lime-500: #38b66b;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  --container: 1280px;
  --brand-navy: #041e42;
  --brand-green: #007c32;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(6, 65, 128, 0.14), transparent 24%),
    linear-gradient(180deg, #141414 0%, #151515 48%, #111 100%);
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.home-page {
  color: #1b1b1b;
  background:
    radial-gradient(circle at top center, rgba(6, 65, 128, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 46%, #edf2f8 100%);
}

.catalog-page .container {
  width: min(100% - 24px, 1480px);
}

.catalog-page,
.about-page,
.tracking-page {
  color: #1b1b1b;
  background:
    radial-gradient(circle at top center, rgba(6, 65, 128, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 48%, #edf2f8 100%);
}

.brand-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.footer-logo {
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 124, 50, 0.12);
}

.catalog-page .site-header,
.about-page .site-header,
.tracking-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 124, 50, 0.12);
}

.home-page .desktop-nav a,
.home-page .header-link {
  color: #526176;
}

.catalog-page .desktop-nav a,
.catalog-page .header-link,
.about-page .desktop-nav a,
.about-page .header-link,
.tracking-page .desktop-nav a,
.tracking-page .header-link {
  color: #526176;
}

.home-page .desktop-nav a.active,
.home-page .desktop-nav a:hover,
.home-page .header-link:hover {
  color: var(--green-700);
  border-bottom-color: var(--green-700);
}

.catalog-page .desktop-nav a.active,
.catalog-page .desktop-nav a:hover,
.catalog-page .header-link:hover,
.about-page .desktop-nav a.active,
.about-page .desktop-nav a:hover,
.about-page .header-link:hover,
.tracking-page .desktop-nav a.active,
.tracking-page .desktop-nav a:hover,
.tracking-page .header-link:hover {
  color: var(--green-700);
  border-bottom-color: var(--green-700);
}

.home-page .header-button {
  border-color: var(--green-700);
  color: var(--green-700);
}

.home-page .header-button:hover {
  background: rgba(0, 124, 50, 0.06);
}

.catalog-page .header-button,
.about-page .header-button,
.tracking-page .header-button {
  border-color: var(--green-700);
  color: var(--green-700);
}

.catalog-page .header-button:hover,
.about-page .header-button:hover,
.tracking-page .header-button:hover {
  background: rgba(0, 124, 50, 0.06);
}

.header-button.is-active {
  color: #fff;
  background: linear-gradient(180deg, #008438 0%, #006d2c 100%);
  border-color: rgba(0, 124, 50, 0.22);
}

.header-button.is-active:hover {
  background: linear-gradient(180deg, #00943e 0%, #007c32 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(24, 24, 24, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(56, 182, 107, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 182, 107, 0.36);
  color: var(--lime-400);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-500);
}

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

.desktop-nav a {
  color: #9d9d9d;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--lime-500);
  border-bottom-color: var(--lime-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-link {
  color: #a8a8a8;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.25s ease;
}

.header-link:hover {
  color: var(--lime-500);
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(0, 124, 50, 0.18);
  border-radius: 14px;
  color: var(--green-700);
  background: rgba(0, 124, 50, 0.06);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.header-button:hover {
  transform: translateY(-1px);
  background: rgba(0, 124, 50, 0.1);
  border-color: rgba(0, 124, 50, 0.28);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(56, 182, 107, 0.16);
}

.home-page .hero {
  min-height: 740px;
  border-bottom-color: rgba(0, 124, 50, 0.1);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) brightness(0.65);
}

.home-page .hero-media img {
  filter: saturate(0.9) brightness(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.home-page .hero-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.78) 54%, rgba(245, 247, 250, 0.96) 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 18%, rgba(6, 65, 128, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.08) 0%, rgba(20, 20, 20, 0.52) 72%, rgba(20, 20, 20, 0.96) 100%);
}

.home-page .hero-gradient {
  background:
    radial-gradient(circle at 50% 24%, rgba(0, 132, 56, 0.18), transparent 24%),
    radial-gradient(circle at 50% 78%, rgba(0, 124, 50, 0.1), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 88px 0 108px;
}

.hero-badge {
  display: inline-flex;
  padding: 9px 18px;
  margin-bottom: 30px;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 107, 0.22);
  background: rgba(0, 124, 50, 0.28);
  color: var(--lime-400);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.home-page .hero-badge {
  border-color: rgba(0, 124, 50, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-700);
  box-shadow: 0 14px 32px rgba(0, 124, 50, 0.08);
}

.hero-instagram {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: min(100%, 430px);
  margin: 0 auto 28px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(4, 30, 66, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #041e42;
  box-shadow: 0 18px 45px rgba(4, 30, 66, 0.12);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-instagram:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 124, 50, 0.22);
  box-shadow: 0 22px 52px rgba(4, 30, 66, 0.16);
}

.hero-instagram__icon {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff7a00 0%, #e1306c 48%, #6f42c1 100%);
  box-shadow: 0 12px 24px rgba(225, 48, 108, 0.24);
}

.hero-instagram__icon::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 3px solid #fff;
  border-radius: 10px;
}

.hero-instagram__icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 8px;
  height: 8px;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 10px -10px 0 -4px #fff;
}

.hero-instagram small,
.hero-instagram strong {
  display: block;
}

.hero-instagram small {
  margin-bottom: 3px;
  color: #59677a;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-instagram strong {
  color: var(--green-700);
  font-size: 1.08rem;
  font-weight: 900;
}

.hero h1 {
  margin: 0 auto 20px;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: #fff;
}

.hero h1 span {
  color: var(--lime-500);
}

.home-page .hero h1 {
  max-width: 13ch;
  color: #041e42;
}

.home-page .hero h1 span {
  color: var(--green-600);
}

.hero p {
  margin: 0 auto 34px;
  max-width: 50rem;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.72;
  color: #c7c7c7;
}

.home-page .hero p {
  max-width: 56rem;
  color: #526176;
}

.hero-actions {
  display: flex;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.section-link:hover,
.whatsapp-btn:hover,
.more-button:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #008438 0%, #006d2c 100%);
  border: 1px solid rgba(0, 124, 50, 0.22);
  box-shadow: 0 14px 28px rgba(0, 124, 50, 0.16);
}

.home-page .button-primary {
  color: #fff;
  background: linear-gradient(180deg, #008438 0%, #006d2c 100%);
  border: 1px solid rgba(0, 124, 50, 0.22);
  box-shadow: 0 14px 28px rgba(0, 124, 50, 0.16);
}

.button-primary:hover {
  background: linear-gradient(180deg, #00943e 0%, #007c32 100%);
}

.button-secondary {
  color: #173118;
  background: #ffffff;
  border: 1px solid rgba(0, 124, 50, 0.14);
  box-shadow: 0 10px 22px rgba(39, 63, 43, 0.06);
}

.button-secondary:hover {
  background: #f6faf4;
}

.section {
  padding: 96px 0;
}

.section-catalogo {
  background: #151515;
}

.home-page .section-catalogo {
  background: transparent;
}

.section-results {
  padding-top: 34px;
  background:
    radial-gradient(circle at top center, rgba(56, 182, 107, 0.04), transparent 20%),
    linear-gradient(180deg, #161616 0%, #141414 100%);
}

.catalog-page .section-results {
  background: transparent;
}

.about-hero {
  padding: 140px 0 128px;
  background:
    radial-gradient(circle at top center, rgba(240, 191, 19, 0.04), transparent 30%),
    linear-gradient(180deg, #161616 0%, #151515 100%);
  border-bottom: 1px solid rgba(240, 191, 19, 0.18);
}

.about-page .about-hero {
  background:
    radial-gradient(circle at top center, rgba(0, 132, 56, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-bottom: 1px solid rgba(0, 124, 50, 0.1);
}

.about-hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-copy h1 {
  margin: 0 auto;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.5vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #f7f1df;
}

.about-hero-copy h1 span {
  color: #ffc107;
}

.about-hero-copy p {
  margin: 22px auto 0;
  max-width: 54rem;
  color: #ccbfa4;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.about-page .about-hero-copy h1 {
  color: #041e42;
}

.about-page .about-hero-copy h1 span {
  color: var(--green-600);
}

.about-page .about-hero-copy p {
  color: #5a685b;
}

.about-features {
  padding: 70px 0 82px;
  background: #171717;
  border-top: 1px solid rgba(255, 193, 7, 0.12);
  border-bottom: 1px solid rgba(255, 193, 7, 0.12);
}

.about-page .about-features {
  background: #f4f7f1;
  border-top: 1px solid rgba(0, 124, 50, 0.08);
  border-bottom: 1px solid rgba(0, 124, 50, 0.08);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.about-feature {
  text-align: center;
  padding: 18px 10px 0;
}

.about-page .about-feature {
  padding: 18px 16px 0;
}

.about-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 193, 7, 0.16);
  color: #ffc107;
  font-size: 1.55rem;
  box-shadow: 0 0 0 1px rgba(255, 193, 7, 0.15) inset;
}

.about-feature-icon--muted {
  color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.about-feature h2 {
  margin: 0 0 16px;
  color: #f5efe0;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.about-page .about-feature h2 {
  color: #041e42;
}

.about-feature p {
  margin: 0 auto;
  max-width: 30ch;
  color: #cfbfaa;
  line-height: 1.7;
  font-size: 0.98rem;
}

.about-page .about-feature p {
  color: #5d6b5f;
}

.about-story {
  padding: 88px 0 96px;
  background: #151515;
}

.about-page .about-story {
  background: transparent;
}

.tracking-hero {
  padding: 110px 0 52px;
}

.tracking-hero__inner {
  max-width: 760px;
  text-align: center;
}

.tracking-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(0, 124, 50, 0.08);
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tracking-hero h1 {
  margin: 0 0 18px;
  color: #041e42;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.tracking-hero p {
  margin: 0 auto;
  max-width: 44rem;
  color: #5b6a5d;
  font-size: 1.08rem;
  line-height: 1.75;
}

.tracking-section {
  padding: 0 0 88px;
}

.tracking-access {
  padding: 92px 0 88px;
}

.tracking-access__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 28px;
  align-items: center;
}

.tracking-access__copy h1 {
  margin: 0 0 16px;
  color: #041e42;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.tracking-access__copy p {
  margin: 0;
  max-width: 42rem;
  color: #5b6a5d;
  font-size: 1.04rem;
  line-height: 1.75;
}

.tracking-access__card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 124, 50, 0.12);
  box-shadow: 0 20px 46px rgba(22, 48, 34, 0.08);
  padding: 28px;
}

.tracking-access__card h2 {
  margin: 0 0 18px;
  color: #041e42;
  font-family: var(--font-display);
  font-size: 2rem;
}

.tracking-login-form {
  display: grid;
  gap: 12px;
}

.tracking-login-form label {
  color: #27442e;
  font-weight: 800;
}

.tracking-login-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(0, 124, 50, 0.16);
  border-radius: 18px;
  padding: 0 18px;
  font: inherit;
  color: #041e42;
  background: #fff;
}

.tracking-login-form input:focus {
  outline: none;
  border-color: rgba(0, 124, 50, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 124, 50, 0.08);
}

.tracking-dashboard {
  padding: 0;
}

.tracking-dashboard__container {
  display: grid;
  gap: 0;
}

.tracking-dashboard__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px 18px;
  background: #edf1f5;
  border-bottom: 1px solid rgba(51, 71, 93, 0.08);
}

.tracking-breadcrumb {
  color: #697b90;
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: uppercase;
}

.tracking-breadcrumb strong {
  color: #1a2940;
  font-weight: 800;
}

.tracking-userbar {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1f2a37;
  font-size: 0.88rem;
  font-weight: 700;
}

.tracking-logout {
  display: none;
}

.tracking-dashboard__shell {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 92px);
  background: #edf1f5;
}

.tracking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: 0;
  background: #33475d;
  color: #fff;
  padding: 22px 18px 18px;
  min-height: 100%;
}

.tracking-sidebar__head h2 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tracking-sidebar__head p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.tracking-sidebar__nav {
  display: grid;
  gap: 8px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.tracking-sidebar__tab {
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  text-align: left;
  padding: 0 14px;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 180ms ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tracking-sidebar__tab::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  flex: 0 0 8px;
}

.tracking-sidebar__tab.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.tracking-sidebar__tab.is-active::before {
  background: #fff;
}

.tracking-sidebar__tab:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tracking-vehicle-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.tracking-vehicle-list::before {
  content: "VEÍCULOS";
  position: absolute;
  top: -1px;
  left: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0 14px 10px 14px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
}

.tracking-vehicle-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: transparent;
  padding: 14px 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.tracking-vehicle-card.is-active {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.tracking-vehicle-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
}

.tracking-vehicle-card__row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.tracking-vehicle-card__thumb {
  width: 34px;
  height: 32px;
  display: grid;
  place-items: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.tracking-vehicle-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tracking-vehicle-card__thumb span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tracking-vehicle-card__copy {
  min-width: 0;
}

.tracking-vehicle-card__copy strong,
.tracking-vehicle-card__copy span {
  display: block;
}

.tracking-vehicle-card__copy strong {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.tracking-vehicle-card__copy span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.tracking-vehicle-card__arrow {
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.45rem;
  line-height: 1;
}

.tracking-sidebar__empty,
.tracking-empty-box {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.tracking-main {
  display: grid;
  gap: 24px;
  padding: 24px 28px 40px;
  min-width: 0;
}

.tracking-panel {
  display: none;
}

.tracking-panel.is-active {
  display: grid;
  gap: 18px;
}

.tracking-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.92fr;
  gap: 24px;
}

.tracking-summary-card,
.tracking-alert-card {
  border-radius: 8px;
  background: #d3d5d7;
  padding: 16px 16px;
  min-height: 102px;
}

.tracking-summary-card__label,
.tracking-alert-card__label,
.tracking-map-card__eyebrow {
  display: block;
  color: #617183;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tracking-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.tracking-progress__bar {
  flex: 1;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.tracking-progress__fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background:
    repeating-linear-gradient(
      135deg,
      #2f74e9 0 18px,
      #4f8cff 18px 36px
    );
  animation: trackingBarShift 1.2s linear infinite;
}

@keyframes trackingBarShift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 72px 0;
  }
}

.tracking-alert-card {
  border: 1px solid rgba(245, 122, 148, 0.7);
  background: rgba(254, 240, 243, 0.62);
  animation: trackingAlertPulse 1.15s ease-in-out infinite;
}

@keyframes trackingAlertPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(241, 99, 120, 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(241, 99, 120, 0.08);
    transform: scale(1.01);
  }
}

.tracking-alert-card__body {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.tracking-alert-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 212, 218, 0.88);
  font-size: 1.45rem;
}

.tracking-alert-card strong {
  color: #4e5667;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tracking-map-card {
  border-radius: 8px;
  background: #ebe5da;
  border: 1px solid rgba(124, 129, 138, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 0;
  overflow: hidden;
}

.tracking-map-card__head {
  display: none;
}

.tracking-map-card__head h2 {
  margin: 10px 0 0;
  color: #041e42;
  font-family: var(--font-display);
  font-size: 2rem;
}

.tracking-map-card__meta {
  color: #617183;
  font-weight: 700;
}

.tracking-map {
  width: 100%;
  min-height: 720px;
  overflow: hidden;
}

.tracking-map .leaflet-control-zoom {
  border: 1px solid rgba(46, 55, 69, 0.12);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(31, 38, 48, 0.12);
}

.tracking-map .leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  color: #2a3542;
}

.tracking-map .leaflet-popup-content-wrapper,
.tracking-map .leaflet-popup-tip {
  background: rgba(38, 44, 52, 0.94);
  color: #fff;
}

.tracking-map-driver-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 4px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
  border: 3px solid #111827;
  overflow: hidden;
}

.tracking-map-driver-marker img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.tracking-map-driver-marker--fallback {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(180deg, #1f7f3d 0%, #041e42 100%);
}

.tracking-map-yard-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}

.tracking-map-destination-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #16a34a;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.28);
}

.tracking-driver-status {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: #4caf50;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.tracking-page.is-dashboard-mode {
  background: #eff3f6;
}

.tracking-page.is-dashboard-mode .site-header,
.tracking-page.is-dashboard-mode .site-footer,
.tracking-page.is-dashboard-mode .floating-whatsapp,
.tracking-page.is-dashboard-mode .mobile-nav {
  display: none;
}

.tracking-page.is-dashboard-mode main {
  padding: 0;
}

.tracking-page.is-dashboard-mode .container {
  max-width: 1580px;
  width: 100%;
  padding: 0;
}

.tracking-driver-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 24px;
  align-items: start;
}

.tracking-driver-photo {
  display: flex;
  justify-content: flex-end;
}

.tracking-driver-photo__image {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.tracking-driver-avatar {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #041e42 0%, #26492a 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.tracking-data-line {
  display: grid;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 124, 50, 0.1);
}

.tracking-data-line:last-child {
  border-bottom: 0;
}

.tracking-data-line span {
  color: #617183;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tracking-data-line strong {
  color: #203523;
  font-size: 1rem;
  line-height: 1.6;
}

.tracking-profile-grid {
  display: grid;
}

.tracking-profile-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.tracking-profile-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.tracking-profile-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #173822 0%, #31583c 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
}

.tracking-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tracking-profile-upload {
  min-height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: rgba(0, 124, 50, 0.08);
  border: 1px dashed rgba(0, 124, 50, 0.26);
  color: #1a4f2a;
  font-weight: 800;
  cursor: pointer;
}

.tracking-profile-vehicles {
  border-radius: 20px;
  background: rgba(244, 247, 243, 0.92);
  border: 1px solid rgba(0, 124, 50, 0.08);
  padding: 18px 18px 8px;
}

.tracking-profile-form {
  display: grid;
  gap: 18px;
}

.tracking-profile-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tracking-profile-field {
  display: grid;
  gap: 8px;
}

.tracking-profile-field--full {
  grid-column: 1 / -1;
}

.tracking-profile-field label {
  color: #617183;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tracking-profile-field input {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(0, 124, 50, 0.14);
  background: #fff;
  padding: 0 16px;
  color: #203523;
  font: inherit;
}

.tracking-profile-field input:focus {
  outline: none;
  border-color: rgba(0, 124, 50, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 124, 50, 0.08);
}

.tracking-profile-form__actions {
  display: flex;
  justify-content: flex-start;
}

.tracking-layout {
  display: grid;
  gap: 24px;
}

.tracking-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 124, 50, 0.12);
  box-shadow: 0 20px 46px rgba(22, 48, 34, 0.08);
  padding: 28px;
}

.tracking-card--result.hidden {
  display: none;
}

.tracking-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.tracking-card__head h2 {
  margin: 10px 0 0;
  color: #041e42;
  font-family: var(--font-display);
  font-size: 2rem;
}

.tracking-form {
  display: grid;
  gap: 12px;
}

.tracking-form label {
  color: #27442e;
  font-weight: 800;
}

.tracking-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.tracking-form input {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(0, 124, 50, 0.16);
  border-radius: 18px;
  padding: 0 18px;
  font: inherit;
  color: #041e42;
  background: #fff;
}

.tracking-form input:focus {
  outline: none;
  border-color: rgba(0, 124, 50, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 124, 50, 0.08);
}

.tracking-status {
  margin: 0;
  color: #335739;
  font-weight: 700;
}

.tracking-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(0, 124, 50, 0.1);
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tracking-info {
  border: 1px solid rgba(0, 124, 50, 0.1);
  border-radius: 18px;
  background: rgba(243, 248, 238, 0.88);
  padding: 18px;
}

.tracking-info span {
  display: block;
  color: #4f6653;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracking-info strong {
  display: block;
  margin-top: 8px;
  color: #041e42;
  font-size: 1rem;
  line-height: 1.55;
}

.tracking-notes {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(0, 124, 50, 0.06);
}

.tracking-notes h3 {
  margin: 0 0 10px;
  color: #041e42;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.tracking-notes p {
  margin: 0;
  color: #435745;
  line-height: 1.7;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.about-story-copy h2 {
  margin: 0 0 22px;
  max-width: 12ch;
  color: #f7f1df;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.3vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.about-page .about-story-copy h2 {
  color: #041e42;
}

.about-story-copy p {
  margin: 0 0 24px;
  color: #cdbfa9;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-page .about-story-copy p {
  color: #566556;
}

.about-story-media {
  justify-self: end;
}

.about-story-media img {
  width: min(100%, 610px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.about-page .site-footer {
  margin-top: 0;
}

.results-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filters-card {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 22px 22px 24px;
  border-radius: 18px;
  background: #202020;
  border: 1px solid rgba(240, 191, 19, 0.22);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.catalog-page .filters-card {
  background: #ffffff;
  border-color: rgba(0, 124, 50, 0.12);
  box-shadow: 0 18px 36px rgba(39, 63, 43, 0.08);
}

.filters-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filters-card__icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(240, 191, 19, 0.08);
  border: 1px solid rgba(240, 191, 19, 0.3);
  color: #f0bf13;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.filters-card__title h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.catalog-page .filters-card__title h2 {
  color: #1a2f1d;
}

.filters-divider,
.results-divider {
  height: 1px;
  margin: 18px 0 20px;
  background: rgba(255, 255, 255, 0.08);
}

.catalog-page .filters-divider,
.catalog-page .results-divider {
  background: rgba(0, 124, 50, 0.1);
}

.filters-label {
  display: block;
  margin: 0 0 10px;
  color: #d6d6d6;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-page .filters-label {
  color: #58705b;
}

.filters-search {
  position: relative;
  margin-bottom: 22px;
}

.filters-search__icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a7a7a7;
  font-size: 1rem;
  pointer-events: none;
}

.filters-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px 0 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #161616;
  color: #fff;
  outline: none;
  font: inherit;
}

.catalog-page .filters-search input {
  border-color: rgba(0, 124, 50, 0.12);
  background: #f7faf5;
  color: #041e42;
}

.catalog-page .filters-search input::placeholder {
  color: #819082;
}

.filters-search input::placeholder {
  color: #818181;
}

.category-list {
  display: grid;
  gap: 12px;
}

.category-pill {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #171717;
  color: #ededed;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 700;
}

.catalog-page .category-pill {
  border-color: rgba(0, 124, 50, 0.1);
  background: #f7faf5;
  color: #223523;
}

.category-pill--active {
  background: linear-gradient(180deg, #f0bf13 0%, #bb8a0b 100%);
  border-color: rgba(240, 191, 19, 0.55);
  color: #171717;
}

.results-main {
  min-width: 0;
}

.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.results-head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.catalog-page .results-head h2 {
  color: #18301b;
}

.results-count {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 11px;
  background: linear-gradient(180deg, #f0bf13 0%, #b6840b 100%);
  color: #1b1b1b;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-grid--results {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.3vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-head h2 span {
  color: var(--lime-400);
}

.home-page .section-head h2,
.home-page .section-head h2 span {
  color: #19311d;
}

.home-page .section-head p {
  color: #5f6a60;
}

.home-page .section-link {
  color: var(--green-700);
}

.section-head p {
  margin: 0;
  max-width: 44rem;
  color: #bcbcbc;
  line-height: 1.75;
}

.section-link {
  white-space: nowrap;
  color: var(--lime-500);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  border-radius: 18px;
  overflow: hidden;
  background: #232323;
  border: 1px solid rgba(56, 182, 107, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.catalog-page .product-card,
.about-page .product-card {
  background: #ffffff;
  border-color: rgba(0, 124, 50, 0.12);
  box-shadow: 0 18px 36px rgba(39, 63, 43, 0.1);
}

.home-page .product-card {
  background: #ffffff;
  border-color: rgba(0, 124, 50, 0.12);
  box-shadow: 0 18px 36px rgba(39, 63, 43, 0.1);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.catalog-page .product-media,
.about-page .product-media {
  background: #e9efe6;
}

.home-page .product-media {
  background: #e9efe6;
}

.product-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(20, 20, 20, 0.9);
  color: var(--lime-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.home-page .product-tag {
  background: rgba(20, 20, 20, 0.86);
  color: #58ce8a;
}

.favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.85);
  color: #d5d5d5;
  font-size: 1rem;
}

.catalog-page .favorite-btn,
.about-page .favorite-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #415341;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.home-page .favorite-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #415341;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.photo-count {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.86);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

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

.product-body h3 {
  margin: 0;
  min-height: 64px;
  display: flex;
  align-items: flex-end;
  font-family: var(--font-display);
  font-size: clamp(0.96rem, 0.72rem + 0.45vw, 1.02rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.catalog-page .product-body h3,
.about-page .product-body h3 {
  color: #213123;
}

.home-page .product-body h3 {
  color: #213123;
}

.product-divider {
  height: 1px;
  margin: 16px 0 18px;
  background: rgba(56, 182, 107, 0.16);
}

.catalog-page .product-divider,
.about-page .product-divider {
  background: rgba(0, 124, 50, 0.12);
}

.home-page .product-divider {
  background: rgba(0, 124, 50, 0.12);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price-block strong {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-price);
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.catalog-page .price-block strong,
.about-page .price-block strong {
  color: #173118;
}

.home-page .price-block strong {
  color: #173118;
}

.price-block strong::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 28px;
  background: #f0bf13;
  border-radius: 2px;
}

.catalog-page .price-block strong::before,
.about-page .price-block strong::before {
  background: var(--green-600);
}

.home-page .price-block strong::before {
  background: var(--green-600);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #423313;
  color: #f0bf13;
  border: 0;
  font-weight: 900;
  box-shadow: none;
  position: relative;
  font-size: 0;
}

.catalog-page .whatsapp-btn,
.about-page .whatsapp-btn {
  background: rgba(0, 124, 50, 0.1);
  color: var(--green-700);
}

.catalog-page .whatsapp-btn::before,
.about-page .whatsapp-btn::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 14.1a6.7 6.7 0 0 1-6.7 6.7H9.1L4 23l1.7-4.4A6.7 6.7 0 0 1 1.3 11.9V11a6.7 6.7 0 0 1 6.7-6.7h5.3A6.7 6.7 0 0 1 20 11v3.1Z' stroke='%230d5b2f' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 8.8c-.3 0-.6.1-.8.4-.7.8-1 1.9-.7 3 .6 2.2 2.4 4 4.6 4.6 1.1.3 2.2 0 3-.7.2-.2.4-.5.4-.8 0-.2-.1-.4-.2-.5l-1.6-.8c-.2-.1-.5-.1-.7.1l-.6.6c-.1.1-.3.2-.5.1-.8-.3-1.9-1.4-2.2-2.2-.1-.2 0-.4.1-.5l.6-.6c.2-.2.2-.5.1-.7l-.8-1.6c-.1-.1-.2-.2-.4-.2Z' fill='%230d5b2f'/%3E%3C/svg%3E");
}

.home-page .whatsapp-btn {
  background: rgba(0, 124, 50, 0.1);
  color: var(--green-700);
}

.home-page .whatsapp-btn::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 14.1a6.7 6.7 0 0 1-6.7 6.7H9.1L4 23l1.7-4.4A6.7 6.7 0 0 1 1.3 11.9V11a6.7 6.7 0 0 1 6.7-6.7h5.3A6.7 6.7 0 0 1 20 11v3.1Z' stroke='%230d5b2f' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 8.8c-.3 0-.6.1-.8.4-.7.8-1 1.9-.7 3 .6 2.2 2.4 4 4.6 4.6 1.1.3 2.2 0 3-.7.2-.2.4-.5.4-.8 0-.2-.1-.4-.2-.5l-1.6-.8c-.2-.1-.5-.1-.7.1l-.6.6c-.1.1-.3.2-.5.1-.8-.3-1.9-1.4-2.2-2.2-.1-.2 0-.4.1-.5l.6-.6c.2-.2.2-.5.1-.7l-.8-1.6c-.1-.1-.2-.2-.4-.2Z' fill='%230d5b2f'/%3E%3C/svg%3E");
}

.whatsapp-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 14.1a6.7 6.7 0 0 1-6.7 6.7H9.1L4 23l1.7-4.4A6.7 6.7 0 0 1 1.3 11.9V11a6.7 6.7 0 0 1 6.7-6.7h5.3A6.7 6.7 0 0 1 20 11v3.1Z' stroke='%230d5b2f' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 8.8c-.3 0-.6.1-.8.4-.7.8-1 1.9-.7 3 .6 2.2 2.4 4 4.6 4.6 1.1.3 2.2 0 3-.7.2-.2.4-.5.4-.8 0-.2-.1-.4-.2-.5l-1.6-.8c-.2-.1-.5-.1-.7.1l-.6.6c-.1.1-.3.2-.5.1-.8-.3-1.9-1.4-2.2-2.2-.1-.2 0-.4.1-.5l.6-.6c.2-.2.2-.5.1-.7l-.8-1.6c-.1-.1-.2-.2-.4-.2Z' fill='%230d5b2f'/%3E%3C/svg%3E");
  position: absolute;
  inset: 0;
  margin: auto;
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  background: #2b2b2b;
  color: #f4f4f4;
  font-weight: 800;
  font-size: 0.95rem;
}

.home-page .more-button {
  background: #2f3d30;
  color: #fff;
}

.site-footer {
  margin-top: 42px;
  padding: 64px 0 92px;
  background: #ffffff;
  color: #233b58;
  border-top: 1px solid rgba(0, 124, 50, 0.1);
}

.catalog-page .site-footer,
.about-page .site-footer {
  margin-top: 84px;
  background: #ffffff;
  color: #233b58;
  border-top: 1px solid rgba(0, 124, 50, 0.1);
}

.home-page .site-footer {
  margin-top: 84px;
  background: #ffffff;
  color: #233b58;
  border-top: 1px solid rgba(0, 124, 50, 0.1);
}

.tracking-page .site-footer {
  margin-top: 84px;
  background: #ffffff;
  color: #233b58;
  border-top: 1px solid rgba(0, 124, 50, 0.1);
}

.register-page,
.login-page {
  background: #f8faf6;
  color: #213123;
}

.register-page .site-header,
.login-page .site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 124, 50, 0.08);
}

.register-page .desktop-nav a,
.register-page .header-link,
.login-page .desktop-nav a,
.login-page .header-link {
  color: #4e6150;
}

.register-page .site-footer,
.login-page .site-footer {
  margin-top: 84px;
  background: #ffffff;
  color: #233b58;
  border-top: 1px solid rgba(0, 124, 50, 0.1);
}

.register-page .site-footer p,
.register-page .site-footer li,
.register-page .site-footer a,
.register-page .footer-bottom p,
.login-page .site-footer p,
.login-page .site-footer li,
.login-page .site-footer a,
.login-page .footer-bottom p {
  color: #5b695d;
}

.register-page .site-footer h3,
.login-page .site-footer h3 {
  color: var(--green-700);
}

.register-page .social-row a,
.register-page .footer-bottom,
.login-page .social-row a,
.login-page .footer-bottom {
  border-color: rgba(0, 124, 50, 0.12);
}

.register-section {
  padding: 72px 0 36px;
}

.register-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
}

.register-copy {
  padding-top: 24px;
}

.register-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 124, 50, 0.1);
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.register-copy h1 {
  margin: 18px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: #19311c;
}

.register-copy p {
  margin: 0;
  color: #617064;
  line-height: 1.8;
  max-width: 34rem;
}

.register-card {
  background: #ffffff;
  border: 1px solid rgba(0, 124, 50, 0.12);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(39, 63, 43, 0.08);
}

.register-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.register-form--single {
  grid-template-columns: 1fr;
}

.form-field {
  display: grid;
  gap: 10px;
}

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

.form-field label {
  color: #233b58;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input {
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(0, 124, 50, 0.16);
  background: #f8fbf6;
  padding: 0 16px;
  color: #173118;
  font-size: 0.98rem;
  outline: none;
}

.form-field input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(0, 124, 50, 0.08);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--green-700);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
}

.form-actions .button {
  min-width: 240px;
}

.account-summary {
  border-top: 1px solid rgba(0, 124, 50, 0.12);
  margin-top: 28px;
  padding-top: 28px;
}

.account-summary__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.account-summary__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: #19311c;
}

.account-summary__logout {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 124, 50, 0.12);
  background: #f5f8f2;
  color: #18311b;
  font-weight: 700;
}

.account-summary__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.account-summary__grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #f8fbf6;
  border: 1px solid rgba(0, 124, 50, 0.08);
}

.account-summary__grid span {
  color: #6d7d70;
  font-size: 0.84rem;
  font-weight: 600;
}

.account-summary__grid strong {
  color: #18311b;
  font-size: 0.96rem;
  line-height: 1.5;
}

.detail-page {
  background: #f8faf6;
  color: #213123;
}

.detail-page .site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 124, 50, 0.08);
}

.detail-page .desktop-nav a,
.detail-page .header-link {
  color: #4e6150;
}

.detail-page .desktop-nav a.active {
  color: var(--green-700);
}

.detail-page .site-footer {
  margin-top: 84px;
  background: #ffffff;
  color: #233b58;
  border-top: 1px solid rgba(0, 124, 50, 0.1);
}

.detail-page .site-footer p,
.detail-page .site-footer li,
.detail-page .site-footer a,
.detail-page .footer-bottom p {
  color: #5b695d;
}

.detail-page .site-footer h3 {
  color: var(--green-700);
}

.detail-page .social-row a,
.detail-page .footer-bottom {
  border-color: rgba(0, 124, 50, 0.12);
}

.detail-page .footer-name {
  color: var(--green-700);
}

.detail-page .product-card {
  background: #ffffff;
  border-color: rgba(0, 124, 50, 0.12);
  box-shadow: 0 18px 36px rgba(39, 63, 43, 0.1);
}

.detail-page .product-media {
  background: #e9efe6;
}

.detail-page .favorite-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #415341;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.detail-page .product-body h3,
.detail-page .price-block strong {
  color: #173118;
}

.detail-page .product-divider {
  background: rgba(0, 124, 50, 0.12);
}

.detail-page .price-block strong::before {
  background: var(--green-600);
}

.detail-page .whatsapp-btn {
  background: rgba(0, 124, 50, 0.1);
  color: var(--green-700);
}

.detail-page .whatsapp-btn::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 14.1a6.7 6.7 0 0 1-6.7 6.7H9.1L4 23l1.7-4.4A6.7 6.7 0 0 1 1.3 11.9V11a6.7 6.7 0 0 1 6.7-6.7h5.3A6.7 6.7 0 0 1 20 11v3.1Z' stroke='%230d5b2f' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 8.8c-.3 0-.6.1-.8.4-.7.8-1 1.9-.7 3 .6 2.2 2.4 4 4.6 4.6 1.1.3 2.2 0 3-.7.2-.2.4-.5.4-.8 0-.2-.1-.4-.2-.5l-1.6-.8c-.2-.1-.5-.1-.7.1l-.6.6c-.1.1-.3.2-.5.1-.8-.3-1.9-1.4-2.2-2.2-.1-.2 0-.4.1-.5l.6-.6c.2-.2.2-.5.1-.7l-.8-1.6c-.1-.1-.2-.2-.4-.2Z' fill='%230d5b2f'/%3E%3C/svg%3E");
}

.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
  font-size: 0.92rem;
  color: #6d7b6f;
}

.detail-breadcrumb a {
  color: #58705b;
}

.detail-breadcrumb strong {
  color: #1a311d;
}

.detail-section {
  padding-top: 34px;
}

.detail-shell {
  border: 1px solid rgba(0, 124, 50, 0.16);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 24px 52px rgba(39, 63, 43, 0.08);
  overflow: hidden;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.9fr);
  gap: 0;
  align-items: start;
}

.detail-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 124, 50, 0.11);
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(39, 63, 43, 0.08);
}

.detail-gallery {
  padding: 32px;
  min-height: 720px;
}

.detail-summary {
  padding: 48px 46px;
  min-height: 720px;
  border-left: 1px solid rgba(0, 124, 50, 0.12);
}

.detail-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #edf2f8;
  aspect-ratio: 1.02 / 0.76;
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-media-actions {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.detail-media-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #214225;
  font-size: 1.3rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.detail-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: #edf2f8;
  cursor: pointer;
}

.detail-thumb--active {
  border-color: var(--green-600);
}

.detail-thumb img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-summary {
  display: flex;
  flex-direction: column;
}

.detail-summary__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.detail-badge,
.detail-rating {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-badge {
  background: rgba(0, 124, 50, 0.12);
  color: var(--green-700);
  border-radius: 6px;
}

.detail-rating {
  background: #ffffff;
  color: var(--green-700);
  border: 1px solid rgba(0, 124, 50, 0.18);
  text-transform: none;
  letter-spacing: 0;
}

.detail-rating small {
  margin-left: 6px;
  color: #728173;
  font-size: 0.95em;
}

.detail-summary h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.06;
  text-transform: uppercase;
  color: #19331d;
}

.detail-location {
  margin: 14px 0 22px;
  color: #667469;
  font-weight: 600;
}

.detail-location strong {
  color: #18311b;
}

.detail-price-card {
  padding: 28px 28px 28px 30px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf4 100%);
  border: 1px solid rgba(0, 124, 50, 0.12);
  border-left: 8px solid var(--green-600);
}

.detail-price-card span,
.detail-price-card small {
  display: block;
}

.detail-price-card span {
  margin-bottom: 10px;
  color: #6a776b;
  font-size: 0.92rem;
}

.detail-price-card strong {
  font-family: var(--font-price);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  color: var(--green-700);
  font-variant-numeric: tabular-nums;
}

.detail-price-card small {
  margin-top: 10px;
  color: #6d7d70;
  max-width: 28ch;
  line-height: 1.45;
}

.detail-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.detail-benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 124, 50, 0.08);
}

.detail-benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 124, 50, 0.1);
  color: var(--green-700);
  font-size: 1.4rem;
}

.detail-benefit-card strong,
.detail-benefit-card small {
  display: block;
}

.detail-benefit-card strong {
  margin-bottom: 4px;
  color: #18311b;
  font-size: 1rem;
}

.detail-benefit-card small {
  color: #728174;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 42px;
}

.detail-actions .button {
  width: 100%;
  justify-content: center;
  min-height: 64px;
  border-radius: 18px;
  font-size: 1rem;
}

.detail-page .detail-actions .button-primary {
  background: linear-gradient(180deg, #008438 0%, #006d2c 100%);
  border-color: rgba(0, 124, 50, 0.22);
  color: #fff;
}

.detail-page .detail-actions .button-secondary {
  background: #ffffff;
  border: 1px solid rgba(0, 124, 50, 0.12);
  color: #18311b;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 30px;
  margin-top: 30px;
}

.detail-panel {
  padding: 28px;
}

.detail-panel__head {
  margin-bottom: 18px;
}

.detail-panel__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  color: var(--green-700);
}

.detail-panel p {
  color: #5e6c60;
  line-height: 1.8;
}

.detail-description-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #5f6d61;
  font-size: 1rem;
  line-height: 1.45;
}

.detail-description-list li span {
  color: #2d4631;
}

.seller-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.seller-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #63b95f 0%, #1a7337 100%);
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 800;
}

.seller-headline strong {
  display: block;
  margin-bottom: 4px;
  color: #19311c;
  font-size: 1.15rem;
}

.seller-headline p {
  margin: 0;
  color: #728174;
}

.seller-stats {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.seller-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #5d6b5f;
}

.seller-stat strong {
  color: #173118;
}

.seller-profile-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  margin-top: 34px;
  border-radius: 0;
  background: #f5f8f2;
  border: 1px solid rgba(0, 124, 50, 0.12);
  color: #18311b;
  font-weight: 800;
}

.detail-related {
  padding-top: 8px;
}

.detail-related .section-head h2 span {
  color: var(--green-700);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 36px;
}

.footer-name {
  font-size: 1.55rem;
  color: #fff;
}

.site-footer p {
  color: #afc0e4;
  line-height: 1.8;
}

.catalog-page .site-footer p,
.catalog-page .site-footer li,
.catalog-page .site-footer a,
.catalog-page .footer-bottom p,
.about-page .site-footer p,
.about-page .site-footer li,
.about-page .site-footer a,
.about-page .footer-bottom p {
  color: #5b695d;
}

.catalog-page .site-footer h3,
.about-page .site-footer h3 {
  color: var(--green-700);
}

.catalog-page .social-row a,
.about-page .social-row a {
  background: rgba(0, 124, 50, 0.08);
  border-color: rgba(0, 124, 50, 0.08);
  color: var(--green-700);
}

.catalog-page .footer-bottom,
.about-page .footer-bottom {
  border-top-color: rgba(0, 124, 50, 0.1);
}

.home-page .site-footer p,
.home-page .site-footer li,
.home-page .site-footer a,
.home-page .footer-bottom p {
  color: #5b695d;
}

.tracking-page .site-footer p,
.tracking-page .site-footer li,
.tracking-page .site-footer a,
.tracking-page .footer-bottom p {
  color: #5b695d;
}

.home-page .site-footer h3 {
  color: var(--green-700);
}

.tracking-page .site-footer h3 {
  color: var(--green-700);
}

.home-page .social-row a {
  background: rgba(0, 124, 50, 0.08);
  border-color: rgba(0, 124, 50, 0.08);
  color: var(--green-700);
}

.tracking-page .social-row a {
  background: rgba(0, 124, 50, 0.08);
  border-color: rgba(0, 124, 50, 0.08);
  color: var(--green-700);
}

.invoice-page .site-footer p,
.invoice-page .site-footer li,
.invoice-page .site-footer a,
.invoice-page .footer-bottom p {
  color: #5b695d;
}

.invoice-page .site-footer h3 {
  color: var(--green-700);
}

.invoice-page .social-row a {
  background: rgba(0, 124, 50, 0.08);
  border-color: rgba(0, 124, 50, 0.08);
  color: var(--green-700);
}

.home-page .footer-bottom {
  border-top-color: rgba(0, 124, 50, 0.1);
}

.tracking-page .footer-bottom {
  border-top-color: rgba(0, 124, 50, 0.1);
}

.invoice-page .footer-bottom {
  border-top-color: rgba(0, 124, 50, 0.1);
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--lime-500);
  font-size: 1.1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.site-footer li,
.site-footer a {
  color: #5b695d;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--green-700);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 124, 50, 0.08);
  border: 1px solid rgba(0, 124, 50, 0.08);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 124, 50, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #5b695d;
  font-size: 0.82rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  font-size: 0;
}

.floating-whatsapp::before { content: none; }
.floating-whatsapp { background: transparent; }
.floating-whatsapp img { width: 100%; height: 100%; object-fit: contain; }

.mobile-nav {
  display: none;
}

.anchor-spacer {
  position: relative;
  top: -80px;
  width: 0;
  height: 0;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .catalog-page .container {
    width: min(100% - 32px, 1480px);
  }

  .about-features-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-layout {
    grid-template-columns: 1fr;
  }

  .filters-card {
    position: static;
  }

  .catalog-grid--results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }

  .hero-content {
    padding: 82px 0 102px;
  }

  .section-head {
    display: grid;
    gap: 18px;
    align-items: start;
  }

  .about-hero {
    padding: 112px 0 92px;
  }

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

  .catalog-grid--results {
    grid-template-columns: 1fr;
  }

  .home-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .results-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-hero,
  .detail-content-grid,
  .register-layout,
  .tracking-grid {
    grid-template-columns: 1fr;
  }

  .tracking-form__row,
  .tracking-card__head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .tracking-access__grid,
  .tracking-dashboard__shell,
  .tracking-summary-grid,
  .tracking-driver-grid {
    grid-template-columns: 1fr;
  }

  .tracking-dashboard__topbar {
    position: sticky;
    top: 0;
    z-index: 25;
    padding: 16px 16px 14px;
    background: rgba(237, 241, 245, 0.94);
    backdrop-filter: blur(18px);
  }

  .tracking-main {
    padding: 16px 16px 108px;
  }

  .tracking-sidebar {
    min-height: auto;
    border-radius: 0;
    padding: 14px 16px 16px;
    gap: 16px;
  }

  .tracking-sidebar__nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    margin-right: -2px;
    scrollbar-width: none;
  }

  .tracking-sidebar__nav::-webkit-scrollbar {
    display: none;
  }

  .tracking-sidebar__tab {
    flex: 0 0 auto;
    min-width: max-content;
    padding-inline: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }

  .tracking-vehicle-list {
    padding-top: 20px;
    display: grid;
    gap: 10px;
  }

  .tracking-map {
    min-height: 420px;
  }

  .detail-shell {
    border-radius: 24px;
  }

  .detail-summary {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(0, 124, 50, 0.12);
    padding: 32px 24px;
  }

  .detail-gallery {
    min-height: auto;
    padding: 24px;
  }

  .detail-actions,
  .detail-benefit-grid,
  .detail-thumbs {
    grid-template-columns: 1fr 1fr;
  }

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

  .section {
    padding: 76px 0;
  }

  .site-footer {
    padding-bottom: 128px;
  }

  .mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(8, 58, 31, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.16);
  }

  .mobile-nav-item {
    min-height: 64px;
    display: grid;
    place-items: center;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    padding: 10px 4px;
  }

  .mobile-nav-item.active {
    color: var(--green-700);
  }
}

.mobile-access-sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

.mobile-access-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 12, 0.42);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.mobile-access-sheet__panel {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(10, 28, 18, 0.28);
  padding: 14px 14px 18px;
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.mobile-access-sheet.is-open {
  pointer-events: auto;
}

.mobile-access-sheet.is-open .mobile-access-sheet__backdrop {
  opacity: 1;
}

.mobile-access-sheet.is-open .mobile-access-sheet__panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile-access-sheet__handle {
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: rgba(32, 53, 35, 0.16);
  margin: 0 auto 12px;
}

.mobile-access-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.mobile-access-sheet__header strong {
  color: #041e42;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-access-sheet__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(0, 124, 50, 0.08);
  color: #1a4f2a;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-access-sheet__body {
  display: grid;
  gap: 10px;
}

.mobile-access-sheet__link {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f5f8f3;
  border: 1px solid rgba(0, 124, 50, 0.08);
  color: #041e42;
}

.mobile-access-sheet__link span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-access-sheet__link small {
  color: #617183;
  font-size: 0.78rem;
}

body.has-mobile-sheet-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .brand-name {
    font-size: 1.35rem;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(2.3rem, 10vw, 3.2rem);
    line-height: 1;
  }

  .home-page .hero h1 {
    max-width: 15ch;
  }

  .hero-actions {
    flex-direction: column;
  }

  .register-form {
    grid-template-columns: 1fr;
  }

  .account-summary__grid {
    grid-template-columns: 1fr;
  }

  .detail-actions,
  .detail-benefit-grid,
  .detail-thumbs {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .tracking-dashboard__topbar {
    align-items: flex-start;
    gap: 10px;
  }

  .tracking-breadcrumb {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .tracking-userbar {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8rem;
  }

  .tracking-sidebar {
    gap: 18px;
    border-radius: 0;
  }

  .tracking-dashboard__shell {
    background:
      linear-gradient(180deg, #33475d 0, #33475d 176px, #edf1f5 176px, #edf1f5 100%);
  }

  .tracking-sidebar__head h2 {
    font-size: 1rem;
  }

  .tracking-sidebar__head p {
    font-size: 0.82rem;
  }

  .tracking-sidebar__tab {
    min-height: 44px;
    font-size: 0.94rem;
  }

  .tracking-profile-layout,
  .tracking-profile-form__grid {
    grid-template-columns: 1fr;
  }

  .tracking-profile-aside {
    gap: 14px;
  }

  .tracking-profile-avatar {
    max-width: 180px;
  }

  .tracking-profile-form__actions {
    justify-content: stretch;
  }

  .mobile-access-sheet__panel {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .tracking-summary-card,
  .tracking-alert-card,
  .tracking-map-card,
  .tracking-card {
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(34, 52, 38, 0.08);
  }

  .tracking-summary-card,
  .tracking-alert-card {
    padding: 18px;
  }

  .tracking-map-card__head,
  .tracking-card {
    padding-inline: 18px;
  }

  .tracking-map-card__head {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .tracking-vehicle-card {
    padding: 13px 12px;
    border-radius: 18px;
  }

  .tracking-vehicle-card__row {
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .tracking-vehicle-card__copy strong {
    font-size: 0.76rem;
  }

  .tracking-vehicle-card__copy span {
    font-size: 0.6rem;
  }

  .tracking-map {
    min-height: 320px;
  }

  .product-body {
    padding: 16px 16px 18px;
  }

  .product-body h3 {
    min-height: auto;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .product-card .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card .price-block {
    width: 100%;
    min-width: 0;
  }

  .product-card .price-block strong {
    width: 100%;
    min-width: 0;
    gap: 10px;
    font-size: clamp(0.92rem, 3.8vw, 1rem);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    flex-wrap: wrap;
  }

  .product-card .price-block strong::before {
    flex-shrink: 0;
    height: 24px;
  }

  .home-page .product-media__placeholder {
    min-height: 170px;
    font-size: 0.86rem;
    text-align: center;
    padding: 12px;
  }

  .product-card .whatsapp-btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 84px;
  }
}

.hidden {
  display: none !important;
}

.admin-page {
  background:
    radial-gradient(circle at top left, rgba(43, 146, 73, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbf4 0%, #eef4e8 100%);
  color: #041e42;
}

.admin-shell {
  width: 100%;
  min-height: 100vh;
}

.admin-login__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.admin-login__brand img {
  height: 44px;
  width: auto;
}

.admin-login__brand span,
.admin-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #1f7f3d;
}

.admin-login__card,
.admin-card,
.admin-stat {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 127, 61, 0.12);
  box-shadow: 0 22px 54px rgba(27, 53, 33, 0.08);
  backdrop-filter: blur(18px);
}

.admin-login__card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  border-radius: 28px;
  padding: 34px;
}

.admin-login__copy h1,
.admin-topbar h1,
.admin-card__head h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.admin-login__copy h1,
.admin-topbar h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.admin-login__copy p,
.admin-topbar p {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(22, 48, 34, 0.72);
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form label,
.admin-checkboxes {
  display: grid;
  gap: 8px;
}

.admin-form label span,
.admin-checkboxes legend {
  font-size: 0.88rem;
  font-weight: 700;
  color: #224131;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid rgba(31, 127, 61, 0.16);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: #041e42;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: rgba(31, 127, 61, 0.48);
  box-shadow: 0 0 0 4px rgba(31, 127, 61, 0.1);
}

.admin-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #356348 50%),
    linear-gradient(135deg, #356348 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.admin-checkboxes {
  border: 1px solid rgba(31, 127, 61, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
}

.admin-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: rgba(22, 48, 34, 0.86);
}

.admin-checkboxes input {
  width: 16px;
  height: 16px;
}

.admin-form__full {
  grid-column: 1 / -1;
}

.admin-form__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-status {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f7f3d;
}

.admin-status.is-error {
  color: #b32424;
}

.admin-dashboard {
  min-height: 100vh;
}

.admin-layout {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 22px 18px 18px;
  background: #33475d;
  color: #fff;
}

.admin-sidebar__brand h2 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}

.admin-sidebar__nav {
  display: grid;
  gap: 8px;
}

.admin-content {
  background: #edf1f5;
  padding: 26px 28px 48px;
}

.admin-panel-copy {
  margin: 0 0 20px;
  color: rgba(22, 48, 34, 0.72);
  max-width: 780px;
}

.admin-topbar {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-topbar__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(22, 48, 34, 0.56);
}

.admin-topbar__menu {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(31, 127, 61, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(27, 53, 33, 0.08);
  cursor: pointer;
  flex: 0 0 auto;
}

.admin-topbar__menu span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #041e42;
}

.admin-layout {
  position: relative;
}

.admin-sidebar {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.admin-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 26, 37, 0.52);
  backdrop-filter: blur(4px);
  z-index: 35;
}

.admin-sidebar-backdrop.hidden {
  display: none;
}

body.admin-menu-open {
  overflow: hidden;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.admin-grid--stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 24px;
}

.admin-card,
.admin-stat {
  border-radius: 12px;
  padding: 24px;
}

.admin-card--wide {
  grid-column: 1 / -1;
}

.admin-card--welcome {
  margin-bottom: 22px;
}

.admin-card__head {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-card__head h2 {
  font-size: 1.55rem;
}

.admin-stat {
  display: grid;
  gap: 10px;
}

.admin-stat span {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(22, 48, 34, 0.66);
}

.admin-stat strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #041e42;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(31, 127, 61, 0.12);
  text-align: left;
  font-size: 0.94rem;
}

.admin-table th {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 48, 34, 0.72);
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-list-item,
.admin-empty {
  border: 1px solid rgba(31, 127, 61, 0.1);
  border-radius: 18px;
  background: rgba(243, 248, 238, 0.88);
  padding: 16px 18px;
}

.admin-list-item strong {
  display: block;
  font-weight: 800;
}

.admin-list-item span {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: #1f7f3d;
}

.admin-list-item__inline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-list-item__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.admin-list-item__avatar {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(31, 127, 61, 0.08);
  flex: 0 0 62px;
}

.admin-list-item__avatar--placeholder {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  background: linear-gradient(180deg, #1f7f3d 0%, #041e42 100%);
}

.admin-list-item p,
.admin-empty {
  margin: 8px 0 0;
  color: rgba(22, 48, 34, 0.72);
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 58, 31, 0.08);
  border-radius: 24px;
  background: #fff;
  color: rgba(22, 48, 34, 0.62);
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

.catalog-loading,
.product-media__placeholder,
.detail-main-image__placeholder {
  display: grid;
  place-items: center;
  color: #6d7b6e;
  background: linear-gradient(135deg, #edf2f8 0%, #e1e8dc 100%);
}

.catalog-loading {
  grid-column: 1 / -1;
  min-height: 220px;
  border: 1px dashed rgba(8, 58, 31, 0.12);
  border-radius: 24px;
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

.product-media__placeholder {
  width: 100%;
  height: 100%;
  min-height: 245px;
  font-weight: 700;
}

.detail-main-image__placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  font-weight: 700;
}

.detail-main-image__placeholder[hidden] {
  display: none !important;
}

.admin-tab {
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  padding: 0 14px;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: 180ms ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-tab__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

.admin-tab__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.admin-tab.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.admin-tab:hover {
  background: rgba(255, 255, 255, 0.08);
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.is-active {
  display: block;
}

.admin-sidebar__logout {
  margin-top: auto;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  padding: 0 14px;
}

.admin-sidebar__logout:hover {
  background: rgba(255, 255, 255, 0.08);
}

.admin-upload-note {
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(22, 48, 34, 0.68);
}

.admin-gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-gallery-preview__item,
.admin-catalog-card {
  border: 1px solid rgba(31, 127, 61, 0.12);
  border-radius: 20px;
  background: rgba(247, 250, 244, 0.95);
  overflow: hidden;
}

.admin-gallery-preview__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.admin-gallery-preview__item figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #224131;
}

.admin-gallery-preview__item {
  cursor: grab;
}

.admin-gallery-preview__item.is-dragging {
  opacity: 0.6;
}

.admin-gallery-preview__item.is-drop-target {
  border-color: rgba(31, 127, 61, 0.56);
  box-shadow: 0 0 0 3px rgba(31, 127, 61, 0.12);
}

.admin-gallery-preview__remove {
  border: 0;
  border-radius: 999px;
  background: rgba(176, 37, 37, 0.12);
  color: #9f1f1f;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 6px 10px;
  cursor: pointer;
}

.admin-gallery-preview__remove:hover {
  background: rgba(176, 37, 37, 0.18);
}

.admin-catalog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-catalog-card__image {
  background: rgba(31, 127, 61, 0.05);
}

.admin-catalog-card__image img,
.admin-catalog-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.admin-catalog-card__image img {
  object-fit: cover;
  display: block;
}

.admin-catalog-card__placeholder {
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(22, 48, 34, 0.52);
}

.admin-catalog-card__body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.admin-catalog-card__body span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1f7f3d;
}

.admin-catalog-card__body strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #041e42;
}

.admin-catalog-card__body p {
  margin: 0;
  color: rgba(22, 48, 34, 0.68);
}

.admin-catalog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-catalog-card__meta em,
.admin-catalog-card__meta small {
  font-style: normal;
}

.admin-catalog-card__meta em {
  font-family: var(--font-price);
  font-size: 1rem;
  font-weight: 800;
  color: #041e42;
}

.admin-catalog-card__meta small {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(22, 48, 34, 0.58);
}

.admin-catalog-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-table__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-table__actions .button {
  min-height: 40px;
  padding-inline: 14px;
}

.admin-card-action {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
}

.admin-card-action--danger {
  border: 1px solid rgba(176, 37, 37, 0.18);
  background: rgba(176, 37, 37, 0.08);
  color: #9f1f1f;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-card-action--danger:hover {
  background: rgba(176, 37, 37, 0.14);
}

.admin-modal-open {
  overflow: hidden;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-modal.hidden {
  display: none;
}

.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 26, 37, 0.56);
  backdrop-filter: blur(4px);
}

.admin-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(31, 127, 61, 0.12);
  box-shadow: 0 30px 60px rgba(18, 34, 22, 0.24);
  padding: 24px;
}

.admin-modal__dialog--compact {
  width: min(760px, 100%);
}

.admin-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-modal__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(31, 127, 61, 0.08);
  color: #041e42;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.admin-modal__close:hover {
  background: rgba(31, 127, 61, 0.14);
}

.admin-record-view {
  display: grid;
  gap: 12px;
}

.admin-record-view__line {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 127, 61, 0.12);
}

.admin-record-view__line:last-child {
  border-bottom: 0;
}

.admin-record-view__line span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 48, 34, 0.62);
}

.admin-record-view__line strong {
  color: #041e42;
  font-size: 1rem;
  line-height: 1.55;
}

.admin-select-note {
  margin: -6px 0 0;
  color: rgba(22, 48, 34, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-driver-preview {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(31, 127, 61, 0.08);
  display: grid;
  place-items: center;
  color: #234131;
  font-weight: 800;
}

.admin-driver-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-invoice-card {
  display: grid;
  gap: 12px;
}

.admin-invoice-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(22, 48, 34, 0.72);
  font-size: 0.92rem;
}

.admin-invoice-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-invoice-badge.is-pending {
  background: rgba(0, 124, 50, 0.1);
  color: var(--green-700);
}

.admin-invoice-badge.is-paid {
  background: rgba(31, 127, 61, 0.12);
  color: #064180;
}

.admin-invoice-badge.is-refunded {
  background: rgba(154, 105, 9, 0.12);
  color: #8d5e0a;
}

.admin-invoice-badge.is-failed {
  background: rgba(176, 37, 37, 0.12);
  color: #9f1f1f;
}

.invoice-page {
  color: #1b1b1b;
  background:
    radial-gradient(circle at top center, rgba(6, 65, 128, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 46%, #edf2f8 100%);
}

.invoice-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 124, 50, 0.12);
}

.invoice-page .desktop-nav a,
.invoice-page .header-link {
  color: #526176;
}

.invoice-page .desktop-nav a.active,
.invoice-page .desktop-nav a:hover,
.invoice-page .header-link:hover {
  color: var(--green-700);
  border-bottom-color: var(--green-700);
}

.invoice-page .header-button {
  border-color: var(--green-700);
  color: var(--green-700);
}

.invoice-page .header-button:hover {
  background: rgba(0, 124, 50, 0.06);
}

.invoice-hero {
  padding: 48px 0 88px;
}

.invoice-shell {
  width: min(100% - 24px, 1180px);
}

.invoice-loading,
.invoice-empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 28px;
  border: 1px solid rgba(0, 124, 50, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(22, 48, 34, 0.72);
  text-align: center;
  padding: 24px;
}

.invoice-card {
  display: grid;
  gap: 22px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(0, 124, 50, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(27, 53, 33, 0.08);
}

.invoice-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.invoice-card__head h1 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #041e42;
}

.invoice-card__head p {
  margin: 12px 0 0;
  color: rgba(22, 48, 34, 0.72);
}

.invoice-eyebrow {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
}

.invoice-status {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.invoice-status.is-pending {
  background: rgba(0, 124, 50, 0.1);
  color: var(--green-700);
}

.invoice-status.is-paid {
  background: rgba(31, 127, 61, 0.12);
  color: #064180;
}

.invoice-status.is-refunded {
  background: rgba(154, 105, 9, 0.12);
  color: #8d5e0a;
}

.invoice-status.is-failed {
  background: rgba(176, 37, 37, 0.12);
  color: #9f1f1f;
}

.invoice-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.invoice-summary-item {
  border: 1px solid rgba(0, 124, 50, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf4 100%);
  padding: 18px;
}

.invoice-summary-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22, 48, 34, 0.56);
}

.invoice-summary-item strong {
  color: #041e42;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.invoice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.invoice-panel {
  border: 1px solid rgba(0, 124, 50, 0.12);
  border-radius: 26px;
  background: #fff;
  padding: 22px;
}

.invoice-panel--side {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf4 100%);
}

.invoice-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.invoice-panel__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #041e42;
}

.invoice-qr {
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 22px;
  background: #f7fbf4;
  border: 1px solid rgba(0, 124, 50, 0.1);
}

.invoice-qr img {
  width: min(100%, 280px);
  border-radius: 18px;
}

.invoice-copy-group {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.invoice-copy-group label {
  font-size: 0.88rem;
  font-weight: 800;
  color: #224131;
}

.invoice-copy-group textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  border: 1px solid rgba(31, 127, 61, 0.16);
  border-radius: 18px;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  line-height: 1.55;
  color: #041e42;
}

.invoice-copy-group textarea:focus {
  outline: none;
  border-color: rgba(31, 127, 61, 0.48);
  box-shadow: 0 0 0 4px rgba(31, 127, 61, 0.1);
}

.invoice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.invoice-actions .button {
  min-height: 52px;
  padding-inline: 20px;
  border-radius: 16px;
}

.invoice-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.invoice-details div {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 124, 50, 0.1);
}

.invoice-details div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.invoice-details dt {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 48, 34, 0.56);
}

.invoice-details dd {
  margin: 0;
  color: #041e42;
  line-height: 1.5;
  word-break: break-word;
}

.invoice-note {
  margin: 18px 0 0;
  color: rgba(22, 48, 34, 0.72);
  line-height: 1.6;
}

.invoice-refresh {
  border: 1px solid rgba(0, 124, 50, 0.16);
  border-radius: 999px;
  background: rgba(0, 124, 50, 0.08);
  color: var(--green-700);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 40px;
  padding: 0 14px;
  cursor: pointer;
}

.invoice-refresh:hover {
  background: rgba(0, 124, 50, 0.12);
}

.admin-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.admin-subtab {
  min-height: 42px;
  border: 1px solid rgba(31, 127, 61, 0.16);
  border-radius: 999px;
  background: rgba(0, 124, 50, 0.06);
  color: var(--green-700);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 16px;
  cursor: pointer;
}

.admin-subtab.is-active {
  background: var(--green-700);
  color: #fff;
}

.admin-subtab:hover {
  background: rgba(0, 124, 50, 0.1);
}

.admin-contract-panel {
  display: none;
}

.admin-contract-panel.is-active {
  display: block;
}

.contract-page {
  color: #1b1b1b;
  background:
    radial-gradient(circle at top center, rgba(6, 65, 128, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 46%, #edf2f8 100%);
}

.contract-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 124, 50, 0.12);
}

.contract-page .desktop-nav a,
.contract-page .header-link {
  color: #526176;
}

.contract-page .desktop-nav a.active,
.contract-page .desktop-nav a:hover,
.contract-page .header-link:hover {
  color: var(--green-700);
  border-bottom-color: var(--green-700);
}

.contract-page .header-button {
  border-color: var(--green-700);
  color: var(--green-700);
}

.contract-page .header-button:hover {
  background: rgba(0, 124, 50, 0.06);
}

.contract-page .site-footer p,
.contract-page .site-footer li,
.contract-page .site-footer a,
.contract-page .footer-bottom p {
  color: #5b695d;
}

.contract-page .site-footer h3 {
  color: var(--green-700);
}

.contract-page .social-row a {
  background: rgba(0, 124, 50, 0.08);
  border-color: rgba(0, 124, 50, 0.08);
  color: var(--green-700);
}

.contract-page .footer-bottom {
  border-top-color: rgba(0, 124, 50, 0.1);
}

.contract-main {
  padding: 48px 0 88px;
}

.contract-shell {
  width: min(100% - 24px, 1280px);
}

.contract-status-card {
  margin-bottom: 20px;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 124, 50, 0.12);
  box-shadow: 0 24px 54px rgba(27, 53, 33, 0.08);
}

.contract-status-card h1 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  color: #041e42;
}

.contract-status-card p {
  margin: 12px 0 0;
  color: rgba(22, 48, 34, 0.72);
  max-width: 72ch;
}

.contract-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.contract-paper,
.contract-panel {
  border: 1px solid rgba(0, 124, 50, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(27, 53, 33, 0.08);
}

.contract-paper {
  padding: 28px;
}

.contract-panel {
  padding: 22px;
}

.contract-panel--side {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf4 100%);
}

.contract-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.contract-panel__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #041e42;
}

.contract-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contract-badge.is-pending {
  background: rgba(0, 124, 50, 0.1);
  color: var(--green-700);
}

.contract-badge.is-signed {
  background: rgba(31, 127, 61, 0.12);
  color: #064180;
}

.contract-details {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.contract-details div {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 124, 50, 0.1);
}

.contract-details div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contract-details dt {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 48, 34, 0.56);
}

.contract-details dd {
  margin: 0;
  color: #041e42;
  line-height: 1.5;
  word-break: break-word;
}

.contract-sign-form {
  display: grid;
  gap: 16px;
}

.contract-sign-options {
  border: 1px solid rgba(0, 124, 50, 0.12);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.contract-sign-options legend {
  padding: 0 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22, 48, 34, 0.72);
}

.contract-sign-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #041e42;
}

.contract-sign-options input {
  width: 16px;
  height: 16px;
}

.contract-note {
  margin: 0;
  color: rgba(22, 48, 34, 0.72);
  line-height: 1.6;
}

.contract-actions {
  display: grid;
  gap: 14px;
}

.contract-document {
  color: #161616;
  font-family: "Times New Roman", Georgia, serif;
  line-height: 1.58;
  font-size: 1rem;
  text-align: justify;
}

.contract-document h1,
.contract-document h2,
.contract-document strong {
  font-weight: 800;
}

.contract-document h1,
.contract-document h2 {
  text-align: left;
  text-wrap: balance;
}

.contract-document__header {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.contract-document__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contract-document__brand img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.contract-document__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: 0.12em;
  color: #041e42;
}

.contract-document__brand span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: rgba(22, 48, 34, 0.68);
}

.contract-document__meta {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 124, 50, 0.14);
}

.contract-eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.contract-lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.9;
  text-indent: 1.25cm;
}

.contract-section {
  margin-top: 18px;
}

.contract-section h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contract-section p {
  margin: 0 0 10px;
  text-indent: 1.25cm;
  line-height: 1.9;
}

.contract-section--signatures {
  margin-top: 28px;
}

.contract-place {
  margin-top: 18px;
}

.contract-signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.contract-signature {
  display: grid;
  gap: 10px;
  align-content: end;
  min-height: 180px;
}

.contract-signature__line {
  display: grid;
  align-items: end;
  min-height: 96px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 124, 50, 0.42);
  font-size: 1.8rem;
  color: #041e42;
}

.contract-signature__hash {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(22, 48, 34, 0.62);
  word-break: break-all;
}

.signature-style-cursive {
  font-family: "Segoe Script", "Brush Script MT", "Apple Chancery", cursive;
  font-weight: 400 !important;
  text-transform: none;
  letter-spacing: 0.01em;
}

.signature-style-hand {
  font-family: "Segoe Print", "Bradley Hand", "Snell Roundhand", cursive;
  font-weight: 400 !important;
  text-transform: none;
  letter-spacing: 0.01em;
  transform: rotate(-1deg);
}

.signature-style-abbrev-cursive {
  font-family: "Segoe Script", "Brush Script MT", "Apple Chancery", cursive;
  font-weight: 400 !important;
  text-transform: none;
  letter-spacing: 0.02em;
}

.contract-signature strong,
.contract-signature span {
  display: block;
}

.contract-signature strong {
  font-size: 0.92rem;
}

.contract-signature span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contract-sign-preview {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(0, 124, 50, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.contract-sign-preview__eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22, 48, 34, 0.72);
}

.contract-sign-preview__frame {
  display: grid;
  gap: 6px;
}

.contract-sign-preview__sample {
  font-size: 1.7rem;
  color: #041e42;
}

@media print {
  .site-header,
  .site-footer,
  .floating-whatsapp,
  .contract-panel--side,
  .contract-status-card,
  .contract-note,
  .contract-actions,
  .button,
  .contract-hero .invoice-eyebrow {
    display: none !important;
  }

  .contract-main,
  .contract-hero {
    padding: 0;
  }

  .contract-shell {
    width: 100%;
    max-width: none;
  }

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

  .contract-paper {
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .contract-document {
    font-size: 0.9rem;
  }

  .contract-signature-grid {
    page-break-inside: avoid;
  }
}

@media (max-width: 1080px) {
  .admin-layout,
  .admin-login__card,
  .admin-grid,
  .admin-grid--stats,
  .admin-form--grid,
  .contract-grid {
    grid-template-columns: 1fr;
  }

  .contract-signature-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    gap: 18px;
  }

  .admin-card__head,
  .admin-modal__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-gallery-preview,
  .admin-catalog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .invoice-summary-grid,
  .invoice-layout {
    grid-template-columns: 1fr;
  }

  .contract-main {
    padding-bottom: 390px;
  }

  .contract-hero {
    padding-bottom: 12px;
  }

  .contract-paper {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .contract-document {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .contract-document__brand {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .contract-document__brand img {
    width: 98px;
  }

  .contract-document__brand strong {
    font-size: 1.08rem;
  }

  .contract-document__brand span {
    letter-spacing: 0.2em;
  }

  .contract-lead,
  .contract-section p {
    text-indent: 0;
    line-height: 1.68;
    text-align: left;
  }

  .contract-section h2 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    line-height: 1.25;
  }

  .contract-document h1 {
    font-size: clamp(1.18rem, 6.2vw, 1.55rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
  }

  .contract-signature__line {
    min-height: 84px;
    font-size: 1.45rem;
  }

  .contract-signature__hash {
    font-size: 0.68rem;
  }

  .contract-panel--side {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    max-height: 46vh;
    overflow: auto;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 44px rgba(17, 28, 21, 0.22);
    backdrop-filter: blur(14px);
  }

  .contract-panel__head {
    margin-bottom: 12px;
  }

  .contract-details {
    margin-bottom: 14px;
  }

  .contract-sign-form {
    gap: 12px;
  }

  .contract-sign-options {
    padding: 14px;
    gap: 10px;
  }

  .contract-sign-options label {
    align-items: flex-start;
  }

  .contract-sign-options span {
    line-height: 1.35;
  }

  .contract-sign-preview {
    padding: 14px;
  }

  .contract-sign-preview__sample {
    font-size: 1.48rem;
  }

  .contract-sign-options legend {
    line-height: 1.3;
  }

  .contract-sign-options label {
    font-size: 0.95rem;
    gap: 8px;
  }

  .contract-sign-options input {
    margin-top: 2px;
    flex: 0 0 16px;
  }

  .contract-actions .button,
  .contract-sign-form .button {
    min-height: 48px;
  }
}

@media (max-width: 720px) {
  .admin-shell {
    width: 100%;
  }

  .admin-page {
    background:
      radial-gradient(circle at top left, rgba(43, 146, 73, 0.12), transparent 32%),
      linear-gradient(180deg, #f2f6ef 0%, #e8efe2 100%);
  }

  .admin-login__card,
  .admin-card,
  .admin-stat {
    border-radius: 24px;
    padding: 18px;
  }

  .admin-content {
    padding: 14px 14px 110px;
  }

  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 30;
    gap: 14px;
    padding: 14px 14px 12px;
    border-radius: 0 0 26px 26px;
    box-shadow: 0 16px 34px rgba(25, 40, 55, 0.22);
  }

  .admin-layout {
    min-height: 100vh;
  }

  .admin-sidebar__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .admin-sidebar__brand h2 {
    font-size: 1rem;
  }

  .admin-sidebar__nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .admin-sidebar__nav::-webkit-scrollbar {
    display: none;
  }

  .admin-tab {
    flex: 0 0 auto;
    min-height: 42px;
    min-width: max-content;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
  }

  .admin-tab__icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .admin-tab__icon svg {
    width: 16px;
    height: 16px;
  }

  .admin-sidebar__logout {
    min-height: 42px;
    width: 100%;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.94rem;
  }

  .admin-topbar {
    position: sticky;
    top: 128px;
    z-index: 20;
    margin: 0 -2px 14px;
    padding: 10px 4px 2px;
    background: linear-gradient(180deg, rgba(232, 239, 226, 0.95) 0%, rgba(232, 239, 226, 0.72) 72%, rgba(232, 239, 226, 0) 100%);
    backdrop-filter: blur(10px);
  }

  .admin-topbar h1 {
    margin-top: 0;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .admin-panel-copy {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .admin-card__head {
    gap: 12px;
  }

  .admin-card__head h2 {
    font-size: 1.24rem;
  }

  .admin-grid,
  .admin-grid--stats {
    gap: 16px;
  }

  .admin-grid--stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-stat strong {
    font-size: 1.7rem;
  }

  .admin-table-wrap {
    margin-inline: -4px;
    padding: 2px 4px 6px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.54);
  }

  .admin-table {
    min-width: 720px;
  }

  .admin-table th,
  .admin-table td {
    padding: 12px 10px;
    font-size: 0.88rem;
  }

  .admin-list-item,
  .admin-empty {
    border-radius: 20px;
    padding: 15px 16px;
  }

  .admin-list-item__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-catalog-card {
    border-radius: 24px;
  }

  .admin-catalog-card__body {
    padding: 14px;
  }

  .admin-form {
    gap: 14px;
  }

  .admin-form input,
  .admin-form textarea,
  .admin-form select {
    min-height: 50px;
    border-radius: 14px;
    padding: 13px 14px;
  }

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

  .admin-form__actions {
    gap: 12px;
  }

  .admin-modal {
    padding: 12px;
  }

  .admin-modal__dialog {
    width: min(100%, 560px);
    padding: 18px;
    max-height: calc(100vh - 24px);
    border-radius: 26px;
  }

  .admin-form__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-gallery-preview,
  .admin-catalog-list {
    grid-template-columns: 1fr;
  }

  .invoice-hero {
    padding: 24px 0 72px;
  }

  .invoice-card {
    padding: 18px;
    border-radius: 24px;
  }

  .invoice-card__head,
  .invoice-panel__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .invoice-summary-grid {
    gap: 12px;
  }

  .invoice-summary-item {
    padding: 16px;
    border-radius: 18px;
  }

  .invoice-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .invoice-copy-group textarea {
    min-height: 110px;
  }
}

@media (max-width: 520px) {
  .admin-login {
    padding: 20px 14px 32px;
  }

  .admin-login__brand {
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .admin-login__brand img {
    height: 38px;
  }

  .admin-login__brand span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .admin-login__card {
    padding: 18px;
    gap: 18px;
  }

  .admin-login__copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .admin-layout {
    background: #edf1f5;
  }

  .admin-sidebar {
    padding: 12px 12px 10px;
    border-radius: 0 0 22px 22px;
  }

  .admin-tab {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.88rem;
  }

  .admin-sidebar__logout {
    min-height: 40px;
  }

  .admin-topbar {
    top: 116px;
  }

  .admin-content {
    padding: 12px 12px 106px;
  }

  .admin-card,
  .admin-stat {
    border-radius: 22px;
    padding: 16px;
  }

  .admin-grid--stats {
    grid-template-columns: 1fr 1fr;
  }

  .admin-card__head h2 {
    font-size: 1.1rem;
  }

  .admin-record-view__line strong {
    font-size: 0.96rem;
  }

  .admin-modal {
    padding: 10px;
  }

  .admin-modal__dialog {
    padding: 16px;
    border-radius: 22px;
  }

  .admin-table {
    min-width: 640px;
  }
}

@media (max-width: 920px) {
  .admin-layout {
    display: block;
  }

  .admin-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    margin: 0 0 14px;
    padding: 12px 0 14px;
    background: linear-gradient(180deg, rgba(237, 241, 245, 0.98) 0%, rgba(237, 241, 245, 0.78) 82%, rgba(237, 241, 245, 0) 100%);
    backdrop-filter: blur(14px);
  }

  .admin-topbar__menu {
    display: inline-flex;
  }

  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 340px);
    max-width: 340px;
    transform: translateX(-104%);
    z-index: 40;
    border-radius: 0 28px 28px 0;
    overflow: auto;
    padding: 18px 14px 18px;
    box-shadow: 18px 0 48px rgba(15, 24, 20, 0.28);
  }

  .admin-dashboard.is-menu-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-dashboard.is-menu-open .admin-sidebar-backdrop {
    display: block;
  }

  .admin-sidebar__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .admin-sidebar__nav {
    display: grid;
    gap: 10px;
    margin-top: 4px;
  }

  .admin-tab {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    border-radius: 16px;
    padding-inline: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .admin-sidebar__logout {
    width: 100%;
    margin-top: 8px;
    min-height: 46px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .admin-content {
    padding: 0 12px 106px;
  }

  .admin-card__head,
  .admin-modal__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-grid,
  .admin-grid--stats {
    grid-template-columns: 1fr;
  }

  .admin-grid--stats {
    gap: 14px;
  }

  .admin-card,
  .admin-stat {
    padding: 18px;
    border-radius: 24px;
  }

  .admin-card__head h2 {
    font-size: 1.18rem;
  }

  .admin-table-wrap {
    margin-inline: -2px;
    padding: 2px 2px 6px;
  }

  .admin-table {
    min-width: 760px;
  }

  .admin-catalog-list,
  .admin-gallery-preview {
    grid-template-columns: 1fr;
  }

  .admin-login__card {
    grid-template-columns: 1fr;
  }
}

/* PRIME LEILÕES: shared brand and typography refinements. */
body { -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font-family: var(--font-body); }
h1, h2, h3 { letter-spacing: -0.025em; }
.brand { flex-shrink: 0; }
.brand-logo { background: #fff; border-radius: 4px; }
.footer-logo { background: #fff; border-radius: 4px; }
.home-page .hero { min-height: 660px; }
.home-page .hero-content { padding: 80px 0 88px; }
.home-page .hero h1 {
  max-width: 20ch;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.home-page .hero p { max-width: 660px; font-size: 1.0625rem; }
.home-page .hero-badge { letter-spacing: 0.08em; font-weight: 600; font-size: 0.7rem; }
.home-page .hero-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(245,247,250,.92));
}
.home-page .hero-gradient {
  background: radial-gradient(ellipse at 20% 30%, rgba(6,65,128,.09), transparent 60%);
}
.home-page .section-head h2 { color: var(--brand-navy); font-weight: 700; }
.home-page .section-head h2 span { color: var(--brand-green); }
.button-primary { font-weight: 600; letter-spacing: 0; }
.admin-sidebar { background: var(--brand-navy); }
:focus-visible { outline: 3px solid #2380cf; outline-offset: 4px; }
@media (max-width: 640px) {
  .brand-logo { height: 54px; }
  .home-page .hero { min-height: auto; }
  .home-page .hero-content { padding: 58px 0 64px; }
  .home-page .hero-badge { font-size: .6rem; padding: 9px 12px; }
  .home-page .hero p { font-size: .98rem; line-height: 1.7; }
}

/* Public storefront refresh and catalog finder. */
.home-page, .catalog-page, .about-page { background: #f5f7fa; }
.home-page .hero { min-height: 620px; background: #071f3b; }
.home-page .hero-overlay { background: linear-gradient(100deg, rgba(4,22,44,.98) 5%, rgba(4,22,44,.90) 50%, rgba(4,22,44,.70)); }
.home-page .hero-gradient { background: radial-gradient(ellipse at 40% 100%, rgba(0,124,90,.2), transparent 65%); }
.home-page .hero-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; text-align: left; padding: 64px 0; }
.home-page .hero h1 { color: #fff; font-size: clamp(2.5rem, 4.1vw, 4.15rem); margin: 0 0 24px; max-width: 18ch; }
.home-page .hero h1 span { color: #7de0a6; }
.home-page .hero-copy > p { color: #c0cedd; font-size: 1rem; max-width: 49ch; margin: 0 0 28px; line-height: 1.8; }
.home-page .hero-actions { justify-content: flex-start; }
.home-page .hero-actions .button { padding: 0; background: transparent; color: #fff; box-shadow: none; border: none; min-height: 36px; font-size: .9rem; }
.home-page .hero-instagram { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); color: #fff; box-shadow: none; border-radius: 12px; margin-bottom: 28px; }
.home-page .hero-instagram small { color: #c0cedd; font-size: .65rem; }
.home-page .hero-instagram strong { color: #fff; }
.home-search { background: #fff; color: #102b48; border: 1px solid #e3eaf0; border-radius: 20px; padding: 32px; box-shadow: 0 24px 60px #0003; min-width: 0; }
.home-search__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .59rem; font-weight: 700; letter-spacing: .09em; color: #007c32; }
.home-search__status { display: inline-flex; align-items: center; gap: 6px; color: #68778a; font-weight: 500; letter-spacing: 0; white-space: nowrap; }
.home-search__status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #008b38; box-shadow: 0 0 0 3px #e4f5ea; }
.home-search h2 { font-size: 1.7rem; margin: 20px 0 8px; line-height: 1.2; }
.home-page .home-search .home-search__intro { font-size: .83rem; color: #68778a; margin: 0 0 24px; }
.home-search label { display: block; margin: 20px 0 9px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #536477; }
.home-search select, .home-search input { width: 100%; min-width: 0; height: 52px; border: 1px solid #dbe3eb; border-radius: 8px; background: #f8fafc; color: #102b48; padding: 0 14px; font-size: .88rem; }
.home-search__input { position: relative; }
.home-search__input svg { position: absolute; width: 20px; height: 20px; top: 16px; left: 14px; color: #458169; pointer-events: none; }
.home-search__input input { padding-left: 43px; }
.home-search__submit { display: flex; justify-content: space-between; align-items: center; width: 100%; min-height: 54px; margin-top: 24px; padding: 14px 20px; border: 0; border-radius: 8px; background: #007c32; color: #fff; font-size: .9rem; font-weight: 600; cursor: pointer; transition: background .2s; }
.home-search__submit:hover { background: #006429; }
#homeSearchCount { font-size: .78rem; font-weight: 400; }
.home-search__all { display: block; text-align: center; font-size: .75rem; color: #596c80; margin-top: 18px; text-decoration: underline; text-underline-offset: 3px; }
.home-benefits { display: grid; grid-template-columns: repeat(3,1fr); padding-block: 28px; border-bottom: 1px solid #dce4ec; gap: 28px; }
.home-benefits > div { display: flex; align-items: center; gap: 16px; }
.home-benefits > div > span { display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; background: #e6efeb; color: #007c32; font-size: .75rem; font-weight: 700; }
.home-benefits p { margin: 0; color: #65758a; font-size: .75rem; line-height: 1.7; }
.home-benefits strong { display: block; color: #102b48; font-size: .85rem; }
:is(.home-page, .catalog-page, .about-page) .product-card { border: 1px solid #e0e6ed; border-radius: 16px; box-shadow: 0 4px 16px #102b4805; overflow: hidden; transition: transform .2s, box-shadow .2s; }
:is(.home-page, .catalog-page, .about-page) .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px #102b4812; }
:is(.home-page, .catalog-page) .product-body h3 { font-size: 1.02rem; line-height: 1.5; font-weight: 600; }
.home-page .section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -.04em; }
.catalog-page .filters-card { border: 1px solid #e0e6ed; border-radius: 16px; box-shadow: 0 4px 16px #102b4805; }
@media (max-width: 1000px) {
  .home-page .hero-content { gap: 32px; grid-template-columns: 1fr 1fr; }
  .home-search { padding: 24px; }
  .home-search__top { flex-wrap: wrap; }
}
@media (max-width: 700px) {
  .home-page .hero-content { grid-template-columns: 1fr; padding: 30px 0 36px; gap: 28px; }
  .home-page .hero h1 { font-size: clamp(2rem, 8vw, 3rem); max-width: 20ch; margin-bottom: 16px; }
  .home-page .hero-copy > p { font-size: .88rem; margin-bottom: 12px; }
  .home-page .hero-instagram { margin-bottom: 22px; padding: 10px 12px; }
  .home-page .hero-instagram small { font-size: .57rem; }
  .home-search { padding: 24px 20px; border-radius: 16px; }
  .home-search h2 { font-size: 1.5rem; }
  .home-benefits { grid-template-columns: 1fr; gap: 18px; padding-block: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  :is(.home-page, .catalog-page, .about-page) .product-card { transition: none; }
  :is(.home-page, .catalog-page, .about-page) .product-card:hover { transform: none; }
}
@media (max-width: 700px) {
  .home-page .hero-content { padding-top: 22px; gap: 20px; }
  .home-page .hero h1 { font-size: clamp(1.85rem, 7.5vw, 2.7rem); }
  .home-page .hero-copy > p { line-height: 1.6; margin-bottom: 0; }
  .home-page .hero-actions { display: none; }
  .home-page .hero-instagram { margin-bottom: 18px; }
  .home-page .home-search { padding-block: 20px; }
  .home-page .home-search h2 { margin-top: 16px; }
  .home-page .home-search .home-search__intro { margin-bottom: 16px; }
  .home-page .home-search label { margin-top: 16px; }
  .home-page .mobile-nav { background: #fff; border-top: 1px solid #dce4ec; box-shadow: 0 -4px 20px #102b4808; }
  .home-page .mobile-nav-item { color: #586a80; }
  .home-page .mobile-nav-item.active { color: #064180; }
}

/* WhatsApp image shared by vehicle cards. */
.product-card .whatsapp-btn::before { content: none; }
.product-card .whatsapp-btn { background: transparent; }
.product-card .whatsapp-btn img { width: 36px; height: 36px; object-fit: contain; }

/* Full-width finder beneath the home banner. */
.home-page .hero { min-height: 480px; }
.home-page .hero-content { display: block; padding: 48px 0 84px; }
.home-page .hero-copy { max-width: 760px; }
.home-search-section { position: relative; z-index: 2; margin-top: -36px; }
.home-search--wide { border-radius: 0; padding: 30px 28px 20px; box-shadow: 0 14px 30px #102b480d; }
.home-search--wide h2 { margin: 12px 0 20px; font-size: 1.45rem; font-weight: 800; letter-spacing: -.045em; }
.home-search__categories { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 17px; border-bottom: 1px solid #d9e1e4; }
.home-search__category { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; min-height: 34px; background: transparent; border: 1px solid transparent; border-radius: 4px; color: #687c8d; font-size: .72rem; font-weight: 600; cursor: pointer; }
.home-search__category svg { width: 17px; height: 17px; flex-shrink: 0; }
.home-search__category[aria-pressed="true"] { background: #edf5ef; border-color: #b8ddc4; color: #102b48; }
.home-search__category[aria-pressed="true"] svg { color: #007c32; }
.home-search__category:hover { background: #edf5ef; }
.home-search__fields { display: grid; grid-template-columns: 1.15fr 2fr auto; align-items: end; gap: 14px; }
.home-search--wide label { margin: 22px 0 9px; font-size: .58rem; letter-spacing: .12em; }
.home-search--wide select, .home-search--wide input { height: 49px; border-radius: 5px; background: #fafcfb; font-size: .75rem; }
.home-search--wide .home-search__submit { min-height: 49px; margin: 0; gap: 14px; border-radius: 6px; font-size: .76rem; box-shadow: 0 0 0 5px #e4f1e8, 0 5px 12px #007c3220; }
.home-search--wide .home-search__input svg { top: 14px; }
@media (max-width: 700px) {
  .home-page .hero { min-height: auto; }
  .home-page .hero-content { padding: 26px 0 60px; }
  .home-page .home-search--wide { padding: 24px 16px 20px; }
  .home-search--wide h2 { font-size: 1.3rem; }
  .home-search__categories { gap: 5px; }
  .home-search__category { padding: 8px; font-size: .68rem; }
  .home-search__fields { grid-template-columns: 1fr; gap: 0; }
  .home-search--wide .home-search__submit { margin-top: 16px; }
  .home-search--wide .home-search__top { font-size: .56rem; }
}

/* Participation notice. */
.edital-home-link { display: inline-block; margin-top: 16px; padding: 14px 18px; border: 1px solid #87b69d; border-radius: 8px; color: #fff; background: #ffffff0d; font-size: .82rem; line-height: 1.6; }
.edital-home-link:hover { background: #ffffff1c; }
.edital-main { max-width: 960px; padding-block: 40px 72px; }
.edital-back { color: #53677d; font-size: .85rem; }
.edital-heading { padding: 36px 0 28px; }
.edital-eyebrow { color: #007c32; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.edital-heading h1 { color: #041e42; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.15; margin: 14px 0; }
.edital-heading p { color: #596c80; line-height: 1.7; max-width: 65ch; }
.edital-document { padding: 40px; border: 1px solid #e0e6ed; border-radius: 16px; background: #fff; color: #3e5063; line-height: 1.85; }
.edital-document h2 { color: #041e42; font-size: 1.18rem; line-height: 1.4; margin-top: 30px; }
.edital-document li { padding-left: 4px; margin-bottom: 10px; }
.edital-document li::marker { color: #007c32; }
.edital-document ul { padding-left: 22px; }
.edital-notice { padding: 20px 24px; background: #fff8e8; border-left: 3px solid #c8952b; border-radius: 6px; }
.edital-notice h2 { margin: 0 0 6px; color: #805b12; }
.edital-notice p { margin: 0; }
.edital-payment { padding: 20px 24px; margin-block: 28px; background: #edf6f0; border-radius: 8px; }
.edital-payment h2 { margin-top: 0; color: #006429; }
.edital-payment p:last-child { margin-bottom: 0; }
.edital-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; border-top: 1px solid #e0e6ed; margin-top: 28px; }
.edital-document .edital-delivery { border-top: 1px solid #e0e6ed; padding-top: 24px; margin-bottom: 0; color: #007c32; text-align: center; }
@media (max-width: 700px) {
  .home-page .hero-actions { display: flex; margin-top: 14px; }
  .edital-home-link { margin-top: 12px; font-size: .76rem; }
  .edital-main { padding-block: 24px 48px; }
  .edital-heading { padding-top: 24px; }
  .edital-document { padding: 22px 18px; font-size: .9rem; }
  .edital-notice, .edital-payment { padding: 16px; }
  .edital-info-grid { grid-template-columns: 1fr; gap: 0; }
}

.product-view-lot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #041e42;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.product-view-lot:hover { background: #06336b; }

/* Keep both vehicle actions together, including on mobile. */
.product-card .product-footer { flex-direction: column; align-items: stretch; }
.product-card-actions { display: flex; align-items: center; gap: 10px; width: 100%; }
.product-card-actions .product-view-lot { flex: 1; min-width: 0; margin-top: 0; }
.product-card .product-card-actions .whatsapp-btn { width: 44px; height: 44px; flex: 0 0 44px; }

.hero-instagram__logo {
  border-radius: 27%;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

/* Plano Safra information page. */
.safra-home-link { display: inline-flex; align-items: center; gap: 20px; margin-top: 16px; padding: 14px 20px; border-radius: 8px; background: #bcefd2; color: #041e42; font-size: .8rem; font-weight: 700; letter-spacing: .05em; }
.safra-home-link:hover { background: #9de2ba; }
.safra-page { background: #fafbf9; color: #18334b; }
.safra-credit-notice { padding: 10px 24px; background: #051629; color: #c1d2df; text-align: center; font-size: .68rem; line-height: 1.6; }
.safra-header { background: #fff; }
.safra-header .container { max-width: 1120px; display: flex; align-items: center; justify-content: space-between; padding-block: 14px; }
.safra-header img { width: 110px; height: 60px; object-fit: contain; }
.safra-back { padding: 10px 14px; background: #f1f5f9; border-radius: 7px; font-size: .82rem; }
.safra-hero { padding: 64px 0; background: radial-gradient(#0b3943 1px, transparent 1px), #071f30; background-size: 16px 16px; text-align: center; }
.safra-eyebrow { display: inline-block; padding: 8px 16px; background: #06453c; color: #94dbb9; border: 1px solid #14604e; border-radius: 30px; font-size: .7rem; font-weight: 700; }
.safra-hero h1 { max-width: 850px; margin: 24px auto; color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem); line-height: 1.2; font-weight: 800; }
.safra-hero h1 span { color: #8bddaf; }
.safra-hero p { max-width: 680px; margin: 0 auto; color: #bad0df; line-height: 1.8; }
.safra-content { max-width: 880px; display: grid; gap: 28px; padding-block: 44px; }
.safra-card { padding: 34px; background: #fff; border: 1px solid #dfe6ed; border-radius: 16px; box-shadow: 0 2px 3px #132e4410; }
.safra-card h2 { margin: 0 0 20px; font-size: 1.35rem; line-height: 1.4; }
.safra-card p { color: #5c7087; font-size: .9rem; line-height: 1.75; }
.safra-terms { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.safra-terms > div { padding: 20px; border: 1px solid #e2e9f1; border-radius: 10px; background: #f7f9fc; }
.safra-terms span { display: block; color: #007c32; font-size: .67rem; font-weight: 700; margin-bottom: 8px; }
.safra-terms strong { display: block; font-size: .95rem; }
.safra-terms p { font-size: .75rem; margin: 6px 0 0; }
.safra-example { background: linear-gradient(120deg, #071a29, #102c43); color: #fff; }
.safra-example p { color: #bfd0df; }
.safra-example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-block: 22px; }
.safra-example-grid > div { padding: 18px 14px; background: #ffffff19; border: 1px solid #ffffff10; border-radius: 10px; }
.safra-example-grid span { display: block; font-size: .7rem; color: #bfd0df; margin-bottom: 8px; }
.safra-example-grid strong { font-size: 1.05rem; }
.safra-example-grid > div:nth-child(2) strong { color: #8bddaf; }
.safra-example .safra-footnote { font-size: .72rem; font-style: italic; margin-bottom: 0; }
.safra-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.safra-info-grid .safra-card { padding: 28px; }
.safra-info-grid h2 { font-size: 1.05rem; }
.safra-info-grid p { margin-bottom: 0; font-size: .83rem; }
.safra-transparency { background: #f1f5f9; }
.safra-cta { background: linear-gradient(120deg, #0ca55b, #0c8963); color: #fff; padding: 48px 32px; border-radius: 16px; text-align: center; box-shadow: 0 10px 20px #102b4814; }
.safra-cta h2 { font-size: 1.5rem; line-height: 1.4; }
.safra-cta p { max-width: 590px; margin: 20px auto 28px; color: #e1f5e9; font-size: .9rem; line-height: 1.75; }
.safra-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.safra-cta-actions a { padding: 16px 20px; border-radius: 9px; background: #ffffff20; font-size: .83rem; line-height: 1.5; }
.safra-cta-actions .safra-consult { background: #041e32; }
.safra-cta-actions a:hover { box-shadow: 0 0 0 2px #ffffff80; }
.safra-footer { background: #051629; color: #adc1d3; padding: 30px 20px; text-align: center; font-size: .7rem; line-height: 1.7; }
@media (max-width: 640px) {
  .safra-hero { padding: 40px 0; }
  .safra-hero p { font-size: .9rem; }
  .safra-content { padding-block: 28px; gap: 20px; }
  .safra-card, .safra-info-grid .safra-card { padding: 24px 20px; }
  .safra-terms, .safra-info-grid, .safra-example-grid { grid-template-columns: 1fr; gap: 12px; }
  .safra-cta { padding: 28px 20px; }
  .safra-cta-actions { flex-direction: column; }
}

/* Closing home section: security and buying benefits. */
.home-trust { padding-bottom: 72px; }
.home-trust__security { position: relative; overflow: hidden; padding: 42px 36px 38px; border-radius: 24px; background: radial-gradient(ellipse at 100% 100%, #124b49 0, transparent 50%), linear-gradient(120deg, #071b32, #132e48); box-shadow: 0 18px 40px #102b4818; color: #fff; }
.home-trust__heading { text-align: center; margin-bottom: 36px; }
.home-trust__heading > span { color: #8cdbb0; font-size: .65rem; letter-spacing: .16em; font-weight: 700; }
.home-trust__heading h2 { margin: 12px 0 0; color: #fff; font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.25; font-weight: 600; letter-spacing: -.04em; }
.home-trust__heading em { color: #9ce4ba; font-style: normal; }
.home-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 15px; padding: 20px; min-width: 0; }
.home-trust__grid .trust-item + .trust-item { border-left: 1px solid #ffffff24; }
.trust-icon { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 46px; border-radius: 13px; background: #8cdbb012; color: #79dda3; }
.trust-icon svg { width: 25px; height: 25px; }
.home-trust .trust-item h3 { font-size: .95rem; font-weight: 600; line-height: 1.4; margin: 0 0 7px; }
.home-trust .trust-item p { font-size: .77rem; line-height: 1.65; color: #bbcad8; margin: 0; }
.home-trust__advantages { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 20px; padding: 24px 16px; background: #fff; border: 1px solid #dce6e4; border-radius: 20px; box-shadow: 0 6px 24px #102b4806; }
.home-trust__advantages .trust-item + .trust-item { border-left: 1px solid #e0e8ec; }
.home-trust__advantages .trust-icon { background: #e5f5ec; color: #007c32; }
.home-trust__advantages h3 { color: #102b48; }
.home-trust__advantages .trust-item p { color: #65758a; }
@media (max-width: 1050px) {
  .home-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 12px 0; }
  .home-trust__grid .trust-item:nth-child(3) { border-left: 0; }
  .trust-item { padding: 16px 12px; gap: 12px; }
}
@media (max-width: 640px) {
  .home-trust { padding-bottom: 40px; }
  .home-trust__security { padding: 30px 20px 18px; border-radius: 20px; }
  .home-trust__heading { text-align: left; margin-bottom: 20px; }
  .home-trust__grid, .home-trust__advantages { grid-template-columns: 1fr; gap: 0; }
  .home-trust__grid .trust-item + .trust-item { border-left: 0; border-top: 1px solid #ffffff1a; }
  .home-trust__advantages { padding: 8px 20px; }
  .home-trust__advantages .trust-item + .trust-item { border-left: 0; border-top: 1px solid #e0e8ec; }
  .trust-item { padding: 20px 0; }
}

/* Legible contract signatures in preview, document and print. */
.signature-style-cursive, .signature-style-hand, .signature-style-abbrev-cursive {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 500 !important;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  transform: none;
}
.contract-signature, .contract-signature p { text-align: left; word-spacing: normal; }
.contract-signature strong, .contract-signature span { letter-spacing: normal; }
.contract-vehicle-description { white-space: pre-line; }
#contractInstallments { display: grid; gap: 16px; }

.invoice-receiver { padding: 16px 18px; margin: 18px 0; border: 1px solid #dce6e4; border-radius: 10px; background: #f3f8f5; }
.invoice-receiver span { display: block; color: #52677a; font-size: .75rem; margin-bottom: 7px; }
.invoice-receiver strong { color: #041e42; font-size: .95rem; overflow-wrap: anywhere; }

.tracking-delivery-details { margin-bottom: 22px; }
.tracking-delivery-details h2 { color: #041e42; font-size: 1.2rem; }
.tracking-delivery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 24px; margin-bottom: 0; }
.tracking-delivery-grid dt { font-size: .73rem; color: #62758a; margin-bottom: 6px; }
.tracking-delivery-grid dd { margin: 0; color: #16324a; font-size: .9rem; line-height: 1.6; overflow-wrap: anywhere; }
@media(max-width: 640px) { .tracking-delivery-grid { grid-template-columns: 1fr; } }
.tracking-animation-notice { padding: 12px 18px; margin: 0; background: #eaf4ee; color: #155439; font-size: .8rem; line-height: 1.6; }
.tracking-animation-notice button { margin-left: 10px; padding: 6px 10px; border: 1px solid #97b9a5; border-radius: 6px; background: #fff; color: #155439; cursor: pointer; }

.tracking-demo-badge { display: inline-block; margin-left: 8px; padding: 2px 8px; border: 1px solid #97b9a5; border-radius: 999px; color: #155439; background: #fff; font-size: .7rem; font-weight: 600; vertical-align: middle; }
.admin-tracking-status-form { display: flex; flex-wrap: wrap; align-items: end; gap: 12px; margin-top: 16px; }
.admin-tracking-status-form label { display: grid; gap: 6px; flex: 1 1 200px; }
.admin-tracking-status-form select { padding: 12px; border: 1px solid #c7d5df; border-radius: 8px; background: #fff; color: #16324a; width: 100%; }
.admin-tracking-status-form .admin-status { flex-basis: 100%; }
.admin-tracking-status-form input { padding: 12px; border: 1px solid #c7d5df; border-radius: 8px; background: #fff; color: #16324a; width: 100%; }

/* Slow, non-flashing pulse for the demonstration's midpoint stop. */
.tracking-map-driver-marker.is-demo-waiting { animation: tracking-demo-pulse 2.4s ease-in-out infinite; }
@keyframes tracking-demo-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
@media (prefers-reduced-motion: reduce) { .tracking-map-driver-marker.is-demo-waiting { animation: none; } }
