/* =========================================================
   GERENCIAL CONDOMÍNIOS — One Page institucional
   ========================================================= */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
/* Evita que strings longas sem espaço (e-mails, URLs) estourem
   containers flex/grid — o "automatic minimum size" do flex/grid usa o
   min-content do texto, que sem isso seria a palavra inteira. */
p, span, strong, small, li, a, h1, h2, h3, h4 { overflow-wrap: break-word; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
input, textarea { font: inherit; color: inherit; }

@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;
  }
}

/* ---------- 2. Tokens ---------- */
:root {
  /* Cores institucionais */
  --blue: #1B4B8F;
  --blue-600: #164079;
  --blue-light: #EAF1FB;
  --blue-dark: #0A1F3D;
  --blue-dark-700: #071630;
  --orange: #FF6A2B;       /* laranja vibrante — uso decorativo sobre fundos escuros */
  --orange-600: #E85A1C;
  --orange-text: #C2410C;  /* laranja acessível (>=4.5:1) para texto/CTA sobre fundo claro */
  --orange-text-600: #9A3409;
  --white: #FFFFFF;

  --ink-900: #10151F;
  --ink-700: #3A4252;
  --ink-500: #6B7385;
  --ink-300: #A6ADBB;
  --border: #E4E8F0;
  --surface: #F6F8FC;

  --font-head: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(10, 31, 61, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 31, 61, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 31, 61, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 3. Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden; /* rede de segurança contra overflow horizontal */
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--blue-dark);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.4vw + 1rem, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 2.2vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1vw + 0.8rem, 1.4rem); }
p  { max-width: 62ch; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding-block: clamp(64px, 9vw, 120px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange-text);
  display: inline-block;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-500); margin-top: 14px; font-size: 1.05rem; }
.section-head.center p { margin-inline: auto; }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-dark);
  color: var(--white);
  padding: 12px 20px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* Focus states (a11y) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange-text);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.25s ease;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--orange-text);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(194, 65, 12, 0.32);
}
.btn-primary:hover { background: var(--orange-text-600); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(194, 65, 12, 0.4); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- 5. Header ---------- */
.top-accent-bar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: var(--orange);
  z-index: 1100;
  pointer-events: none;
}
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding-block: 20px;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header.is-scrolled {
  background: rgba(10, 31, 61, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  padding-block: 12px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; flex: none; transition: height 0.4s var(--ease); }
.header.is-scrolled .logo-img { height: 34px; }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: 36px; }
.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  position: relative;
  padding-block: 4px;
  transition: color 0.3s ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header .btn-primary { padding: 12px 22px; font-size: 0.88rem; white-space: nowrap; }

/* Telas bem estreitas: logo + CTA + hambúrguer disputam pouco espaço */
@media (max-width: 420px) {
  .header-actions { gap: 8px; }
  .header .btn-primary { padding: 10px 14px; font-size: 0.78rem; }
  .logo-img,
  .header.is-scrolled .logo-img { height: 28px; }
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  flex: none;
}
.nav-toggle svg { color: var(--white); width: 22px; height: 22px; }

@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
}

/* Mobile nav panel */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--blue-dark);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s var(--ease), visibility 0s linear 0.45s;
}
.nav-mobile.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.45s var(--ease);
}
.nav-mobile-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.nav-mobile-close { width: 44px; height: 44px; display: grid; place-items: center; background: rgba(255,255,255,0.1); border-radius: 10px; }
.nav-mobile-close svg { width: 22px; height: 22px; color: var(--white); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 6px; }
.nav-mobile a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  padding-block: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile-footer { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }
.nav-mobile-footer .btn { width: 100%; }
body.nav-open { overflow: hidden; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue-dark-700) 55%, #081735 100%);
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(27, 75, 143, 0.55), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -25%; left: -15%;
  width: 55%; aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(255, 106, 43, 0.18), transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  overflow-x: hidden;
  overflow-y: clip;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 640px; min-width: 0; }
.hero-visual, .about-text, .about-quote-visual, .contact-info, .contact-form, .tech-copy, .tech-visual, .footer-brand, .footer-col { min-width: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub { color: rgba(255, 255, 255, 0.78); font-size: 1.15rem; margin-bottom: 38px; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px 40px; }
.hero-meta-item { display: flex; align-items: center; gap: 12px; }
.hero-meta-item svg { width: 22px; height: 22px; color: var(--orange); flex: none; }
.hero-meta-item span { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.hero-meta-item strong { display: block; font-family: var(--font-head); font-size: 0.98rem; color: var(--white); font-weight: 600; }

.hero-visual { position: relative; display: flex; justify-content: center; }
/* .hero-visual-frame define o tamanho fixo da FOTO. A placa azul
   (::before) é independente e cresce/encolhe sem afetar a foto —
   sempre centralizada nela via inset simétrico. */
.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 317px;
  aspect-ratio: 2 / 3;
  margin-inline: auto;
  margin-block: 56px;
}
.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 52.8px -47.5px 5.25px -47.5px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, #22518f, #0e2a54 70%);
  z-index: 0;
}
.hero-visual-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

@media (min-width: 900px) {
  .hero .container { grid-template-columns: 1.05fr 0.85fr; }
  .hero-visual-frame { max-width: 365px; }
  .hero-visual-frame::before { inset: 45.6px -54.8px -9.15px -54.8px; }
}

/* ---------- 7. About / A Gerencial ---------- */
.about { background: var(--white); }
.about .container { display: grid; grid-template-columns: 1fr; overflow-x: hidden; overflow-y: clip; gap: 56px; }
/* .about-quote-visual reserva, no próprio fluxo do layout, apenas os
   20% da imagem que ficam para fora do card — os outros 80% da altura
   da imagem "mergulham" dentro do quadro azul (compensados via
   padding-top extra em .about-quote, +10px de respiro até o texto). */
.about-quote-visual {
  position: relative;
  padding-top: 63px;
}
.about-quote-image {
  position: absolute;
  top: 0;
  left: clamp(24px, 4vw, 40px);
  width: min(324px, 82%);
  z-index: 2;
  filter: drop-shadow(0 16px 26px rgba(10, 31, 61, 0.28));
}
.about-quote-image img { display: block; width: 100%; height: auto; }

.about-quote {
  position: relative;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  padding-top: calc(clamp(32px, 4vw, 56px) + 251px);
  overflow: hidden;
}
.about-quote::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,106,43,0.22), transparent 70%);
}
.about-quote blockquote {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.5vw + 0.65rem, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 46ch;
}
.about-text p + p { margin-top: 16px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.about-tags span {
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (min-width: 960px) {
  .about .container { grid-template-columns: 0.95fr 1.05fr; align-items: center; }
  .about-quote-visual { padding-top: 84px; }
  .about-quote-image { width: min(432px, 82%); }
  .about-quote { padding-top: calc(clamp(32px, 4vw, 56px) + 335px); }
}

/* ---------- 8. Services ---------- */
.services { background: var(--surface); }
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

/* .service-card-media é só a área de referência (sem overflow) — quem
   recorta o conteúdo (foto/gradiente/ícone) é o -inner, para o selo
   (.service-card-badge), que fica fora do -inner, poder "vazar" para
   fora da foto sem ser cortado. */
.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
}
.service-card-media-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-media.media-alt .service-card-media-inner { background: linear-gradient(135deg, var(--blue-dark) 0%, #0d2c56 60%, var(--blue-dark) 100%); }
.service-card-media-inner::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 60%);
}
.service-card-media .media-icon {
  position: relative;
  width: 72px;
  height: 72px;
  color: rgba(255, 255, 255, 0.32);
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-media .media-icon { transform: scale(1.08) rotate(-3deg); }

.service-card-media.has-photo .service-card-media-inner { background: var(--blue-dark); }
.service-card-media.has-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-media.has-photo img { transform: scale(1.06); }

.service-card-badge {
  position: absolute;
  right: 22px;
  bottom: -22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-text);
  border: 4px solid var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: background-color 0.4s ease, transform 0.4s var(--ease);
}
.service-card-badge svg { width: 22px; height: 22px; color: var(--white); }
.service-card:hover .service-card-badge { background: var(--blue); transform: scale(1.08); }

.service-card-body { padding: 40px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-tag {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 10px;
}
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: var(--ink-500); font-size: 0.96rem; }
.service-card-body ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.service-card-body li { font-size: 0.88rem; color: var(--ink-500); display: flex; gap: 8px; align-items: flex-start; }
.service-card-body li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-text);
  margin-top: 7px;
  flex: none;
}
.service-card-link {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  transition: color 0.3s ease;
}
.service-card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-card-link { color: var(--orange-text); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ---------- 9. Differentials ---------- */
.differentials { background: var(--blue-dark); color: var(--white); position: relative; overflow: hidden; }
.differentials::before {
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 90%; max-width: 900px; aspect-ratio: 2/1;
  background: radial-gradient(ellipse at center, rgba(27,75,143,0.5), transparent 70%);
  pointer-events: none;
}
.differentials .section-head h2 { color: var(--white); }
.differentials .section-head p { color: rgba(255,255,255,0.65); }
.differentials .eyebrow, .differentials .eyebrow::before { color: var(--orange); background: var(--orange); }
.diff-grid {
  position: relative;
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }

.diff-item {
  background: rgba(255,255,255,0.03);
  padding: 34px 30px;
  transition: background-color 0.35s ease;
}
.diff-item:hover { background: rgba(255,255,255,0.07); }
.diff-item .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255, 106, 43, 0.15);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.diff-item .icon svg { width: 24px; height: 24px; color: var(--orange); }
.diff-item h3 { color: var(--white); margin-bottom: 8px; font-size: 1.08rem; }
.diff-item p { color: rgba(255,255,255,0.62); font-size: 0.92rem; }

/* ---------- 10. Technology ---------- */
.tech { background: var(--white); }
.tech .container {
  display: grid;
  grid-template-columns: 1fr;
  overflow-x: hidden;
  overflow-y: clip;
  gap: 40px;
  align-items: center;
}
.tech-copy .eyebrow { color: var(--blue); }
.tech-copy .eyebrow::before { background: var(--blue); }

.expansion-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.expansion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.expansion-city {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 1rem;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(194, 65, 12, 0.1);
  color: var(--orange-text);
  flex: none;
}
.status-pill::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.expansion-item.is-active .status-pill { background: rgba(30, 122, 56, 0.12); color: #1E7A38; }
.expansion-item:not(.is-active) .status-pill::before { animation: expansion-pulse 1.8s ease-in-out infinite; }
@keyframes expansion-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .expansion-item:not(.is-active) .status-pill::before { animation: none; }
}

.tech-closing { margin-top: 26px; color: var(--ink-500); font-size: 1rem; }

.tech-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.tech-visual img { width: 100%; height: auto; display: block; }

@media (min-width: 900px) { .tech .container { grid-template-columns: 1fr 0.9fr; } }

/* ---------- 11. CTA intermediário ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0d2c56 60%, var(--blue-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(255,106,43,0.22), transparent 55%);
  pointer-events: none;
}
.cta-band .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
}
.cta-band h2 { color: var(--white); max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 1.08rem; max-width: 52ch; }

@media (min-width: 860px) {
  .cta-band .container { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
  .cta-band .cta-text { max-width: 640px; }
}

/* ---------- 12. Contato ---------- */
.contact { background: var(--surface); }
.contact .container { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card > div { min-width: 0; }
.contact-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.contact-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-light);
  display: grid; place-items: center;
  flex: none;
}
.contact-card .icon svg { width: 22px; height: 22px; color: var(--blue); }
.contact-card span { display: block; font-size: 0.8rem; color: var(--ink-500); margin-bottom: 4px; }
.contact-card strong, .contact-card a { font-family: var(--font-head); font-size: 1rem; color: var(--blue-dark); font-weight: 600; }
.contact-card a:hover { color: var(--orange-text); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { color: var(--ink-500); margin-bottom: 28px; font-size: 0.95rem; }

.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 0.96rem;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field.has-error input, .field.has-error textarea { border-color: #E14848; }
.field-error { display: none; font-size: 0.8rem; color: #E14848; margin-top: 6px; }
.field.has-error .field-error { display: block; }

/* Honeypot (anti-spam) */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-foot { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.form-note { font-size: 0.78rem; color: var(--ink-500); }
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status.success { background: #EAF8EE; color: #1E7A38; }
.form-status.error { background: #FDEDED; color: #C22; }

@media (min-width: 980px) {
  .contact .container { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}

/* ---------- 13. Footer ---------- */
.footer { background: var(--blue-dark-700); color: rgba(255,255,255,0.7); padding-block: 64px 28px; }
.footer .container { display: grid; grid-template-columns: 1fr; gap: 44px; }
.footer-brand p { color: rgba(255,255,255,0.55); margin-top: 16px; max-width: 40ch; font-size: 0.92rem; }
.footer .logo-img { height: 40px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.2fr 1fr; } }
.footer-col h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.65); transition: color 0.25s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
}
.footer-credit a { display: inline-flex; line-height: 0; }
.footer-credit img {
  height: 26px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.footer-credit a:hover img { opacity: 1; transform: scale(1.06); }

/* ---------- 14. WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(230, 126, 17, 0.45);
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.whatsapp-float img { width: 100%; height: 100%; }
.whatsapp-float:hover { animation-play-state: paused; transform: scale(1.06); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(230, 126, 17, 0.45); }
  50% { box-shadow: 0 12px 28px rgba(230, 126, 17, 0.45), 0 0 0 10px rgba(230, 126, 17, 0.12); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}

/* ---------- 15. Reveal animations ---------- */
/* O estado oculto só se aplica quando o JS confirma que vai revelar os
   elementos (classe "js" no <html>, definida por um script inline no
   <head>). Sem JS, o conteúdo permanece sempre visível. */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
html.js .reveal-stagger.is-visible > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* Variante: entrada deslizando da direita para a esquerda (imagens do
   Hero, da seção "A Gerencial" e do mapa em "Expansão"). O container de
   cada seção tem overflow-x:hidden (ver regras .hero .container etc.)
   para conter esse deslocamento e nunca gerar overflow horizontal na
   página, em qualquer largura de tela. */
html.js .reveal-left {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.js .reveal-left.is-visible { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { opacity: 1; transform: none; transition: none; }
}
