/* ==========================================================================
   Multiloc – Locação de Containers · estilos da landing page
   Valores extraídos do design (Claude Design: "Multiloc Landing Page.dc.html")
   ========================================================================== */

:root {
  /* Marca */
  --navy: #1B3A6B;
  --navy-deep: #16305A;
  --navy-light: #24509A;
  --navy-footer: #142B50;
  --blue: #2E7BC4;
  --orange: #F26722;
  --orange-dark: #E85A12;
  --orange-light: #FF7E3C;
  --orange-hover: #FF7A38;
  --orange-soft: #F79A62;

  /* WhatsApp */
  --wa: #25D366;
  --wa-dark: #1EBE5B;
  --wa-text: #128C4B;

  /* Neutros */
  --bg-soft: #F5F8FC;
  --border: #E4E9F2;
  --text-muted: #4A5C78;
  --sky-1: #D7E6F6;
  --sky-2: #C9DBF0;
  --sky-3: #BFDCF7;
  --sky-4: #9FBEDF;
  --sky-5: #7E97BC;
  --peach: #FFE3D1;

  /* Tipografia */
  --font-body: 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Barlow Condensed', 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --pad-x: clamp(20px, 5vw, 48px);
  --pad-y: clamp(56px, 8vw, 96px);
}

/* Base --------------------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #FFFFFF; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { max-width: 1120px; margin: 0 auto; }
.hidden-svg { position: absolute; width: 0; height: 0; overflow: hidden; }

.section-head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title { font-weight: 800; font-size: clamp(30px, 5vw, 44px); }

/* Listras decorativas (overlay) */
.stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 3px, transparent 3px, transparent 46px);
}

/* Botões ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 8px;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn svg { flex-shrink: 0; }

.btn-wa { background: var(--wa); color: #FFFFFF; font-size: 15px; padding: 12px 18px; min-height: 48px; white-space: nowrap; }
.btn-wa:hover { background: var(--wa-dark); color: #FFFFFF; }

.btn-wa-lg { background: var(--wa); color: #FFFFFF; font-size: 16px; padding: 14px 24px; border-radius: 10px; min-height: 52px; gap: 10px; }
.btn-wa-lg:hover { background: var(--wa-dark); color: #FFFFFF; }

.btn-outline {
  background: #FFFFFF;
  color: var(--wa-text);
  border: 2px solid var(--wa);
  font-size: 15px;
  padding: 12px 16px;
  min-height: 48px;
  margin-top: 6px;
}
.btn-outline:hover { background: var(--wa); color: #FFFFFF; }

.btn-hero {
  background: var(--orange);
  color: #FFFFFF;
  font-size: clamp(17px, 2.4vw, 20px);
  padding: 18px 32px;
  border-radius: 10px;
  min-height: 56px;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(242,103,34,0.4);
  margin-top: 8px;
  max-width: 100%;
  text-align: center;
}
.btn-hero:hover { background: var(--orange-hover); color: #FFFFFF; transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: #FFFFFF;
  font-size: clamp(16px, 2.3vw, 19px);
  padding: 18px 30px;
  border-radius: 10px;
  min-height: 56px;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(27,58,107,0.35);
}
.btn-navy:hover { background: var(--navy-deep); color: #FFFFFF; transform: translateY(-2px); }

.btn:focus-visible, .wa-float:focus-visible, .footer-phone:focus-visible, .footer-ig:focus-visible {
  outline: 3px solid var(--orange-soft);
  outline-offset: 3px;
}

/* Header ------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  padding: 10px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header .logo { height: 52px; width: auto; display: block; }

/* Hero --------------------------------------------------------------------- */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: #FFFFFF;
  padding: clamp(56px, 9vw, 110px) var(--pad-x) clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--orange); }
.hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-3);
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(38px, 8vw, 68px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.hero-lead {
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 1.55;
  margin: 0;
  max-width: 620px;
  color: var(--sky-1);
  text-wrap: pretty;
}
.hero-note { font-size: 14px; color: var(--sky-4); }

/* Nossos produtos ---------------------------------------------------------- */
.produtos { padding: var(--pad-y) var(--pad-x); background: var(--bg-soft); }
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}
.card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(27,58,107,0.06);
}
.card-band {
  height: 96px;
  background: var(--cor, var(--blue));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-band .stripes {
  background: repeating-linear-gradient(90deg, rgba(0,0,0,0.10) 0px, rgba(0,0,0,0.10) 4px, transparent 4px, transparent 26px);
}
.card-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor, var(--blue));
}
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { font-weight: 700; font-size: 24px; color: var(--navy); }
.card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--text-muted); flex: 1; }

/* Por que a Multiloc ------------------------------------------------------- */
.por-que { padding: var(--pad-y) var(--pad-x); background: #FFFFFF; }
.por-que-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.por-que h2 { margin: 0 0 14px; color: var(--navy); }
.por-que-lead { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--text-muted); text-wrap: pretty; }
.diferenciais { display: flex; flex-direction: column; gap: 14px; }
.diferencial {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diferencial-title { font-weight: 700; font-size: 16.5px; color: var(--navy); }
.diferencial-desc { font-size: 14.5px; line-height: 1.5; color: var(--text-muted); margin-top: 3px; }

/* Como funciona ------------------------------------------------------------ */
.como-funciona {
  padding: var(--pad-y) var(--pad-x);
  background: var(--navy);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.como-funciona .stripes {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 3px, transparent 3px, transparent 46px);
}
.como-funciona .container { position: relative; max-width: 1000px; }
.como-funciona .section-head { margin-bottom: clamp(32px, 5vw, 52px); }
.como-funciona .eyebrow { color: var(--orange-soft); }
.passos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 18px;
}
.passo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.passo-num { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: var(--orange); line-height: 1; }
.passo-title { font-weight: 700; font-size: 19px; }
.passo-desc { font-size: 15px; line-height: 1.55; color: var(--sky-2); }

/* CTA final ---------------------------------------------------------------- */
.cta-final {
  background: linear-gradient(120deg, var(--orange-dark) 0%, var(--orange) 60%, var(--orange-light) 100%);
  color: #FFFFFF;
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
  text-align: center;
}
.cta-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-final h2 { font-weight: 800; font-size: clamp(30px, 6vw, 48px); line-height: 1.1; text-wrap: balance; }
.cta-final p { margin: 0; font-size: clamp(16px, 2.4vw, 19px); color: var(--peach); }

/* Footer ------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-footer);
  color: var(--sky-2);
  padding: clamp(40px, 6vw, 64px) var(--pad-x) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 32px;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-logo-box { background: #FFFFFF; border-radius: 12px; padding: 12px 18px; display: inline-flex; }
.footer-logo-box img { height: 72px; width: auto; display: block; }
.footer-tagline { font-size: 14.5px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 16px; }
.footer-phone {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: color .18s ease;
}
.footer-phone:hover { color: var(--orange); }
.footer-ig { color: var(--sky-2); display: inline-flex; align-items: center; gap: 10px; transition: color .18s ease; }
.footer-ig:hover { color: var(--orange); }
.footer-cta { display: flex; justify-content: flex-start; }
.footer-copy {
  max-width: 1120px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: var(--sky-5);
  text-align: center;
}

/* Botão flutuante do WhatsApp --------------------------------------------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
  animation: waPulse 2.4s infinite;
  transition: background-color .18s ease, transform .18s ease;
}
.wa-float:hover { background: var(--wa-dark); color: #FFFFFF; transform: scale(1.06); }

@keyframes waPulse {
  0%   { box-shadow: 0 8px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 8px 20px rgba(0,0,0,0.28), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0); }
}

/* Acessibilidade: menos movimento ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
  .btn, .wa-float, .footer-phone, .footer-ig { transition: none; }
  .btn-hero:hover, .btn-navy:hover, .wa-float:hover { transform: none; }
}
