:root {
  /* Brand — navy é a cor central */
  --c-navy:         #0E2C6D;  
  --c-navy-2:       #1A3F8C;  
  --c-navy-deep:    #0E2C6D;  
  --c-navy-soft:    #EBF0FA;  
  --c-navy-tint:    #D7E1F2;  
  --c-blue-light:   #B8C9FF;  

  /* Brand accents */
  --c-brand:        #FBAD02;
  --c-brand-2:      #FFC233;
  --c-brand-deep:   #C68800;
  --c-brand-soft:   #FFF4DA;
  --c-wa:           #2AC765;
  --c-wa-deep:      #278048;
  --c-wa-soft:      #E6F8EE;

  /* Surfaces */
  --c-bg:           #FFFFFF;
  --c-bg-alt:       #FCFCFC;
  --c-bg-soft:      #F6F6F6;

  /* Borders */
  --c-line:         #EAEAEA;
  --c-line-2:       #E0E0E0;
  --c-line-3:       #C9C9C9;

  /* Text */
  --c-text:         #232323;
  --c-text-2:       #555558;
  --c-text-3:       #8A8A8E;
  --c-text-4:       #AFAFAF;
  --c-text-on-navy:        #FFFFFF;
  --c-text-on-navy-2:      #C9D0E6;
  --c-text-on-navy-3:      #8A95B8;

  /* Dark surfaces — navy substitui preto */
  --c-dark:         var(--c-navy);
  --c-dark-2:       var(--c-navy-2);
  --c-dark-3:       var(--c-navy-3);

  /* Sombras com tom da marca */
  --shadow-sm:      0 1px 2px rgba(22,43,105,.05);
  --shadow-md:      0 4px 12px rgba(22,43,105,.08);
  --shadow-lg:      0 12px 24px rgba(22,43,105,.12);
  --shadow-amber:   0 8px 24px -8px rgba(251,173,2,.45);
  --shadow-navy:    0 8px 24px -8px rgba(22,43,105,.4);

  /* Radius (small, Vercel-style) */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  /* Typography */
  --f-display: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body:    "Geist", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    "Manrope", "Geist", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container:   1200px;
  --section-py:  clamp(72px, 9vw, 120px);
  --header-h:    112px;

  /* Easing */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ==== RESET ==== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: transparent;
  overscroll-behavior: none;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  overscroll-behavior: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0;
}
p { margin: 0; }

::selection { background: var(--c-navy-2); color: #fff; }
::-moz-selection { background: var(--c-navy-2); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==== UTILITY ==== */
.text-accent { color: var(--c-brand-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 14px;
  border-radius: 100px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-blue-light);
  box-shadow: 0 0 0 3px rgba(184,201,255,.2);
}

/* ==== BUTTONS ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--r-md);
  transition: all .15s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: -0.005em;
}
.btn svg { transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(1px); }

.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--lg { padding: 12px 22px; font-size: 15px; }
.btn--block { width: 100%; }

/* Primary = laranja da marca (CTA principal) */
.btn--primary {
  background: var(--c-brand);
  color: #1A1100;
  border-color: var(--c-brand);
  box-shadow: var(--shadow-amber);
}
.btn--primary:hover {
  background: var(--c-brand-2);
  border-color: var(--c-brand-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -6px rgba(251,173,2,.55);
}

/* Ghost (em fundo claro) */
.btn--ghost,
.btn--ghost-dark {
  background: var(--c-bg);
  color: var(--c-text);
  border-color: var(--c-line-2);
}
.btn--ghost:hover,
.btn--ghost-dark:hover {
  background: var(--c-bg-alt);
  border-color: var(--c-line-3);
}

/* Ghost em fundo navy/escuro (variante light em hero / cta) */
.btn--ghost-light,
.section--dark .btn--ghost,
.hero .btn--ghost,
.cta-final .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn--ghost-light:hover,
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover,
.cta-final .btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}

/* Variante navy (secundário forte) */
.btn--navy {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.btn--navy:hover {
  background: var(--c-navy-2);
  border-color: var(--c-navy-2);
}

/* Accent legado (mantém compat) */
.btn--accent {
  background: var(--c-brand);
  color: #1A1100;
  border-color: var(--c-brand);
}
.btn--accent:hover {
  background: var(--c-brand-2);
  border-color: var(--c-brand-2);
}

/* WhatsApp */
.btn--whatsapp {
  background: var(--c-wa);
  color: #fff;
  border-color: var(--c-wa);
}
.btn--whatsapp:hover {
  background: var(--c-wa-deep);
  border-color: var(--c-wa-deep);
}

/* ==== TOP STRIPE (faixa laranja decorativa) ==== */
.topstripe {
  height: 6px;
  background: var(--c-brand);
}

/* ==== TOPBAR (navy) ==== */
.topbar {
  background: var(--c-navy);
  color: var(--c-text-on-navy-2);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 16px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text-on-navy-2);
}
.topbar__item svg { color: var(--c-brand); flex-shrink: 0; }
.topbar__right a { color: var(--c-text-on-navy-2); }
.topbar__right a:hover { color: var(--c-brand); }
.topbar__divider {
  width: 1px; height: 12px; background: rgba(255,255,255,.14);
}
.topbar__hours { color: var(--c-text-on-navy-3); }

@media (max-width: 768px) {
  .topbar__item--hide-mobile, .topbar__hours, .topbar__divider { display: none; }
  .topbar__inner { font-size: 11.5px; min-height: 34px; }
}

/* ==== HEADER (fixed — fora do fluxo, sem criar gap) ==== */
.header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Header usa container mais largo, com respiro lateral confortável */
.header .container {
  max-width: none;
  padding: 0 72px;
}
@media (max-width: 1100px) {
  .header .container { padding: 0 48px; }
}
@media (max-width: 768px) {
  .header .container { padding: 0 24px; }
}
.header.is-scrolled {
  background: var(--c-navy-deep);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}
.header__logo img {
  height: 88px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .header__logo img { height: 64px; }
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__items {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__items li { margin: 0; }
.nav__cta { display: none; }
.nav a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 4px;
  margin: 0 8px;
  position: relative;
  transition: color .15s var(--ease);
  letter-spacing: -0.005em;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s var(--ease);
  border-radius: 2px;
}
.nav a:hover { color: var(--c-brand); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: all .15s var(--ease);
}
.hamburger:hover { background: rgba(255,255,255,.12); }
.hamburger span {
  width: 16px; height: 1.5px;
  background: #fff;
  border-radius: 4px;
  transition: all .25s var(--ease);
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .hamburger { display: flex; }

  /* Menu desce do topo como um dropdown — altura só até depois do CTA */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    background: var(--c-navy-deep);
    padding: 16px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0;
    z-index: 70;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s var(--ease), opacity .3s var(--ease), visibility .3s var(--ease);
    box-shadow: 0 24px 40px -16px rgba(0,0,0,.4);
    border-left: 0;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Lista de items — texto começa da esquerda (alinhamento ocidental) */
  .nav__items {
    display: block;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  .nav__items li {
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  .nav__items a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 20px 0;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    letter-spacing: -0.018em;
    transition: color .2s var(--ease), padding-left .2s var(--ease);
    text-align: left;
  }
  .nav__items a::after { display: none; }
  .nav__items a::before { display: none; }
  .nav__items a:hover { color: var(--c-brand); }
  .nav__items li:last-child a { border-bottom: 0; }

  /* CTA — mesmo tamanho e radius do botão "Solicitar orçamento" da hero */
  .nav a.nav__cta,
  a.nav__cta {
    display: inline-flex;
    width: 100%;
    margin: 20px 0 0;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 500;
    color: #1A1100;
    border-radius: var(--r-md);
    justify-content: center;
    flex-shrink: 0;
  }

  .header__actions .btn--primary { display: none; }
}

@media (max-width: 480px) {
  .nav { padding: 12px 20px 24px; }
  .nav__items a { font-size: 18px; padding: 18px 0; }
}

/* ==== HERO (full viewport height, conteúdo centralizado) ==== */
.hero {
  position: relative;
  background: var(--c-navy);
  color: #fff;
  overflow: hidden;
  /* sem margin-top negativo: hero começa em y=0 naturalmente, navbar fixed em cima */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 24px) 0 64px;
  isolation: isolate;
}

@media (max-width: 880px) {
  .hero {
    min-height: 90vh;
    min-height: 90dvh;
    padding: calc(var(--header-h) + 40px) 0 56px;
  }
  .hero__content { gap: 0; }
  .hero__content .eyebrow { margin-bottom: 14px; }
  .hero__title { margin-bottom: 56px; }
  .hero__sub { margin-bottom: 88px; }
  .hero__cta { margin-bottom: 0; }
}
@media (max-width: 560px) {
  .hero {
    min-height: 88vh;
    min-height: 88dvh;
    padding: calc(var(--header-h) + 32px) 0 48px;
  }
  .hero__content .eyebrow { margin-bottom: 18px; }
  .hero__title { margin-bottom: 88px; }
  .hero__sub { margin-bottom: 140px; }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('assets/hero-mestre-desktop.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: center center;
  transition: transform .15s linear;
  will-change: transform;
  width: 100%;
  height: 100%;
}
/* Filtro preto + azul-escuro (equilíbrio entre leitura e visual) */
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(6,12,35,.6) 50%, rgba(10,18,50,.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,5,20,.55) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 65%);
}
/* Glow azul-claro (substitui o glow âmbar para tom mais frio) */
.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(184,201,255,.18) 0%, rgba(184,201,255,0) 60%);
  pointer-events: none;
  mix-blend-mode: screen;
}
/* eyebrow no hero (fundo navy) — texto claro, sem borda branca */
.hero .eyebrow {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

.hero__inner {
  position: relative;
  text-align: center;
}
.hero__content {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero__title .text-accent {
  color: #6B8CFF;
}
/* Quebra forçada de linha só no desktop */
.hero__break { display: none; }
@media (min-width: 880px) {
  .hero__break { display: block; }
  .hero__line { white-space: nowrap; }
}

.hero__sub {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  color: var(--c-text-on-navy-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
}
.hero__card {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  background: linear-gradient(155deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 36px;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.4));
}
.hero__badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-brand);
  color: #1A1100;
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-amber);
}
.hero__badge svg { color: #1A1100; }

.hero__hex { display: none; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  z-index: 3;
}
.hero__scroll span {
  width: 2px;
  height: 6px;
  background: var(--c-brand);
  border-radius: 100px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 960px) {
  .hero__scroll { display: none; }
}

@media (max-width: 560px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }
  .hero__cta .btn { width: 100%; }
}

/* ==== SECTIONS ==== */
.section {
  padding: var(--section-py) 0;
  position: relative;
  background: var(--c-bg);
}
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-bg); color: var(--c-text); }
.section__bg-pattern { display: none; }

.section__head {
  max-width: 720px;
  margin: 0 0 56px;
}
.section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  max-width: none;
}
.section__head--center {
  margin: 0 auto 56px;
  text-align: center;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--c-navy);
  margin-bottom: 16px;
  padding: 7px 16px 7px 14px;
  border: 1px solid var(--c-navy-tint);
  border-radius: 100px;
  background: var(--c-navy-soft);
}
.section__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(22,43,105,.18);
}
.section__eyebrow--light {
  color: var(--c-navy);
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.95);
}

.section__title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 720px;
  color: var(--c-text);
}
.section__title--light { color: var(--c-text); }

/* Subtítulo das seções */
.section__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text-2);
  margin: 16px 0 0;
  max-width: 620px;
  letter-spacing: -0.005em;
}
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* Linha de modalidades (Aluguel: Diário · Semanal · Quinzenal · Mensal) */
.rent-modes {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  font-size: 14.5px;
  color: var(--c-text-2);
  letter-spacing: -0.005em;
}
.rent-modes__label {
  font-weight: 600;
  color: var(--c-text);
  margin-right: 2px;
}
.rent-modes__sep {
  color: var(--c-line-3);
  font-weight: 700;
}

@media (max-width: 768px) {
  .section__head--row { flex-direction: column; align-items: start; }
}

/* ==== FEATURES STRIP (layout editorial, sem cards) ==== */
.features-strip {
  background: var(--c-bg);
  padding: 96px 0;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--c-line);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature {
  position: relative;
  display: block;
  background: transparent;
  border: 0;
  padding: 4px 44px;
}
.feature + .feature {
  border-left: 1px solid var(--c-line);
}

.feature__icon {
  display: block;
  width: 44px;
  height: 44px;
  color: var(--c-navy);
  margin-bottom: 28px;
}

.feature h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.022em;
  color: var(--c-text);
  line-height: 1.22;
}

.feature p {
  color: var(--c-text-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 340px;
}

@media (max-width: 880px) {
  .features {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 84%;
    margin: 0 auto;
  }
  .features-strip { padding: 40px 0 48px; }
  .feature { padding: 18px 0; }
  .feature + .feature {
    border-left: 0;
    border-top: 1px solid var(--c-line);
  }
  .feature__icon { width: 38px; height: 38px; margin-bottom: 12px; }
  .feature h3 { font-size: 18px; margin-bottom: 6px; }
  .feature p { font-size: 14px; line-height: 1.5; }
}
@media (max-width: 480px) {
  .features { max-width: 88%; }
  .features-strip { padding: 32px 0 40px; }
  .feature { padding: 16px 0; }
}

/* ==== ABOUT ==== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about__media {
  position: relative;
}
.about__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  aspect-ratio: 4 / 5;
  background: var(--c-bg-soft);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--c-brand);
  color: var(--c-navy);
  padding: 18px 22px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-amber);
}
.about__badge strong {
  font-family: var(--f-display);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-navy);
}
.about__badge span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  font-family: var(--f-mono);
  color: var(--c-navy);
  opacity: .85;
}

.about__content .section__title { margin-bottom: 16px; }
.about__lead {
  color: var(--c-text-2);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.about__list {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.about__list li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--c-text-2);
  line-height: 1.55;
}
.about__list li span {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-brand-soft);
  position: relative;
  margin-top: 1px;
}
.about__list li span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 8px;
  border: solid var(--c-brand-deep);
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}

.about__cta { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 960px) {
  .about { grid-template-columns: 1fr; gap: 50px; }
  .about__media {
    max-width: 360px;
    margin: 0;
  }
  .about__img { aspect-ratio: 5 / 4; }
  .about__badge { right: 16px; bottom: -16px; padding: 14px 18px; }
  .about__badge strong { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .about__media { max-width: 280px; }
}

/* ==== BENEFITS ==== */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg);
}
.benefit {
  background: var(--c-bg);
  padding: 30px;
  transition: background .2s var(--ease);
  position: relative;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.benefit:nth-child(3n) { border-right: 0; }
.benefit:nth-last-child(-n+3) { border-bottom: 0; }
.benefit:hover { background: var(--c-bg-alt); }

.benefit__num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-brand-deep);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.benefit h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.benefit p {
  color: var(--c-text-2);
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefit { border-right: 1px solid var(--c-line) !important; border-bottom: 1px solid var(--c-line) !important; }
  .benefit:nth-child(2n) { border-right: 0 !important; }
  .benefit:nth-last-child(-n+2) { border-bottom: 0 !important; }
}
@media (max-width: 560px) {
  .benefits { grid-template-columns: 1fr; }
  .benefit { border-right: 0 !important; }
  .benefit:last-child { border-bottom: 0 !important; }
}

/* ==== CATALOG sub-headers (Mais alugados / Catálogo completo) ==== */
.catalog__row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.catalog__row--cats {
  margin-top: 72px;
}
.catalog__sub {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0;
}
.catalog__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s var(--ease), gap .15s var(--ease);
}
.catalog__link:hover {
  color: var(--c-navy);
  gap: 9px;
}
.catalog__hint {
  font-size: 13px;
  color: var(--c-text-3);
}

@media (max-width: 560px) {
  .catalog__row { gap: 8px; }
  .catalog__row--cats { margin-top: 56px; }
  .catalog__sub { font-size: 1.15rem; }
}

/* ==== PRODUCTS ==== */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s var(--ease);
  display: flex;
  flex-direction: column;
}
.product:hover {
  border-color: var(--c-line-3);
}
.product__media {
  aspect-ratio: 1 / 1;
  background: var(--c-bg-alt);
  padding: 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s var(--ease);
}
.product:hover .product__media img { transform: scale(1.04); }

.product__body {
  padding: 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.product__cat {
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--c-text-3);
  margin-bottom: 4px;
}
.product h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  color: var(--c-text);
}
.product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
  margin-top: auto;
  padding: 11px 16px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-navy);
  border-radius: var(--r-md);
  transition: all .18s var(--ease);
  width: 100%;
  letter-spacing: -0.005em;
}
.product__cta svg { transition: transform .2s var(--ease); }
.product__cta:hover {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-navy);
}
.product__cta:hover svg { transform: translateX(3px); }

@media (max-width: 1100px) { .products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .products { grid-template-columns: repeat(2, 1fr); } }

/* ==== CATEGORIES (carrossel horizontal, 2 linhas) ==== */
.cat-carousel {
  position: relative;
}
.cat-carousel__viewport {
  overflow: hidden;
}
.categories {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.category {
  display: flex;
  align-items: start;
  gap: 18px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  min-width: 0;
}
.category__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--c-navy);
  color: var(--c-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s var(--ease);
  border: 1px solid var(--c-navy);
}
.category__icon svg { width: 22px; height: 22px; }
.category h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
  color: var(--c-text);
}
.category p {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.55;
}

/* Controles do carrossel (botões prev/next) */
.cat-carousel__controls {
  display: flex;
  gap: 8px;
}
.cat-carousel__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-line-2);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s var(--ease);
  cursor: pointer;
}
.cat-carousel__btn:hover {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
}
.cat-carousel__btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.cat-carousel__btn:disabled:hover {
  background: var(--c-bg);
  color: var(--c-text);
  border-color: var(--c-line-2);
}

@media (max-width: 880px) {
  .categories { grid-auto-columns: calc((100% - 14px) / 2); }
  .category { padding: 18px; }
}
@media (max-width: 560px) {
  .categories { grid-auto-columns: 100%; gap: 12px; }
}

/* ==== GALERIA (4 imagens estáticas alinhadas) ==== */
.gallery-section {
  background: var(--c-bg-alt);
  padding: 24px 0 56px;
  border-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid__item {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  box-shadow:
    0 12px 28px -14px rgba(22,43,105,.18),
    0 3px 10px -4px rgba(22,43,105,.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-grid__item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 36px -14px rgba(22,43,105,.24),
    0 4px 12px -4px rgba(22,43,105,.14);
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 880px) {
  .gallery-section { padding: 16px 0 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ==== TESTIMONIALS (cards largos + fade lateral em vez de corte) ==== */
.testimonials {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.testimonials__viewport {
  overflow: hidden;
  padding: 24px 0;
  margin: -24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}
.testimonials__track {
  display: flex;
  gap: 22px;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.testimonial {
  flex: 0 0 58%;
  max-width: 720px;
  padding: 36px 38px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  text-align: left;
  opacity: 0.4;
  transition: opacity .55s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial.is-active {
  opacity: 1;
  border-color: rgba(22,43,105,.4);
  box-shadow:
    0 22px 48px -16px rgba(22,43,105,.18),
    0 4px 14px -4px rgba(22,43,105,.06);
}

/* Header: avatar + nome/cargo + estrelas */
.testimonial__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-bg);
  box-shadow: 0 0 0 1px var(--c-line);
}
.testimonial__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.testimonial__meta strong {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-text);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.testimonial__meta span {
  font-size: 12.5px;
  color: var(--c-text-3);
  margin-top: 2px;
}
.testimonial__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--c-brand);
  flex-shrink: 0;
}

/* Ícone de aspas */
.testimonial__mark {
  color: var(--c-navy);
  opacity: .15;
  flex-shrink: 0;
  margin-bottom: -6px;
}

.testimonial__quote {
  font-family: var(--f-display);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--c-text-2);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
}
.testimonial__quote::before,
.testimonial__quote::after { display: none; }

/* Controles */
.testimonials__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}
.testimonials__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.testimonials__btn:hover {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
  transform: translateY(-1px);
}
.testimonials__btn svg { width: 16px; height: 16px; }

.testimonials__dots { display: flex; gap: 10px; align-items: center; }
.testimonials__dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-line-3);
  transition: all .3s var(--ease);
  padding: 0;
  border: 0;
}
.testimonials__dots button:hover { background: var(--c-text-3); }
.testimonials__dots button.is-active {
  background: var(--c-navy);
  transform: scale(1.4);
}

@media (max-width: 1080px) {
  .testimonial { flex: 0 0 68%; padding: 30px 32px; }
}
@media (max-width: 720px) {
  .testimonial { flex: 0 0 86%; padding: 24px; border-radius: 16px; gap: 16px; }
  .testimonial__head { gap: 12px; }
  .testimonial__stars { display: none; }
  .testimonials__viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }
}

/* ==== CTA FINAL (navy limpo, focado) ==== */
.cta-final {
  background: var(--c-navy-deep);
  color: #fff;
  padding: clamp(88px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
/* Glow único centralizado (sem aparência muddy) */
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(251,173,2,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
  pointer-events: none;
  opacity: .6;
}

.cta-final__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final .section__eyebrow {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: #fff;
  font-size: 13px;
  padding: 7px 16px 7px 14px;
}
.cta-final .section__eyebrow::before { background: var(--c-blue-light); box-shadow: 0 0 0 3px rgba(184,201,255,.2); }

.cta-final .section__title {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
  font-weight: 600;
}

.cta-final p {
  color: rgba(255,255,255,.7);
  margin-top: 20px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

/* Badges grandes e elegantes */
.cta-final__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 36px 0 40px;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.005em;
  backdrop-filter: blur(4px);
}
.cta-pill svg {
  color: var(--c-brand);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.cta-final__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-final__actions .btn { padding: 14px 26px; }

@media (max-width: 560px) {
  .cta-final__badges { gap: 8px; margin: 28px 0 32px; }
  .cta-pill { font-size: 12.5px; padding: 7px 14px; }
}
@media (max-width: 480px) {
  .cta-final__actions { width: 100%; flex-direction: column; }
  .cta-final__actions .btn { width: 100%; }
}

/* ==== CONTACT ==== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__lead {
  color: var(--c-text-2);
  font-size: 15px;
  margin: 16px 0 30px;
  line-height: 1.6;
}
.contact__list { display: grid; gap: 18px; }
.contact__list li {
  display: flex;
  gap: 14px;
  align-items: start;
}
.contact__list strong {
  display: block;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-text-3);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact__list a:hover { color: var(--c-text); text-decoration: underline; text-underline-offset: 3px; }
.contact__list div { line-height: 1.55; color: var(--c-text); font-size: 14px; }
.contact__ico {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--c-brand-soft);
  color: var(--c-brand-deep);
  border: 1px solid rgba(251,173,2,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__ico svg { width: 16px; height: 16px; }

/* ==== Card de mapa (placeholder) à direita ==== */
.contact__map {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: 56px;
}
.contact__map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.contact__map-head h3 {
  font-size: 1.05rem;
  margin: 0 0 2px;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.contact__map-head p {
  font-size: 13px;
  color: var(--c-text-3);
  line-height: 1.4;
  max-width: 320px;
}
.contact__map-frame {
  position: relative;
  flex: 1;
  min-height: 380px;
  background:
    radial-gradient(ellipse at center, rgba(14,44,109,.04) 0%, transparent 60%),
    var(--c-bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.contact__map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,44,109,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,44,109,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  pointer-events: none;
}
.contact__map-placeholder {
  width: clamp(72px, 11vw, 110px);
  height: auto;
  color: var(--c-brand);
  filter: drop-shadow(0 4px 16px rgba(251,173,2,.25));
  position: relative;
  z-index: 1;
}
.contact__map-caption {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-text-3);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin: 0;
}
.contact__map-frame--embed {
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.contact__map-frame--embed::before { content: none; }
.contact__map-frame--embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .contact__map { margin-top: 0; }
  .contact__map-frame { min-height: 280px; }
  .contact__map-frame--embed iframe { min-height: 280px; }
}

/* ==== FOOTER (navy) ==== */
.footer {
  background: var(--c-navy-deep);
  color: var(--c-text-on-navy-2);
  padding-top: 110px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.3fr 1fr;
  gap: 80px;
  padding-bottom: 100px;
}
.footer__brand img {
  height: 64px;
  width: auto;
  display: block;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-text-on-navy-3);
  max-width: 360px;
  margin: 24px 0 28px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-on-navy-2);
  transition: all .15s var(--ease);
}
.footer__social a:hover {
  background: var(--c-brand);
  color: var(--c-navy);
  border-color: var(--c-brand);
  transform: translateY(-1px);
}

.footer__col h5 {
  color: #fff;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  color: var(--c-text-on-navy-2);
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer__col a:hover { color: var(--c-brand); }

/* Lista de contato no footer com ícones */
.footer__contact { display: grid; gap: 14px; }
.footer__contact li { margin: 0; }
.footer__contact li a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 14px;
  color: var(--c-text-on-navy-2);
  line-height: 1.5;
  transition: color .15s var(--ease);
}
.footer__contact li a:hover { color: var(--c-brand); }
.footer__contact li a:hover .footer__contact-ico {
  background: var(--c-brand);
  color: var(--c-navy);
  border-color: var(--c-brand);
}
.footer__contact-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-brand);
  transition: all .15s var(--ease);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12.5px;
  color: var(--c-text-on-navy-3);
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 48px; padding-bottom: 72px; }
  .footer { padding-top: 80px; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 56px; }
  .footer { padding-top: 64px; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
}

/* ==== WHATSAPP FLOATING ==== */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(42,199,101,.35);
  z-index: 70;
  transition: all .2s var(--ease);
}
.wa-float:hover {
  background: var(--c-wa-deep);
  transform: scale(1.05);
}
.wa-float svg { width: 22px; height: 22px; }

/* ==== REVEAL ANIMATION ==== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
