/* =====================================================
   AJA CORTE LASER — style.css
   Paleta: preto #000 | grafite #0A0A0A | escuro #1E1E1E
           azul #18A8E0 | branco #FFF
   ===================================================== */

/* ===== VARIÁVEIS ===== */
:root {
  --black:       #000000;
  --graphite:    #0A0A0A;
  --dark:        #111111;
  --dark2:       #1E1E1E;
  --dark3:       #2a2a2a;
  --gray:        #333333;
  --gray-mid:    #4a4a4a;
  --gray-light:  #888888;
  --gray-muted:  #bbbbbb;
  --blue:        #18A8E0;
  --blue-dark:   #0d8abf;
  --blue-glow:   rgba(24, 168, 224, 0.25);
  --blue-dim:    rgba(24, 168, 224, 0.08);
  --white:       #FFFFFF;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --header-h: 72px;
  --radius:   6px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--graphite);
  color: var(--gray-muted);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }

/* ===== UTILITÁRIOS ===== */
.text-blue  { color: var(--blue); }
.hide-mobile { display: inline; }

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  border-left: 3px solid var(--blue);
  padding-left: 10px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }

.divider {
  width: 52px;
  height: 3px;
  background: var(--blue);
  margin: 14px 0 24px;
  position: relative;
}
.divider::after {
  content: '';
  position: absolute;
  left: 60px; top: 0;
  width: 12px; height: 3px;
  background: var(--blue);
  opacity: .4;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--blue-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1eb859;
  border-color: #1eb859;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gray);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-lg  { font-size: 18px; padding: 16px 36px; }
.btn-full { width: 100%; justify-content: center; }


/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ====================================================
   HEADER
   ==================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo — escala maior e crop do padding preto da imagem */
.logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 64px;
}
.logo-img {
  height: 220px;
  width: auto;
  flex-shrink: 0;
  display: block;
  transform: translateY(6px);
}
/* Fallback textual (visível enquanto logo.png não é adicionado) */
.logo-img + .logo-fallback { display: none; }
.logo-img[src="assets/logo-branco.png"]:not([complete]) + .logo-fallback,
.logo:not(:has(img[src])) .logo-fallback { display: flex; }
.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.lf-grupo {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray-light);
  text-transform: uppercase;
}
.lf-aja {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -1px;
  line-height: 1;
}
.lf-sub {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gray-muted);
  text-transform: uppercase;
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link--cta {
  background: var(--blue);
  color: var(--white);
  margin-left: 8px;
}
.nav-link--cta:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--black);
}

/* ── Vídeo YouTube como fundo ─────────────────────────── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  /* Cobre toda a área mantendo proporção 16:9 */
  width:  max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  transform: translate(-50%, -50%);
  border: none;
  /* Escurece e dessatura para o texto ficar legível */
  filter: brightness(0.42) saturate(0.6);
}
/* Quando VIDEO_ID ainda não foi configurado, o iframe fica invisível
   e o hero-bg (imagem estática) aparece como fallback */
.hero-video-wrap:has(iframe[src*="VIDEO_ID"]) { display: none; }

/* ── Fallback: imagem estática ──────────────────────────
   Substitua assets/hero-bg.jpg por foto real de corte a laser */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/hero-bg.jpg'),
    url('https://images.unsplash.com/photo-1565814329452-e1efa11c5b89?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35) saturate(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 50%, rgba(24,168,224,0.10) 100%);
}

/* Laser beam decorativo */
.hero-laser-line {
  position: absolute;
  z-index: 1;
  top: 0; left: -100%;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), rgba(24,168,224,0.3), transparent);
  animation: laserScan 4s ease-in-out infinite;
  opacity: .7;
}
@keyframes laserScan {
  0%   { top: 30%; left: -60%; }
  50%  { top: 60%; left: 120%; }
  100% { top: 30%; left: -60%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24,168,224,0.12);
  border: 1px solid rgba(24,168,224,0.35);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--blue); animation: pulseIcon 2s infinite; }
@keyframes pulseIcon {
  0%,100% { opacity: 1; }
  50%      { opacity: .5; }
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats na hero */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 4px;
  letter-spacing: .5px;
}

/* Corte diagonal no fundo da hero */
.hero-cut {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--graphite);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}


/* ====================================================
   TRUST BAR
   ==================================================== */
.trust-bar {
  background: var(--blue);
  padding: 12px 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}
.trust-item svg { width: 16px; height: 16px; fill: rgba(255,255,255,.75); flex-shrink: 0; }


/* ====================================================
   SOBRE
   ==================================================== */
.about { background: var(--graphite); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  color: var(--gray-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-text strong { color: var(--white); font-weight: 600; }

.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.abt-num {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.abt-num::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.abt-num:hover::before { transform: scaleX(1); }
.abt-num:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(24,168,224,.15);
}
.abt-num-val {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.abt-num-lbl {
  font-size: 12px;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ====================================================
   SERVIÇOS
   ==================================================== */
.services {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(24,168,224,.07) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Chamfer no canto superior direito — estética industrial AJA */
.svc-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent var(--blue) transparent transparent;
  opacity: 0;
  transition: opacity var(--transition);
}
.svc-card:hover { border-color: var(--blue); box-shadow: 0 12px 40px rgba(24,168,224,.18); transform: translateY(-4px); }
.svc-card:hover::after { opacity: 1; }

.svc-icon {
  width: 56px; height: 56px;
  background: var(--blue-dim);
  border: 1px solid rgba(24,168,224,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition), border-color var(--transition);
}
.svc-card:hover .svc-icon {
  background: rgba(24,168,224,.18);
  border-color: var(--blue);
}
.svc-icon svg { width: 28px; height: 28px; fill: var(--blue); }

.svc-title {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.svc-list li {
  font-size: 13px;
  color: var(--gray-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding-left: 14px;
  position: relative;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}


/* ====================================================
   PROCESSO
   ==================================================== */
.process {
  background: var(--graphite);
  position: relative;
}

.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 16px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 900;
  color: rgba(24,168,224,.12);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -4px;
}

.step-icon {
  width: 64px; height: 64px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px var(--blue-glow);
}
.step-icon svg { width: 30px; height: 30px; fill: var(--white); }

.step-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
}

.process-arrow {
  align-self: center;
  padding: 0 8px;
  margin-top: 20px;
}
.process-arrow svg { width: 36px; height: 36px; fill: var(--blue); opacity: .5; }


/* ====================================================
   DIFERENCIAIS
   ==================================================== */
.differentials {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.differentials::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(24,168,224,.06) 0%, transparent 70%);
  pointer-events: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.diff-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: top;
}
.diff-card:hover::before { transform: scaleY(1); }
.diff-card:hover {
  border-color: rgba(24,168,224,.3);
  box-shadow: 0 8px 32px rgba(24,168,224,.1);
  padding-left: 28px;
}

.diff-icon {
  width: 50px; height: 50px;
  background: var(--blue-dim);
  border: 1px solid rgba(24,168,224,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diff-icon svg { width: 26px; height: 26px; fill: var(--blue); }

.diff-title {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
}
.diff-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}


/* ====================================================
   BLOCO ISO
   ==================================================== */
.iso-block {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}
.iso-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,.03) 30px, rgba(255,255,255,.03) 31px);
}
/* Corte diagonal superior */
.iso-block::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.iso-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.iso-text h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}
.iso-text p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.iso-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin-bottom: 8px;
}
.iso-detail svg { width: 18px; height: 18px; fill: rgba(255,255,255,.6); flex-shrink: 0; }

.iso-badges {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iso-selos-img {
  max-width: 340px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(24,168,224,0.25));
}

.iso-badge-sub {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ====================================================
   FORMULÁRIO DE ORÇAMENTO
   ==================================================== */
.quote { background: var(--graphite); }

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.quote-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.qcontact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-muted);
  padding: 14px 16px;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.qcontact:hover {
  border-color: var(--blue);
  color: var(--white);
}
.qcontact svg { width: 20px; height: 20px; fill: var(--blue); flex-shrink: 0; }

/* Form */
.quote-form {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23888' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,168,224,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* Feedback do formulário */
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 12px;
}
.form-success {
  display: none;
  background: rgba(0,200,100,.1);
  border: 1px solid rgba(0,200,100,.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
  color: #00c864;
  margin-top: 12px;
  font-size: 14px;
}
.form-error {
  display: none;
  background: rgba(220,53,69,.1);
  border: 1px solid rgba(220,53,69,.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
  color: #dc3545;
  margin-top: 12px;
  font-size: 14px;
}


/* ====================================================
   RODAPÉ
   ==================================================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--dark3);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-wrap {
  overflow: hidden;
  height: 72px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 220px;
  width: auto;
  display: block;
  transform: translateY(6px);
}
.footer-logo-fallback {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
/* Ocultar fallback se imagem carregar */
.footer-logo-img:not([src="assets/logo-branco.png"]) + .footer-logo-fallback { display: none; }

.footer-tagline {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-certs {
  display: flex;
  gap: 8px;
}
.cert-pill {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid var(--blue);
  border-radius: 100px;
  color: var(--blue);
  text-transform: uppercase;
}
.cert-pill--sm { font-size: 10px; padding: 3px 8px; }

.footer-links h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue); }

.footer-contact h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.fcontact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 10px;
}
.fcontact-item svg { width: 18px; height: 18px; fill: var(--blue); flex-shrink: 0; }
.fcontact-item a { color: var(--gray-light); transition: color var(--transition); }
.fcontact-item a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid var(--dark3);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray-mid);
}
.footer-iso { display: flex; gap: 8px; }


/* ====================================================
   WHATSAPP FLUTUANTE
   ==================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all 0.25s ease;
  animation: floatBtn 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes floatBtn {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}


/* ====================================================
   RESPONSIVO
   ==================================================== */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .iso-inner { gap: 40px; }
}

@media (max-width: 900px) {
  /* Header mobile */
  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(0,0,0,.98);
    border-bottom: 1px solid var(--dark3);
    padding: 16px 24px 24px;
  }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
  }
  .nav-link--cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .hamburger { display: flex; }

  /* Layout */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-numbers { grid-template-columns: repeat(4,1fr); }
  .iso-inner { grid-template-columns: 1fr; gap: 40px; }
  .iso-badges { justify-content: flex-start; }
  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-arrow { display: none; }
  .process-grid { gap: 32px; }
  .process-step { min-width: 180px; }
  .hide-mobile { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-stats { gap: 24px; flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 16px; margin-right: 0; padding-right: 0; margin-bottom: 16px; }
  .hero-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .about-numbers { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 8px; }
  .quote-form { padding: 28px 20px; }
  .iso-badges { flex-direction: column; gap: 12px; }
}
