/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: #fff; color: #1a1a1a; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }
p { color: #444; line-height: 1.8; font-size: 16px; margin-bottom: 14px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: #1a1a1a; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }

/* ── Colors ─────────────────────────────────────── */
:root {
  --bg:       #ffffff;
  --bg2:      #f2f6fb;
  --bg3:      #e3edf8;
  --navy:     #0d2a4a;
  --blue:     #1a7fd4;
  --blueDk:   #1260a8;
  --blueLt:   #3a9ae8;
  --black:    #1a1a1a;
  --text:     #1a1a1a;
  --textMid:  #444444;
  --textSoft: #7a8ea0;
  --border:   #d0dff0;
}

/* ── Layout ─────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 6%; }
.section { padding: 96px 6%; }
.bg-white { background: #fff; }
.bg-gray  { background: #f2f6fb; border-top: 1px solid #d0dff0; }
.bg-navy  { background: #0d2a4a; }
.bg-black { background: #1a1a1a; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-sub { color: #7a8ea0; font-size: 15px; margin-top: 10px; }

/* ── Tag ────────────────────────────────────────── */
.tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a7fd4;
  margin-bottom: 10px;
}

/* ── Buttons ────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a7fd4;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: #1260a8; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 13px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: #fff; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 14px 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-outline-white:hover { border-color: #fff; }

/* ── NAV ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 6%;
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #d0dff0;
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(26,127,212,0.1);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); transition: filter 0.3s; }
#navbar.scrolled .logo-img { filter: none; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-weight: 800; font-size: 15px; letter-spacing: 1px; color: #fff; line-height: 1.1; transition: color 0.3s; }
.logo-sub  { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; }
#navbar.scrolled .logo-name { color: #1a1a1a; }
#navbar.scrolled .logo-sub  { color: #7a8ea0; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
#navbar.scrolled .nav-links a { color: #444; }
#navbar.scrolled .nav-links a:hover { color: #1a7fd4; }

.btn-nav {
  background: #1a7fd4 !important;
  color: #fff !important;
  padding: 10px 26px;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase;
  border-radius: 2px;
}
.btn-nav:hover { background: #1260a8 !important; color: #fff !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: color 0.3s;
}
#navbar.scrolled .hamburger { color: #1a1a1a; }

.mob-menu {
  display: none;
  background: #fff;
  padding: 20px 6%;
  border-top: 1px solid #d0dff0;
  box-shadow: 0 8px 30px rgba(26,127,212,0.1);
}
.mob-menu a {
  display: block;
  color: #1a1a1a;
  font-size: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #d0dff0;
  font-weight: 600;
}
.mob-menu a:last-child { border-bottom: none; }
.btn-mob {
  display: inline-block !important;
  margin-top: 16px !important;
  background: #1a7fd4 !important;
  color: #fff !important;
  padding: 13px 30px !important;
  font-weight: 700 !important;
  font-size: 14px;
  text-transform: uppercase;
  border: none !important;
  border-bottom: none !important;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,42,74,0.94) 0%, rgba(13,42,74,0.80) 55%, rgba(26,127,212,0.30) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 6% 80px;
  width: 100%;
}
.hero-content h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 22px;
  max-width: 700px;
}
.hero-content > p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 36px;
}
.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-line { width: 40px; height: 3px; background: #1a7fd4; }
.tag-text { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #1a7fd4; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.check { color: #1a7fd4; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-arrow {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: #1a7fd4;
  animation: bounce 2s infinite;
}

/* ── STATS ───────────────────────────────────────── */
.stats-bar { background: #0d2a4a; padding: 56px 6%; }
.stats-g {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 30px 36px;
  border-left: 4px solid #1a7fd4;
  background: rgba(255,255,255,0.04);
}
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #1a7fd4;
  line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; font-weight: 500; }

/* ── RISK BOX ────────────────────────────────────── */
.risk-box {
  background: #f2f6fb;
  border: 1px solid #d0dff0;
  padding: 44px 38px;
}
.risk-box h3 { margin-bottom: 26px; }
.risk-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #d0dff0;
  color: #444;
  font-size: 15px;
}
.risk-item.no-border { border-bottom: none; }
.dot-red { width: 8px; height: 8px; background: #e05252; border-radius: 50%; flex-shrink: 0; }

/* ── IMG WRAP ────────────────────────────────────── */
.img-wrap { position: relative; }
.img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: #1a7fd4;
  padding: 18px 26px;
}
.badge-num { font-size: 32px; font-weight: 900; color: #fff; line-height: 1; }
.badge-txt { font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; }

/* ── SERVIÇOS ────────────────────────────────────── */
.srv-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.srv-card {
  background: #f2f6fb;
  border: 1px solid #d0dff0;
  padding: 38px 34px;
  cursor: default;
  transition: all 0.3s;
}
.srv-card:hover {
  border-color: #1a7fd4;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,127,212,0.15);
  background: #e3edf8;
}
.srv-icon {
  width: 52px; height: 52px;
  background: rgba(26,127,212,0.1);
  border: 1px solid rgba(26,127,212,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
}
.srv-card p { color: #7a8ea0; font-size: 14px; line-height: 1.7; }

/* ── DIFERENCIAIS ────────────────────────────────── */
.bg-navy .tag { color: #3a9ae8; }
.diff-list { margin-top: 36px; }
.diff-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.5;
}
.diff-item .check { color: #1a7fd4; margin-right: 10px; font-weight: 700; }
.diff-item.no-border { border-bottom: none; }

/* ── PROCESSO ────────────────────────────────────── */
.proc-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.proc-card {
  background: #f2f6fb;
  border: 1px solid #d0dff0;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.proc-card:hover {
  border-color: #1a7fd4;
  box-shadow: 0 8px 32px rgba(26,127,212,0.12);
}
.proc-num-bg {
  position: absolute;
  top: -8px; right: 4px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(26,127,212,0.06);
  line-height: 1;
  pointer-events: none;
}
.proc-num { font-size: 12px; font-weight: 800; color: #1a7fd4; letter-spacing: 2px; margin-bottom: 18px; }
.proc-icon { font-size: 22px; margin-bottom: 18px; }
.proc-card h3 { font-size: 15px; margin-bottom: 10px; }
.proc-card p  { color: #7a8ea0; font-size: 13px; line-height: 1.7; }

/* ── GALERIA (flexbox) ───────────────────────────── */
.gal-g {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gal-item {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
  flex: 1 1 calc(33.333% - 6px);
  min-width: 240px;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,42,74,0.55) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-overlay { opacity: 0.7; }

/* ── EQUIPAMENTOS ────────────────────────────────── */
.eq-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 36px;
}
.eq-item {
  background: #fff;
  border: 1px solid #d0dff0;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  transition: border-color 0.2s;
}
.eq-item:hover { border-color: #1a7fd4; }
.eq-dot { width: 8px; height: 8px; background: #1a7fd4; border-radius: 50%; flex-shrink: 0; }

/* ── DEPOIMENTOS ─────────────────────────────────── */
.dep-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.dep-card {
  background: #fff;
  border: 1px solid #d0dff0;
  padding: 38px 34px;
  transition: all 0.3s;
}
.dep-card:hover {
  border-color: #1a7fd4;
  box-shadow: 0 8px 32px rgba(26,127,212,0.1);
}
.stars { color: #1a7fd4; font-size: 16px; margin-bottom: 18px; letter-spacing: 2px; }
.dep-card p { color: #444; font-size: 15px; font-style: italic; margin-bottom: 22px; }
.dep-author { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 36px; height: 36px;
  background: #1a7fd4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700;
}
.dep-author span { font-size: 13px; color: #7a8ea0; font-weight: 600; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-wrap { max-width: 860px !important; }
.faq-list { margin-top: 0; }
.faq-item { border-bottom: 1px solid #d0dff0; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #1a1a1a;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}
.faq-arrow { color: #1a7fd4; font-size: 18px; transition: transform 0.3s; flex-shrink: 0; }
.faq-a {
  display: none;
  color: #444;
  font-size: 14px;
  line-height: 1.75;
  padding-bottom: 22px;
}

/* ── CTA ─────────────────────────────────────────── */
.cta-icon { font-size: 46px; margin-bottom: 22px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTATO ─────────────────────────────────────── */
.contact-list { margin-top: 32px; }
.contact-item { display: flex; gap: 18px; margin-bottom: 26px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(26,127,212,0.1);
  border: 1px solid rgba(26,127,212,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-label { font-size: 11px; color: #7a8ea0; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 1px; }
.contact-val   { font-size: 15px; font-weight: 600; color: #1a1a1a; }

/* ── FORM ────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-full { display: block; width: 100%; margin-bottom: 10px; }
input, select, textarea {
  background: #fff;
  border: 1px solid #d0dff0;
  color: #1a1a1a;
  padding: 13px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: #1a7fd4; }
select { appearance: none; color: #7a8ea0; }
textarea { resize: vertical; }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: #0d2a4a; padding: 60px 6% 28px; }
.ft-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.ft-logo-img { height: 52px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 18px; }
.ft-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.ft-link {
  display: block;
  color: rgba(255,255,255,0.48);
  font-size: 13px;
  margin-bottom: 11px;
  transition: color 0.2s;
}
.ft-link:hover { color: #1a7fd4; }
.ft-contact { color: rgba(255,255,255,0.48); font-size: 13px; margin-bottom: 13px; }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bottom span { color: rgba(255,255,255,0.28); font-size: 13px; }

/* ── Stripe azul decorativa ──────────────────────── */
.blue-stripe {
  height: 4px;
  background: linear-gradient(90deg, #1a7fd4, #3a9ae8, #1260a8);
  width: 100%;
}

/* ── Galeria zoom icon ───────────────────────────── */
.gal-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gal-item:hover .gal-zoom { opacity: 1; }

/* ── Lightbox ────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lightbox.open { display: flex; }

.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 85vh;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7);
  display: block;
}

.lb-close {
  position: fixed;
  top: 20px; right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 14px 18px;
  z-index: 1001;
  opacity: 0.75;
  transition: opacity 0.2s, background 0.2s;
  line-height: 1;
}
.lb-prev:hover, .lb-next:hover { opacity: 1; background: rgba(26,127,212,0.5); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

.lb-counter {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

/* ── Animations ──────────────────────────────────── */
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .hide-mob    { display: none !important; }
  .mob-menu-btn{ display: block !important; }
  .two-col     { grid-template-columns: 1fr !important; gap: 48px; }
  .stats-g     { grid-template-columns: 1fr 1fr !important; }
  .srv-g       { grid-template-columns: 1fr !important; }
  .proc-g      { grid-template-columns: 1fr 1fr !important; }
  .gal-item    { flex: 1 1 calc(50% - 6px); min-width: 200px; }
  .eq-g        { grid-template-columns: 1fr 1fr !important; }
  .dep-g       { grid-template-columns: 1fr !important; }
  .ft-g        { grid-template-columns: 1fr 1fr !important; }
  .form-row    { grid-template-columns: 1fr !important; }
  .img-badge   { right: 0; }
}
@media (max-width: 600px) {
  .stats-g   { grid-template-columns: 1fr !important; }
  .proc-g    { grid-template-columns: 1fr !important; }
  .gal-item  { flex: 1 1 100%; min-width: unset; }
  .eq-g      { grid-template-columns: 1fr !important; }
  .ft-g      { grid-template-columns: 1fr !important; }
  .hero-btns { flex-direction: column; }
  .cta-btns  { flex-direction: column; align-items: center; }
}

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:25px;
    right:25px;
    z-index:9999;
    transition:.3s;
}

.whatsapp-float img{
    width:100%;
    height:100%;
    border-radius:50%;
    box-shadow:0 4px 12px rgba(0,0,0,.3);
}

.whatsapp-float:hover{
    transform:scale(1.1);
}
