/* ============================================================
   LEAL & LEAL ALIMENTOS — style.css  (rev 2)
   ============================================================ */

/* FIX: font-display=swap já declarado no @import; garante
   que o texto seja visível durante o carregamento da fonte */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

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

:root {
  --navy-50: #eeeeff;
  --navy-100: #d0d0f8;
  --navy-200: #a3a3ef;
  --navy-300: #6e6edf;
  --navy-400: #4444cc;
  --navy-500: #2c2cc4;
  --navy-600: #2323a0;
  --navy-700: #1a1a7a;
  --navy-800: #111154;
  --navy-900: #08082e;
  --leal-green: #39b54a;
  --leal-yellow: #ffff00;
  --leal-graphite: #3d3d3d;
  --dark: #1a1a1a;
  --font-display: Impact, "Arial Black", sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;

  /* FIX responsividade: escala de fonte fluida */
  --text-xs: clamp(0.65rem, 1.5vw, 0.75rem);
  --text-sm: clamp(0.8rem, 2vw, 0.9rem);
  --text-base: clamp(0.875rem, 2.2vw, 1rem);
  --text-lg: clamp(1rem, 2.5vw, 1.1rem);
}

/* FIX acessibilidade: respeitar preferência do usuário por menos movimento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: #fff;
  color: #222;
  overflow-x: hidden;
  /* FIX: garante antialiasing uniforme */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: var(--font-body);
}

/* FIX acessibilidade: skip link para teclado */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--leal-yellow);
  color: var(--navy-900);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* FIX acessibilidade: visualmente oculto mas acessível a leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FIX acessibilidade: outline visível para navegação por teclado */
:focus-visible {
  outline: 3px solid var(--leal-yellow);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy-500);
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
}
.section-label.light {
  color: var(--leal-yellow);
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #f0f0f0;
}
.divider-dot {
  width: 6px;
  height: 6px;
  background: var(--navy-200);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ------------------------------------------------------------
   BOTÕES
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 2px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  /* FIX acessibilidade: tamanho mínimo de toque 44px */
  min-height: 44px;
}
.btn-primary {
  background: var(--leal-yellow);
  color: var(--navy-900);
  font-weight: 700;
}
.btn-primary:hover {
  background: #e6e600;
}
.btn-outline {
  border: 2px solid var(--navy-500);
  color: var(--navy-600);
  font-weight: 600;
}
.btn-outline:hover {
  background: var(--navy-50);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
.btn-ghost:hover {
  border-color: var(--leal-yellow);
  color: var(--leal-yellow);
}
.btn-dark-outline {
  border: 2px solid var(--navy-800);
  color: var(--navy-900);
  font-weight: 600;
}
.btn-dark-outline:hover {
  background: var(--navy-50);
}

/* ------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* FIX performance: will-change só no que muda */
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
#navbar.scrolled,
#navbar.solid {
  background: var(--navy-500);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
#navbar.transparent {
  background: var(--navy-500);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* FIX responsividade: altura menor em mobile */
  height: 64px;
}
@media (min-width: 1024px) {
  .nav-inner {
    padding: 0 1.5rem;
    height: 80px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .nav-logo-img {
    width: 40px;
    height: 40px;
  }
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.nav-logo-sub {
  color: var(--leal-yellow);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  /* FIX acessibilidade: toque mínimo */
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--leal-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* FIX acessibilidade: indicar página atual para leitores de tela */
.nav-link[aria-current="page"] {
  color: #fff;
}
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-right {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .nav-right {
    display: flex;
  }
}

/* Lang switcher */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  transition: background 0.2s;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-family: monospace;
  /* FIX acessibilidade */
  min-height: 44px;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.lang-btn .chevron {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.lang-btn.open .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  /* FIX: display:none remove do fluxo mas quebra animação;
     usar visibility+opacity para melhor UX e acessibilidade */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--navy-800);
  border: 1px solid var(--navy-600);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  min-width: 130px;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
}
.lang-dropdown.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  text-align: left;
  transition: background 0.15s;
  cursor: pointer;
  min-height: 44px;
}
.lang-option:hover {
  background: var(--navy-700);
  color: #fff;
}
.lang-option.active {
  background: var(--navy-700);
  color: var(--leal-yellow);
}
.lang-option svg {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
.lang-check {
  margin-left: auto;
  color: var(--leal-yellow);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px; /* FIX: 44px mínimo de toque */
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-600);
  border-top: 1px solid var(--navy-400);
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-menu.open {
  display: flex;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-link {
  padding: 0.875rem 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  border-bottom: 1px solid var(--navy-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  /* FIX responsividade: texto maior e toque maior em mobile */
  min-height: 48px;
  display: flex;
  align-items: center;
}
.mobile-link:hover {
  color: #fff;
}
.mobile-langs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-family: monospace;
  background: var(--navy-500);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}
.mobile-lang.active {
  background: var(--leal-yellow);
  color: var(--navy-900);
}
.mobile-lang svg {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}
.mobile-cta {
  margin-top: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--leal-yellow);
  color: var(--navy-900);
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 2px;
  display: block;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------------------------------------
   PAGE HERO (páginas internas)
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  /* FIX responsividade: padding-top considera navbar menor em mobile */
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: var(--navy-500);
}
@media (min-width: 1024px) {
  .page-hero {
    padding: 12rem 0 7rem;
  }
}
.page-hero-geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .page-hero-geo {
    display: block;
  }
}
.page-hero-box1 {
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 12rem;
  height: 12rem;
  border: 2px solid var(--leal-yellow);
  transform: rotate(12deg);
}
.page-hero-box2 {
  position: absolute;
  top: 7rem;
  right: 7rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid var(--leal-yellow);
  transform: rotate(12deg);
}
.page-hero-content {
  position: relative;
  z-index: 10;
}
.page-hero h1 {
  font-family: var(--font-display);
  /* FIX responsividade: fonte fluida */
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 32rem;
}
.page-hero .subtitle {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-base);
  max-width: 30rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   FADE-UP (scroll animation)
   FIX performance: usar transform+opacity (GPU compositing)
   ------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  /* FIX: will-change declarado só antes de animar, aqui é inicial */
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   CARDS (produtos/serviços)
   ------------------------------------------------------------ */
.cards-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .cards-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.cards-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cards-header p {
  margin-top: 0.5rem;
  color: #999;
  font-size: var(--text-sm);
  max-width: 30rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  padding: 1.5rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .card {
    padding: 2rem;
  }
}
.card:hover {
  border-color: var(--navy-300);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-50);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
  /* FIX acessibilidade: ícone emoji é decorativo */
  aria-hidden: true;
}
.card:hover .card-icon {
  background: var(--navy-100);
}
.card h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--navy-700);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.card p {
  color: #999;
  font-size: var(--text-sm);
  line-height: 1.65;
  flex: 1;
}
.card-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  height: 2px;
  width: 0;
  background: var(--leal-yellow);
  /* FIX performance: usar transform no lugar de width */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
/* FIX: usar transform ao invés de width para melhor performance */
.card:hover .card-line {
  transform: scaleX(1);
  width: calc(100% - 4rem);
}

/* ------------------------------------------------------------
   INFRAESTRUTURA
   ------------------------------------------------------------ */
.infra-section {
  background: var(--navy-500);
}
.infra-header {
  text-align: center;
  margin-bottom: 3rem;
}
.infra-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.infra-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .infra-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.infra-card {
  background: rgba(35, 35, 160, 0.3);
  border: 1px solid rgba(68, 68, 204, 0.4);
  border-radius: 2px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.infra-card:hover {
  border-color: rgba(255, 255, 0, 0.4);
}
.infra-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.infra-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.infra-badge {
  font-family: monospace;
  color: var(--leal-yellow);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.infra-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.infra-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.infra-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
}
.infra-feature::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--leal-yellow);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   STATS
   ------------------------------------------------------------ */
.stats-section {
  background: var(--leal-graphite);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
  }
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  color: #fff;
  line-height: 1;
}
.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ------------------------------------------------------------
   HERO (home)
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh; /* FIX: svh para mobile correto */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-500);
}
.hero-geo {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}
.hero-geo-box1 {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  border: 2px solid var(--leal-yellow);
  transform: rotate(12deg);
}
.hero-geo-box2 {
  position: absolute;
  top: 8rem;
  right: 8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid #fff;
  transform: rotate(12deg);
}
.hero-geo-box3 {
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid var(--leal-green);
  transform: rotate(45deg);
}

/* FIX performance: imagem de fundo decorativa com loading lazy via JS */
.hero-logo-bg {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.08;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero-logo-bg {
    display: block;
  }
}
.hero-logo-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* FIX responsividade: padding considera navbar 64px mobile / 80px desktop */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0 3rem;
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 7rem 0 4rem;
  }
}
.hero-inner {
  max-width: 40rem;
  padding: 0 1rem;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--leal-yellow);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-tagline::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--leal-yellow);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.75rem);
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-subtitle {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 32rem;
}
.hero-btns {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-quote {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.632);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  font-style: italic;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
  /* FIX: ocultar em mobile para não sobrepor texto */
}
@media (max-width: 639px) {
  .hero-scroll {
    display: none;
  }
}
.hero-scroll-line {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 201, 0, 0.4);
}
.hero-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 201, 0, 0.6);
}

/* FIX performance: usar transform composto para não reflow */
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Global section */
.global-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .global-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.global-img-wrap {
  position: relative;
  /* FIX responsividade: altura fluida */
  height: clamp(240px, 40vw, 380px);
  border-radius: 2px;
  overflow: hidden;
}
.global-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.global-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 196, 0.2);
}
.global-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #fff;
  border-radius: 2px;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.global-img-badge-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-500);
  text-transform: uppercase;
}
.global-img-badge-lbl {
  font-size: var(--text-xs);
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.global-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--navy-500);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.global-text p {
  color: #777;
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* CTA section */
.cta-section {
  background: var(--leal-graphite);
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-base);
  max-width: 30rem;
  margin: 0 auto 2rem;
}

/* ------------------------------------------------------------
   SOBRE
   ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.about-text p {
  color: #777;
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.stats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card-box {
  background: #f8f8f8;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  padding: 1.5rem;
}
.stat-card-val {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy-500);
  border-left: 2px solid var(--leal-yellow);
  padding-left: 1rem;
}
.stat-card-lbl {
  font-size: var(--text-xs);
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
  padding-left: 1rem;
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .mvv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mvv-card {
  background: #f8f8f8;
  padding: 2rem;
  border-top: 4px solid;
  border-radius: 0 0 2px 2px;
}
.mvv-card.mission {
  border-color: var(--navy-500);
}
.mvv-card.vision {
  border-color: var(--leal-yellow);
}
.mvv-card.values {
  border-color: var(--leal-green);
}
.mvv-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.mvv-card p {
  color: #777;
  font-size: var(--text-sm);
  line-height: 1.65;
}

.banner-img {
  position: relative;
  height: clamp(12rem, 30vw, 24rem);
  overflow: hidden;
}
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 46, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-img-quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 0 1.5rem;
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}
.faq-center {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-center h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.faq-item {
  border-bottom: 1px solid #f0f0f0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  list-style: none;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-plus {
  font-size: 1.25rem;
  color: var(--navy-400);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-plus {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0.75rem 0.5rem 1.5rem 1rem;
  color: #777;
  font-size: var(--text-sm);
  line-height: 1.65;
  padding-right: 2rem;
}

/* ------------------------------------------------------------
   PRODUTOS
   ------------------------------------------------------------ */
.freight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .freight-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.freight-card {
  background: rgba(35, 35, 160, 0.3);
  border: 1px solid var(--navy-400);
  border-radius: 2px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.freight-card:hover {
  border-color: rgba(255, 255, 0, 0.5);
}
.freight-num {
  font-family: monospace;
  color: rgba(255, 255, 0, 0.3);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.freight-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.freight-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
}

.warehouse-card {
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
}
.warehouse-img {
  position: relative;
  height: 13rem;
}
.warehouse-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.warehouse-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 46, 0.4);
}
.warehouse-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--leal-yellow);
  color: var(--navy-900);
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}
.warehouse-body {
  padding: 1.5rem;
}
.warehouse-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.warehouse-body p {
  color: #777;
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.warehouse-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.warehouse-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #999;
  font-size: var(--text-xs);
}
.warehouse-feature::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy-400);
  flex-shrink: 0;
}

.yellow-cta {
  background: var(--leal-yellow);
  padding: 4rem 0;
}
.yellow-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .yellow-cta-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.yellow-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.yellow-cta p {
  color: rgba(8, 8, 46, 0.6);
  font-size: var(--text-sm);
  margin-top: 0.25rem;
}

/* ------------------------------------------------------------
   CONTATO
   ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
  }
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .contact-form-wrap {
    padding: 2.5rem;
  }
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.form-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
}
.form-control {
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  color: #333;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  /* FIX acessibilidade: altura mínima de toque */
  min-height: 44px;
}
.form-control:focus {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(44, 44, 196, 0.1);
}
/* FIX acessibilidade: contraste de placeholder */
.form-control::placeholder {
  color: #999;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* FIX acessibilidade: estado inválido visível */
.form-control:invalid:not(:placeholder-shown) {
  border-color: #c00;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy-500);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 2px;
  transition: background 0.2s;
  margin-top: 0.25rem;
  min-height: 48px;
}
.form-submit:hover:not(:disabled) {
  background: var(--navy-600);
}
.form-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .form-success {
    padding: 4rem;
  }
}
.form-success.show {
  display: flex;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--navy-500);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-700);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: #999;
  font-size: var(--text-sm);
}
.form-success-reset {
  margin-top: 1.25rem;
  color: var(--navy-500);
  font-size: var(--text-sm);
  text-decoration: underline;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.form-error-msg {
  background: #fff0f0;
  border: 1px solid #fcc;
  color: #c00;
  font-size: var(--text-sm);
  padding: 0.75rem 1rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  display: none;
}

/* FIX acessibilidade: role="alert" no JS, mas garantir visibilidade */
.form-error-msg[aria-live] {
  display: block;
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-office-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  padding: 1.5rem;
}
.contact-office-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.contact-office-dot {
  width: 8px;
  height: 8px;
  background: var(--leal-yellow);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.contact-office-head h3 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-office-info {
  font-size: var(--text-xs);
  color: #999;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.contact-office-info a {
  color: var(--navy-500);
  transition: color 0.2s;
}
.contact-office-info a:hover {
  color: var(--navy-400);
}

.response-card {
  background: var(--navy-500);
  border-radius: 2px;
  padding: 1.5rem;
}
.response-label {
  font-family: monospace;
  color: var(--leal-yellow);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.25rem;
}
.response-time {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #fff;
  text-transform: uppercase;
}
.response-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  margin-top: 0.25rem;
}

.map-placeholder {
  position: relative;
  height: 16rem;
  background: var(--navy-50);
  border-top: 1px solid #eee;
  overflow: hidden;
}
.map-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(var(--navy-500) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-500) 1px, transparent 1px);
  background-size: 48px 48px;
}
.map-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}
.map-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.map-content h3 {
  font-family: var(--font-display);
  color: var(--navy-700);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.map-content p {
  color: #aaa;
  font-size: var(--text-xs);
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
footer {
  background: var(--navy-500);
  color: #fff;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px) {
  .footer-inner {
    padding: 4rem 2rem 3rem;
  }
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-brand-img {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
}
.footer-brand-sub {
  color: var(--leal-yellow);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.632);
  font-size: var(--text-sm);
  line-height: 1.6;
  font-style: italic;
  max-width: 22rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.footer-social {
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.632);
  font-size: var(--text-xs);
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.footer-social:hover {
  border-color: var(--leal-yellow);
  color: var(--leal-yellow);
}
.footer-col-title {
  color: var(--leal-yellow);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: block;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fff;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-item {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.632);
}
.footer-contact-item span {
  display: block;
  color: rgba(255, 255, 255, 0.632);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-xs);
  margin-bottom: 0.25rem;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
  }
}
.footer-copy {
  color: rgba(255, 255, 255, 0.632);
  font-size: var(--text-xs);
}

/* ------------------------------------------------------------
   PRINT (básico)
   ------------------------------------------------------------ */
/* ============================================================
   PAGE HERO — DESC
   ============================================================ */
.page-hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-base);
  margin-top: 0.75rem;
  max-width: 560px;
}

/* ============================================================
   CATALOG NAV
   ============================================================ */
.catalog-nav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: var(--navy-800);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: stretch;
  min-height: 52px;
}

.catalog-nav-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 0.35rem;
  flex: 1;
  padding: 0.5rem 0.25rem;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}
.catalog-nav-inner::-webkit-scrollbar {
  display: none;
}

.catalog-nav-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
  z-index: 2;
}
.catalog-nav-arrow--left {
  border-left: none;
}
.catalog-nav-arrow--right {
  border-right: none;
}
.catalog-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.catalog-nav-arrow[hidden] {
  display: none;
}
@media (min-width: 640px) {
  .catalog-nav {
    padding: 0 1rem;
  }
}
@media (min-width: 1024px) {
  .catalog-nav {
    padding: 0 1.5rem;
  }
}

.catalog-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 99px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  text-decoration: none;
  min-height: 40px;
  border: 1px solid transparent;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s,
    transform 0.15s;
  letter-spacing: 0.03em;
}
.catalog-nav-btn:hover {
  background: var(--leal-yellow);
  color: var(--navy-900);
  border-color: transparent;
}
.catalog-nav-btn.active {
  background: var(--leal-yellow);
  color: var(--navy-900);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 2px 10px rgba(255, 255, 0, 0.35);
}
.catalog-nav-btn span:first-child {
  font-size: 0.95rem;
  line-height: 1;
}

/* ============================================================
   CATALOG SECTIONS
   ============================================================ */
.catalog-section {
  padding: 4rem 0;
  background: #fff;
}
.catalog-section-alt {
  background: #f8f9fc;
}
@media (min-width: 768px) {
  .catalog-section {
    padding: 5rem 0;
  }
}

/* Category Header */
.cat-header {
  margin-bottom: 2.5rem;
}

.cat-meta {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cat-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cat-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cat-title {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy-700);
  line-height: 1.2;
}

.cat-subtitle {
  font-size: var(--text-sm);
  color: var(--navy-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cat-intro {
  color: #555;
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.cat-targets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.cat-targets-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #888;
  margin-right: 0.25rem;
}

.cat-target-tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--navy-50);
  color: var(--navy-600);
  border: 1px solid var(--navy-100);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
  will-change: transform;
}
.catalog-section-alt .product-card {
  background: #fff;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(44, 44, 196, 0.12);
  border-color: var(--navy-200);
  transform: translateY(-3px);
}

/* Área de imagem do produto */
.product-img-area {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.product-img-icon {
  font-size: 3.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  user-select: none;
}

/* Corpo do card (abaixo da imagem) */
.product-card-body {
  padding: 1.1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.product-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-700);
  line-height: 1.3;
  flex: 1;
}

/* Badges */
.product-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-green {
  background: #e6f7eb;
  color: #1a7a30;
}
.badge-blue {
  background: var(--navy-50);
  color: var(--navy-600);
}
.badge-red {
  background: #fff0f0;
  color: #c0392b;
}
.badge-dark {
  background: #2a2a2a;
  color: #fff;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.product-brand {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-type {
  font-size: var(--text-xs);
  color: #888;
}

.product-desc {
  font-size: var(--text-sm);
  color: #555;
  line-height: 1.6;
  flex: 1;
}

.product-sizes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
}

.product-sizes-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 100%;
}

.product-size-chip {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 0.7rem;
  font-weight: 600;
  color: #555;
  background: #fafafa;
}

/* ============================================================
   FEATURED CARD — produto destaque na home
   ============================================================ */
.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 20px rgba(44, 44, 196, 0.1);
  border: 1px solid var(--navy-100);
}
@media (min-width: 768px) {
  .featured-card {
    grid-template-columns: 280px 1fr;
  }
}
.featured-card:hover {
  box-shadow: 0 10px 36px rgba(44, 44, 196, 0.18);
  transform: translateY(-3px);
}

.featured-card-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  min-height: 180px;
  position: relative;
}
.featured-card-icon {
  font-size: 4rem;
  line-height: 1;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.4));
}
.featured-card-badge {
  background: var(--leal-yellow);
  color: var(--navy-900);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
}

.featured-card-body {
  background: #fff;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.featured-card-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--navy-700);
  line-height: 1.2;
  margin: 0;
}
.featured-card-desc {
  color: #555;
  font-size: var(--text-sm);
  line-height: 1.6;
}
.featured-card-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0.25rem 0;
}
.featured-card-list li {
  font-size: var(--text-xs);
  color: var(--navy-600);
  font-weight: 600;
  padding-left: 0.9rem;
  position: relative;
}
.featured-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--leal-green);
  font-size: 0.65rem;
  top: 0.1em;
}
.featured-card-cta {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy-500);
  margin-top: 0.25rem;
  display: inline-block;
}
.featured-card:hover .featured-card-cta {
  text-decoration: underline;
}

/* ============================================================
   WHATSAPP SECTION
   ============================================================ */
.whatsapp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .whatsapp-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }
}

.whatsapp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.whatsapp-card:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.15);
  transform: translateY(-2px);
}

.wa-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.wa-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-700);
}
.wa-role {
  font-size: var(--text-sm);
  color: #888;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.6rem 1.4rem;
  border-radius: 99px;
  text-decoration: none;
  transition:
    background 0.18s,
    transform 0.15s;
  min-height: 44px;
}
.wa-btn:hover {
  background: #1ebe5d;
  transform: scale(1.04);
}

/* ============================================================
   PARTNERS GRID — sobre.html
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.partner-card:hover {
  box-shadow: 0 6px 24px rgba(44, 44, 196, 0.1);
  transform: translateY(-2px);
}

.partner-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.partner-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.partner-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-700);
  line-height: 1.2;
}
.partner-since {
  display: block;
  font-size: var(--text-xs);
  color: var(--navy-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}
.partner-desc {
  font-size: var(--text-sm);
  color: #555;
  line-height: 1.65;
}
.partner-products {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
}
.partner-products li {
  font-size: var(--text-xs);
  color: var(--navy-600);
  font-weight: 600;
  padding-left: 1rem;
  position: relative;
}
.partner-products li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--leal-green);
  font-size: 0.7rem;
}

/* ============================================================
   PRINT (básico)
   ============================================================ */
@media print {
  #navbar,
  .hero-scroll,
  .lang-switcher {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
  a::after {
    content: " (" attr(href) ")";
    font-size: 0.75rem;
  }
}
