/* =========================================================================
   HAJA SOLUÇÕES — styles.css
   Identidade visual "Direção C (Marca Original)": preto, amarelo e off-white.
   Sem frameworks externos — CSS puro, mobile-first, com breakpoints em
   960px (tablet) e 640px (celular).
   ========================================================================= */

:root {
  --haja-black: #16140f;
  --haja-yellow: #FFC400;
  --haja-offwhite: #F6F5F2;
  --haja-white: #ffffff;
  --haja-link: #8a6b00;
  --haja-link-hover: #5f4a00;
  --haja-line: rgba(23, 23, 26, 0.12);
  --haja-line-soft: rgba(23, 23, 26, 0.1);
  --haja-text-muted: rgba(23, 23, 26, 0.68);
  --haja-text-mutedest: rgba(23, 23, 26, 0.5);

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --max-width: 1280px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   BASE
   ========================================================================= */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--haja-white);
  color: var(--haja-black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--haja-link); }
a:hover { color: var(--haja-link-hover); }

::selection { background: var(--haja-yellow); color: var(--haja-black); }

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--haja-black);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--haja-yellow);
  color: var(--haja-black);
  padding: 14px 20px;
  z-index: 200;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--haja-black);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--haja-yellow);
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow--on-dark { color: var(--haja-white); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--haja-black); margin: 0; }

.section { padding: 64px 0; border-top: 1px solid var(--haja-line-soft); }
.section--tight-top { padding-top: 40px; }
.section--first { padding-top: 70px; border-top: none; }
.section--offwhite { background: var(--haja-offwhite); }
.section--black { background: var(--haja-black); }
.section--yellow { background: var(--haja-yellow); }

/* =========================================================================
   BOTÕES
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s var(--ease-out), background-color .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--haja-black); color: var(--haja-yellow); }
.btn-primary:hover { background: #000; color: var(--haja-yellow); }

.btn-accent { background: var(--haja-yellow); color: var(--haja-black); }
.btn-accent:hover { background: #e6b000; }

.btn-outline { background: transparent; color: var(--haja-black); border-color: var(--haja-black); }
.btn-outline:hover { background: var(--haja-black); color: var(--haja-yellow); }

.btn-outline-light { background: transparent; color: var(--haja-yellow); border-color: var(--haja-yellow); }
.btn-outline-light:hover { background: var(--haja-yellow); color: var(--haja-black); }

.btn-sm { padding: 11px 18px; font-size: 12px; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: var(--haja-black);
  border-bottom: 2px solid var(--haja-yellow);
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--haja-link-hover); }

/* =========================================================================
   HONEYPOT (ANTI-SPAM)
   ========================================================================= */

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  left: -9999px;
}

/* =========================================================================
   CABEÇALHO / NAVEGAÇÃO
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--haja-white);
  border-bottom: 3px solid var(--haja-black);
}

.site-header__bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--haja-black);
  text-transform: uppercase;
  line-height: 1.1;
}

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

.nav-link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--haja-black);
  padding-bottom: 16px;
}
.nav-link[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--haja-yellow);
}

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 2px solid var(--haja-black);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--haja-black);
  transition: transform .25s var(--ease-out), opacity .25s var(--ease-out);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--haja-line);
  background: var(--haja-white);
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 8px 32px; }
.mobile-menu .nav-link {
  padding: 14px 0;
  border-bottom: 1px solid var(--haja-line);
  font-size: 13px;
}
.mobile-menu .header-cta { margin: 18px 32px 22px; }
.mobile-menu .btn { width: 100%; }

/* =========================================================================
   HERO / SEÇÕES GENÉRICAS
   ========================================================================= */

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

.hero h1, .page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1.03;
  text-transform: uppercase;
  margin: 0;
  color: var(--haja-black);
}

.hero p.lead {
  max-width: 540px;
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--haja-text-muted);
}

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

.hero-stats { display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat-value { font-family: var(--font-display); font-weight: 900; font-size: 36px; margin: 0; color: var(--haja-black); }
.hero-stats .stat-value em { color: var(--haja-yellow); font-style: normal; }
.hero-stats .stat-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--haja-text-mutedest); margin: 6px 0 0; }

.hero-media {
  background: var(--haja-white);
  border: 1px solid var(--haja-line);
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hero-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hero-media--sm { height: 320px; }

.highlight { background: var(--haja-yellow); padding: 0 6px; }

h2.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 40px);
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0;
  color: var(--haja-black);
}
.section--black h2.section-title,
.section--black h3 { color: var(--haja-white); }

.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
}
.split-body p { font-size: 17px; line-height: 1.7; color: var(--haja-text-muted); margin: 0 0 18px; }
.split-body p:last-child { margin-bottom: 0; }

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

/* =========================================================================
   GRELHAS DE CARDS
   ========================================================================= */

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

.card {
  border: 1px solid var(--haja-line);
  border-top: 4px solid var(--haja-yellow);
  padding: 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card h3 { font-weight: 800; font-size: 18px; text-transform: uppercase; margin: 0 0 8px; }
.card p { font-size: 13.5px; line-height: 1.6; color: rgba(23,23,26,0.62); margin: 0 0 14px; }
.card .card-num { font-family: var(--font-mono); font-size: 11px; color: var(--haja-black); margin-top: auto; }

.card--dark {
  border: 1px solid rgba(255,255,255,0.15);
  border-top: none;
  padding: 26px;
  background: transparent;
}
.card--dark .card-num { font-family: var(--font-mono); color: var(--haja-yellow); font-size: 13px; }
.card--dark h3 { color: var(--haja-white); font-weight: 800; font-size: 16px; text-transform: uppercase; margin: 12px 0 8px; }
.card--dark p { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 0; }

.card--big { padding: 34px; }
.card--big .card-num { font-family: var(--font-mono); color: var(--haja-black); font-size: 15px; margin-top: 0; }
.card--big h3 { font-size: 21px; margin: 12px 0 6px; }
.card--big .card-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(23,23,26,0.45);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.card--big p.card-desc { font-size: 14.5px; line-height: 1.7; color: var(--haja-text-muted); margin: 0; }

/* Produtos */
.product-card {
  border: 1px solid var(--haja-line);
  display: flex;
  flex-direction: column;
  background: var(--haja-white);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
a.product-card:hover { border-color: var(--haja-black); transform: translateY(-2px); }
.product-card__media { height: 190px; overflow: hidden; background: var(--haja-offwhite); }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; }
.product-card__body { padding: 22px; border-top: 4px solid var(--haja-yellow); display: flex; flex-direction: column; flex: 1; }
.product-card__tag { font-family: var(--font-mono); font-size: 10.5px; color: var(--haja-link); letter-spacing: 0.04em; }
.product-card__title { font-weight: 800; font-size: 17px; text-transform: uppercase; margin: 8px 0 10px; }
.product-card__desc { font-size: 12.5px; line-height: 1.55; color: rgba(23,23,26,0.6); margin: 0 0 10px; }
.product-card__spec { font-family: var(--font-mono); font-size: 10px; color: rgba(23,23,26,0.45); margin: 0; }
.product-card__link { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--haja-black); margin: 12px 0 0; }
a.product-card:hover .product-card__link { text-decoration: underline; }

.table-scroll { overflow-x: auto; border: 1px solid var(--haja-line); }
.spec-table { border-collapse: collapse; width: 100%; min-width: 420px; font-size: 14.5px; }
.spec-table tr { border-bottom: 1px solid var(--haja-line-soft); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th, .spec-table td { padding: 13px 18px; text-align: left; font-weight: 400; }
.spec-table th {
  width: 200px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--haja-text-mutedest);
  background: var(--haja-offwhite);
}
.spec-table td { color: var(--haja-black); }

/* Acessórios */
.acc-card { background: var(--haja-white); border: 1px solid var(--haja-line); }
.acc-card__media { height: 150px; overflow: hidden; background: var(--haja-offwhite); }
.acc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.acc-card__media--contain img { object-fit: contain; }
.acc-card__body { padding: 16px 18px 18px; }
.acc-card__title { font-weight: 800; font-size: 13.5px; text-transform: uppercase; margin: 0 0 6px; }
.acc-card__desc { font-size: 11.5px; line-height: 1.5; color: rgba(23,23,26,0.55); margin: 0; }

/* =========================================================================
   MAPA / MÍDIA UTIL
   ========================================================================= */

.map-frame { border: 1px solid var(--haja-line); overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-frame--16-8 { aspect-ratio: 16 / 8; }
.map-frame--16-9 { aspect-ratio: 16 / 9; }
.map-frame--21-8 { aspect-ratio: 21 / 8; }

/* =========================================================================
   CARROSSEL DE LOGOS (CLIENTES ATENDIDOS)
   ========================================================================= */

.logos-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.logos-half { display: flex; align-items: center; gap: 96px; padding-right: 96px; }
.logos-item {
  height: 76px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
}
.logos-item--lg { height: 92px; }

@media (prefers-reduced-motion: reduce) {
  .logos-marquee { overflow-x: auto; }
}

/* =========================================================================
   CTA FAIXA
   ========================================================================= */

.cta-strip {
  padding: 36px;
  background: var(--haja-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip__kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--haja-yellow); margin: 0 0 8px; }
.cta-strip__text { font-size: 16px; color: rgba(255,255,255,0.85); margin: 0; }

.cta-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 48px);
  text-transform: uppercase;
  line-height: 1.03;
  margin: 0 0 18px;
}
.cta-block p { font-size: 16px; line-height: 1.6; color: rgba(22,20,15,0.75); margin: 0 0 32px; }
.cta-block .hero-actions { justify-content: center; }

/* =========================================================================
   FORMULÁRIOS
   ========================================================================= */

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(23,23,26,0.55);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--haja-offwhite);
  border: 1px solid rgba(23,23,26,0.25);
  color: var(--haja-black);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--haja-black); background: var(--haja-white); }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: rgba(23,23,26,0.5); margin: 0; }
.form-feedback {
  display: none;
  grid-column: 1 / -1;
  font-size: 13.5px;
  line-height: 1.5;
  padding: 14px 16px;
  border: 1px solid var(--haja-line);
  background: var(--haja-offwhite);
}
.form-feedback.is-visible { display: block; }
.form-feedback.is-error { border-color: #b3241c; background: #fdecea; color: #7a1a14; }
.form-feedback.is-success { border-color: #1c6b3a; background: #e9f7ee; color: #14522b; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; height: fit-content; }
.contact-cards .card--big { padding: 26px; }
.contact-cards .card-kicker-strong {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--haja-link);
  margin: 0 0 10px;
  display: block;
}
.contact-cards a.card-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  display: block;
  text-decoration: none;
  color: var(--haja-black);
}
.contact-cards a.card-value:hover { color: var(--haja-link); }
.contact-cards p.card-value { font-size: 14.5px; line-height: 1.6; color: rgba(23,23,26,0.72); margin: 0; }

/* =========================================================================
   RODAPÉ
   ========================================================================= */

.site-footer {
  border-top: 3px solid var(--haja-black);
  padding: 36px 0;
  background: var(--haja-black);
}
.site-footer__bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--haja-white);
}
.footer-brand img { width: 30px; height: 30px; object-fit: contain; }
.footer-note { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.5); margin: 0; }
.footer-legal-link { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal-link:hover { color: var(--haja-yellow); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--haja-white);
  text-decoration: none;
}

/* =========================================================================
   WHATSAPP FLUTUANTE + VOLTAR AO TOPO
   ========================================================================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform .25s var(--ease-out), background-color .25s var(--ease-out);
}
.whatsapp-float:hover { background: #128C7E; transform: translateY(-2px) scale(1.05); }

#backToTop {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--haja-black);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--haja-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
#backToTop.hidden-btn { opacity: 0; pointer-events: none; transform: translateY(10px); }

/* =========================================================================
   REVEAL ON SCROLL
   ========================================================================= */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================================
   RESPONSIVO — TABLET (<=960px)
   ========================================================================= */

@media (max-width: 960px) {
  .wrap, .site-header__bar, .site-footer__bar { padding-left: 24px; padding-right: 24px; }

  .main-nav, .header-cta:not(.mobile-menu .header-cta) { display: none; }
  .menu-toggle { display: flex; }

  .hero, .split { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: -1; height: 300px; }
  .hero-media--sm { height: 240px; }

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

  .section { padding: 48px 0; }
  .section--first { padding-top: 48px; }

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

  .contact-section { grid-template-columns: 1fr !important; }

  .logos-item { height: 58px; }
  .logos-item--lg { height: 70px; }
  .logos-half { gap: 64px; padding-right: 64px; }
}

/* =========================================================================
   RESPONSIVO — CELULAR (<=640px)
   ========================================================================= */

@media (max-width: 640px) {
  .wrap, .site-header__bar, .site-footer__bar { padding-left: 18px; padding-right: 18px; }

  .site-header__bar { padding-top: 12px; padding-bottom: 12px; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 15px; }

  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }

  .hero-stats { gap: 24px; }
  .hero-stats .stat-value { font-size: 28px; }

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

  .cta-strip { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-strip a.btn { width: 100%; text-align: center; }

  .hero-actions .btn,
  .cta-block .hero-actions .btn { width: 100%; }
  .hero-actions, .cta-block .hero-actions { flex-direction: column; }

  .whatsapp-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  #backToTop { width: 42px; height: 42px; left: 16px; bottom: 16px; }

  .footer-social { order: -1; }
  .site-footer__bar { flex-direction: column; text-align: center; }

  .logos-item { height: 44px; }
  .logos-item--lg { height: 54px; }
  .logos-half { gap: 40px; padding-right: 40px; }
}
