/* ============================================================
   INTEGRA SEGURANÇA INDUSTRIAL — style.css
   Centralizado: todas as páginas carregam este arquivo.
   ============================================================ */

/* ── 1. VARIÁVEIS DE COR (extraídas da logo COLORIDA) ──────── */
:root {
  --primary:       #3A9B76;   /* Verde teal principal (hexágono + texto INTEGRA) */
  --primary-dark:  #2C7059;   /* Verde escuro para hover/seções dark */
  --primary-light: #5CB896;   /* Verde claro para destaques e bordas */
  --accent:        #E8820C;   /* Laranja industrial — CTAs de destaque */
  --accent-dark:   #C96B08;   /* Laranja escuro hover */
  --navy:          #1A2820;   /* Fundo dark — seções escuras */
  --secondary-gray:#8D9190;   /* Cinza do ícone da logo */
  --gray-soft:     #F4F7F5;   /* Background suave de seções alternadas */
  --gray-mid:      #E0E6E3;   /* Bordas e separadores */
  --text-body:     #2D3830;   /* Texto principal */
  --text-muted:    #6B7A72;   /* Texto secundário */
  --white:         #FFFFFF;
  --bs-primary:    #3A9B76;   /* Override Bootstrap */
}

/* ── 2. BASE & RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

/* Offset para anchoragem com navbar fixa */
[id] { scroll-margin-top: 80px; }

/* ── 3. NAVBAR ──────────────────────────────────────────────── */
#mainNav {
  background: var(--navy);
  padding: .75rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
  z-index: 1050;
}

#mainNav.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  padding: .5rem 0;
}

.navbar-brand img { height: 52px; transition: height .3s; transform: scale(1.5);}
#mainNav.scrolled .navbar-brand img { height: 44px; transform: scale(1.5);}

.navbar-toggler {
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 6px;
  padding: .35rem .6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.85)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: .45rem .9rem !important;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
  background: rgba(90,200,150,.18);
}
.nav-link.active { color: var(--primary-light) !important; }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  padding: .45rem 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* ── 4. HERO PRINCIPAL (index) ──────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0F2118 55%, #1A3528 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

/* Grade hexagonal decorativa */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(58,155,118,.18) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,6 72,24 72,68 40,86 8,68 8,24' fill='none' stroke='rgba(58,155,118,0.07)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: auto, 80px 92px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(58,155,118,.18);
  border: 1px solid rgba(92,184,150,.35);
  color: var(--primary-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

#hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
#hero h1 span { color: var(--primary-light); }

#hero .lead {
  color: rgba(255,255,255,.72);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  max-width: 540px;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,155,118,.35);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.4);
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, color .2s, border-color .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.7);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,130,12,.35);
}

/* Cards de stats hero */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.stat-item {
  text-align: center;
  padding: .75rem 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  min-width: 110px;
}
.stat-number {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem;
}

/* Visual hero direito */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap {
  width: clamp(220px, 35vw, 380px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(92,184,150,.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero-logo-wrap img { max-width: 100%; filter: brightness(1.05); }

/* ── 5. INNER HERO (páginas internas) ───────────────────────── */
.inner-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2118 60%, #1A3528 100%);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,6 72,24 72,68 40,86 8,68 8,24' fill='none' stroke='rgba(58,155,118,0.06)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  pointer-events: none;
}
.inner-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
}
.inner-hero .lead {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 560px;
}
.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: .75rem;
}
.breadcrumb-item { font-size: .82rem; }
.breadcrumb-item a { color: var(--primary-light); }
.breadcrumb-item.active { color: rgba(255,255,255,.55); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ── 6. STRIP DE NÚMEROS ────────────────────────────────────── */
.strip-numbers {
  background: var(--primary);
  padding: 2rem 0;
}
.strip-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .5rem 1rem;
}
.strip-stat i {
  font-size: 2rem;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.strip-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.strip-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Divisor strip */
@media (min-width: 768px) {
  .strip-stat + .strip-stat { border-left: 1px solid rgba(255,255,255,.2); }
}

/* ── 7. SEÇÃO GENÉRICA ──────────────────────────────────────── */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 3rem;
}

.bg-soft { background: var(--gray-soft); }
.bg-navy { background: var(--navy); }

/* ── 8. SOBRE PREVIEW (index) ───────────────────────────────── */
.mini-card {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  padding: 1.25rem 1.1rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.mini-card:hover {
  box-shadow: 0 8px 28px rgba(58,155,118,.15);
  transform: translateY(-3px);
}
.mini-card i {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: .65rem;
}
.mini-card h6 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

/* ── 9. CARDS DE SERVIÇO ────────────────────────────────────── */
.service-card {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.service-card:hover {
  box-shadow: 0 12px 36px rgba(58,155,118,.18);
  transform: translateY(-5px);
  border-color: var(--primary-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(58,155,118,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background .2s;
}
.service-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: color .2s;
}
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon i { color: #fff; }

.service-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Badge NR */
.nr-badge {
  display: inline-block;
  background: rgba(58,155,118,.12);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 20px;
  border: 1px solid rgba(58,155,118,.25);
  margin-top: .75rem;
  letter-spacing: .04em;
}

/* Serviço expandido (servicos.html) */
.service-card-full {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.service-card-full:hover {
  box-shadow: 0 12px 40px rgba(58,155,118,.14);
}
.service-card-full .card-header-custom {
  background: linear-gradient(135deg, var(--navy) 0%, #1F3529 100%);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.card-header-custom .service-icon {
  background: rgba(92,184,150,.15);
  flex-shrink: 0;
  margin: 0;
}
.card-header-custom .service-icon i { color: var(--primary-light); }
.card-header-custom h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 .3rem;
}
.card-header-custom .nr-badge {
  background: rgba(92,184,150,.15);
  color: var(--primary-light);
  border-color: rgba(92,184,150,.3);
}
.service-card-full .card-body-custom {
  padding: 1.5rem;
}
.service-card-full .card-body-custom h6 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary);
  margin-bottom: .5rem;
  margin-top: 1rem;
}
.service-card-full .card-body-custom h6:first-child { margin-top: 0; }
.service-card-full .card-body-custom p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}
.delivery-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.delivery-list li {
  font-size: .875rem;
  color: var(--text-body);
  padding: .25rem 0;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.delivery-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: .75rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

/* ── 10. SEGMENTOS ──────────────────────────────────────────── */
.segment-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1.5px solid var(--gray-mid);
  color: var(--text-body);
  font-size: .875rem;
  font-weight: 500;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.segment-pill i { color: var(--primary); font-size: .85rem; }
.segment-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.segment-pill:hover i { color: #fff; }

/* ── 11. DIFERENCIAIS (dark) ────────────────────────────────── */
.diferencial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  height: 100%;
  transition: background .2s, border-color .2s, transform .2s;
}
.diferencial-card:hover {
  background: rgba(58,155,118,.12);
  border-color: rgba(92,184,150,.3);
  transform: translateY(-3px);
}
.diferencial-card i {
  font-size: 1.75rem;
  color: var(--primary-light);
  margin-bottom: .85rem;
}
.diferencial-card h6 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.diferencial-card p {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}

/* ── 12. PROCESSO ───────────────────────────────────────────── */
.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.step-card::after {
  content: '';
  position: absolute;
  top: 45px;
  left: calc(50% + 30px);
  right: calc(-50% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: .4;
}
.step-card:last-child::after { display: none; }
.step-card h6 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.step-card p {
  font-size: .84rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── 13. DEPOIMENTOS ────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -.5rem;
  left: 1.25rem;
  font-size: 5rem;
  color: var(--primary-light);
  opacity: .3;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-stars { color: #F5A623; font-size: .9rem; margin-bottom: .75rem; }
.testimonial-text {
  font-size: .92rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.65;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  margin: 0;
}
.author-role { font-size: .78rem; color: var(--text-muted); }

/* ── 14. CTA CENTRAL ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,6 72,24 72,68 40,86 8,68 8,24' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
}
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.cta-section .btn { position: relative; z-index: 1; }

/* ── 15. BANNER BLINDAR ─────────────────────────────────────── */
.blindar-banner {
  background: linear-gradient(135deg, #0F2118 0%, #1A2820 100%);
  border: 1px solid rgba(92,184,150,.2);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.blindar-banner i {
  font-size: 2.5rem;
  color: var(--primary-light);
  flex-shrink: 0;
}
.blindar-banner h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .3rem;
}
.blindar-banner p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  margin: 0;
}

/* ── 16. TIMELINE ───────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light) 60%, transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: .2rem;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(58,155,118,.3);
}
.timeline-year {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .2rem;
}
.timeline-item h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}
.timeline-item p {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── 17. MVV CARDS ──────────────────────────────────────────── */
.mvv-card {
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
}
.mvv-card.missao { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.mvv-card.visao  { background: linear-gradient(135deg, var(--navy) 0%, #253C30 100%); }
.mvv-card.valores{ background: linear-gradient(135deg, #1F3C2C 0%, var(--navy) 100%); }
.mvv-card i { font-size: 2.25rem; color: rgba(255,255,255,.85); margin-bottom: 1rem; }
.mvv-card h4 { color: #fff; font-size: 1.2rem; margin-bottom: .75rem; }
.mvv-card p { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }

/* Valores list */
.valores-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.valores-list li {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  padding: .3rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.valores-list li i { color: var(--primary-light); font-size: .75rem; }

/* ── 18. EQUIPE CARDS ───────────────────────────────────────── */
.equipe-card {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.equipe-card:hover {
  box-shadow: 0 8px 28px rgba(58,155,118,.15);
  transform: translateY(-3px);
}
.equipe-icon {
  width: 64px;
  height: 64px;
  background: rgba(58,155,118,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .85rem;
}
.equipe-icon i { font-size: 1.5rem; color: var(--primary); }
.equipe-card h6 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.equipe-card span { font-size: .78rem; color: var(--text-muted); }

/* ── 19. SAFETY BOOK ────────────────────────────────────────── */
.safety-book-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3528 100%);
  border: 1px solid rgba(92,184,150,.25);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
}
.safety-book-box::before {
  content: '';
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(58,155,118,.15) 0%, transparent 70%);
}
.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.safety-item:last-child { border: none; }
.safety-item i {
  width: 38px;
  height: 38px;
  background: rgba(92,184,150,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1rem;
  flex-shrink: 0;
}
.safety-item h6 { color: #fff; font-size: .9rem; margin-bottom: .2rem; }
.safety-item p { color: rgba(255,255,255,.6); font-size: .82rem; margin: 0; }

/* ── 20. FAQ ────────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--gray-mid) !important;
  border-radius: 10px !important;
  margin-bottom: .65rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  background: #fff;
  padding: 1.1rem 1.25rem;
}
.accordion-button:not(.collapsed) {
  color: var(--primary-dark);
  background: rgba(58,155,118,.06);
  box-shadow: none;
}
.accordion-button::after {
  filter: none;
}
.accordion-button:not(.collapsed)::after {
  filter: none;
}
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(58,155,118,.2); }
.accordion-body {
  font-size: .9rem;
  color: var(--text-muted);
  padding: 1rem 1.25rem 1.25rem;
}

/* ── 21. CONTATO CARDS ──────────────────────────────────────── */
.contact-card {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover {
  box-shadow: 0 8px 28px rgba(58,155,118,.15);
  transform: translateY(-3px);
}
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.contact-icon.green { background: rgba(58,155,118,.12); color: var(--primary); }
.contact-icon.whatsapp { background: #e8f5e9; color: #25D366; }
.contact-icon.email { background: rgba(58,155,118,.12); color: var(--primary); }
.contact-card h6 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.contact-card p, .contact-card a {
  font-size: .95rem;
  color: var(--text-body);
  margin: 0;
}
.contact-card a:hover { color: var(--primary); }

/* ── 22. FORMULÁRIO ─────────────────────────────────────────── */
.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: .35rem;
}
.form-control, .form-select {
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  padding: .65rem .95rem;
  font-size: .9rem;
  color: var(--text-body);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58,155,118,.18);
}
.form-control::placeholder { color: #bbb; }

/* Urgência radio */
.urgency-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.urgency-option {
  flex: 1;
  min-width: 140px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  padding: .75rem 1rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.urgency-option:has(input:checked) {
  border-color: var(--primary);
  background: rgba(58,155,118,.07);
}
.urgency-option label {
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-body);
  margin: 0;
}
.urgency-option input { margin-right: .5rem; accent-color: var(--primary); }

/* Horários */
.horario-row {
  display: flex;
  justify-content: space-between;
  padding: .45rem 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: .88rem;
}
.horario-row:last-child { border: none; }
.horario-row span:first-child { color: var(--text-muted); }
.horario-row span:last-child { font-weight: 600; color: var(--text-body); }

/* ── 23. FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
footer h6 {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
footer a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: color .2s;
}
footer a:hover { color: var(--primary-light); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: .3rem 0; }
.footer-links li a { display: flex; align-items: center; gap: .5rem; }
.footer-links li a i { font-size: .75rem; color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding: 1.25rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--primary-light); }

.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── 24. BOTÃO FLUTUANTE WHATSAPP ───────────────────────────── */
#whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  animation: pulse-wpp 2.5s infinite;
  transition: transform .2s, box-shadow .2s;
}
#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
  color: #fff;
}
@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ── 25. VOLTAR AO TOPO ─────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  z-index: 9998;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border: 1.5px solid rgba(92,184,150,.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, background .2s;
  text-decoration: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── 26. AOS — deslocamento inicial suavizado ───────────────── */
[data-aos="fade-up"]   { transform: translateY(20px) !important; }
[data-aos="fade-down"] { transform: translateY(-20px) !important; }
[data-aos="fade-left"] { transform: translateX(20px) !important; }
[data-aos="fade-right"]{ transform: translateX(-20px) !important; }

/* ── 27. UTILITÁRIOS ────────────────────────────────────────── */
.text-primary-custom { color: var(--primary) !important; }
.text-navy { color: var(--navy) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.divider { height: 3px; width: 50px; background: var(--primary); border-radius: 2px; margin: .75rem 0 1.5rem; }
.divider-center { margin-left: auto; margin-right: auto; }
.tag-chip {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  background: var(--gray-soft);
  color: var(--text-muted);
  border-radius: 20px;
  padding: .2rem .65rem;
  margin-right: .3rem;
  margin-top: .3rem;
  letter-spacing: .03em;
}

/* ── 28. MAPA ───────────────────────────────────────────────── */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.map-container iframe { display: block; }

/* ── 29. RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
  #hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero-visual { margin-top: 2.5rem; }
  .strip-stat { border-left: none !important; padding: .75rem 0; }
  .step-card::after { display: none; }
  .blindar-banner { padding: 1.5rem; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 3.5rem 0; }
  .hero-stats { justify-content: center; }
  .stat-item { min-width: 90px; }
  .strip-number { font-size: 1.75rem; }
  .service-card-full .card-header-custom { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 575.98px) {
  .hero-stats .stat-item { min-width: 80px; padding: .6rem .9rem; }
  .stat-number { font-size: 1.4rem; }
  .strip-stat { flex-direction: column; text-align: center; gap: .5rem; }
  .contact-card { padding: 1.25rem; }
}
