*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #212529; background: #f8f9fa; overflow-x: hidden; }

:root {
  --primary: #0d1b2a;
  --accent: #e63946;        /* 4.17:1 sobre branco - SO para fundos, bordas e texto grande */
  --accent-dark: #c1121f;   /* 6.22:1 sobre branco - usar em TEXTO PEQUENO (WCAG AA) */
  --secondary: #457b9d;
  --bg: #f8f9fa;
  --text: #212529;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-hover: 0 12px 36px rgba(13,27,42,0.18);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 4px; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; }
picture { display: block; }

/* FOCO VISIVEL — navegacao por teclado */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* FADE IN ANIMATION
   IMPORTANTE: por padrao o conteudo e VISIVEL. So escondemos quando o JS
   confirma que esta ativo (html.js). Se o JS falhar ou estiver desligado,
   o site continua legivel em vez de ficar em branco. */
.fade-in { opacity: 1; transform: none; }
html.js .fade-in { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .fade-in.visible { opacity: 1; transform: translateY(0); }

/* ACESSIBILIDADE — respeita quem pediu menos animacao no sistema */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in, html.js .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ===================== HEADER ===================== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent);
  padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.25s ease;
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.header-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.header-logo .logo-icon {
  width: 44px; height: 44px; background: var(--accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.header-logo .logo-icon i { color: #fff; font-size: 1.3rem; }
.header-logo .logo-text { display: flex; flex-direction: column; }
.header-logo .logo-text span:first-child {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem;
  color: #fff; letter-spacing: 0.5px; line-height: 1.1;
}
.header-logo .logo-text span:last-child {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.7rem;
  color: var(--secondary); letter-spacing: 1px; text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 6px; }
nav a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.88rem;
  padding: 8px 14px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}
nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.btn-header-cta {
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff !important; font-weight: 600 !important;
  padding: 10px 20px !important; border-radius: 8px !important;
  box-shadow: 0 4px 14px rgba(230,57,70,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
  display: flex; align-items: center; gap: 7px;
}
.btn-header-cta:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(230,57,70,0.45) !important; background: rgba(0,0,0,0) !important; background: linear-gradient(135deg, #c1121f, #e63946) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; width: 100%;
  background: rgba(13,27,42,0.99); padding: 20px 24px 28px;
  flex-direction: column; gap: 4px; z-index: 999;
  border-bottom: 2px solid var(--accent);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.88); text-decoration: none;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 1rem;
  padding: 12px 16px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; gap: 10px;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-menu .btn-header-cta { margin-top: 8px; justify-content: center; }

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2f45 50%, #0d1b2a 100%);
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/hero-bg.webp') center/cover no-repeat;
  opacity: 0.08; z-index: 0;
}
#hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(69,123,157,0.18) 0%, transparent 70%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 860px; margin: 0 auto; }
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badge {
  background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.4);
  color: #ff8a93; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.78rem;
  padding: 6px 16px; border-radius: 50px; letter-spacing: 0.8px; text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
}
.hero-badge i { font-size: 0.75rem; }
.hero-badge.blue {
  background: rgba(69,123,157,0.15); border-color: rgba(69,123,157,0.4);
  color: #90c4e4;
}
.hero-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff;
  line-height: 1.15; margin-bottom: 22px; letter-spacing: -0.5px;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff; text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem; padding: 16px 32px; border-radius: 10px;
  box-shadow: 0 6px 24px rgba(230,57,70,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 10px 32px rgba(230,57,70,0.55); }
.btn-secondary {
  background: rgba(255,255,255,0.08); color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 16px 32px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.25);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); transform: scale(1.03); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 1.5rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* ===================== SEGMENTS BAR ===================== */
#segments-bar {
  background: var(--primary);
  padding: 36px 24px;
}
.segments-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.seg-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.85); cursor: default;
  transition: color 0.25s, transform 0.25s;
  min-width: 100px;
}
.seg-item:hover { color: #fff; transform: translateY(-4px); }
.seg-icon {
  width: 64px; height: 64px; background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.seg-item:hover .seg-icon { background: rgba(230,57,70,0.18); border-color: rgba(230,57,70,0.4); }
.seg-icon i { font-size: 1.7rem; color: var(--accent); }
.seg-label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.82rem; text-align: center; letter-spacing: 0.3px; }

/* ===================== SECTION COMMON ===================== */
section { padding: 90px 24px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,0.1); color: var(--accent-dark);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.78rem;
  padding: 6px 16px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px; border: 1px solid rgba(230,57,70,0.2);
}
.section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--primary);
  margin-bottom: 14px; line-height: 1.2;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 1.05rem;
  color: #6c757d; max-width: 620px; margin: 0 auto; line-height: 1.7;
}

/* ===================== EQUIPAMENTOS ===================== */
#equipamentos { background: #fff; }
.equip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-bottom: 48px;
}
.equip-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.06);
}
.equip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.equip-card-img {
  width: 100%; height: 215px; object-fit: contain; display: block;
  background: #fff; padding: 10px;
  transition: transform 0.4s;
}
.equip-card:hover .equip-card-img { transform: scale(1.04); }
.equip-card-img-wrap { overflow: hidden; position: relative; }
.equip-card-img-overlay {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff; border-radius: 8px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
}
.equip-card-img-overlay i { font-size: 0.95rem; }
.equip-card-body { padding: 22px 22px 24px; }
.equip-card-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: var(--primary); margin-bottom: 8px;
}
.equip-card-desc {
  font-family: 'Inter', sans-serif; font-size: 0.88rem; color: #6c757d;
  line-height: 1.6; margin-bottom: 18px;
}
.btn-card {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff; text-decoration: none; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.85rem; padding: 10px 20px; border-radius: 8px;
  box-shadow: 0 3px 12px rgba(230,57,70,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  border: none; cursor: pointer;
}
.btn-card:hover { transform: scale(1.04); box-shadow: 0 6px 18px rgba(230,57,70,0.45); }
.equip-banner {
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  border-radius: 14px; padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.equip-banner-text { color: #fff; }
.equip-banner-text h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.3rem;
  margin-bottom: 6px;
}
.equip-banner-text p { font-family: 'Inter', sans-serif; font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem;
  padding: 13px 26px; border-radius: 9px; border: 2px solid rgba(255,255,255,0.5);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: scale(1.03); }

/* ===================== EMBALAGENS ===================== */
#embalagens { background: var(--bg); }
.emb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.emb-card {
  background: #fff; border-radius: 14px; padding: 32px 24px;
  box-shadow: var(--shadow); text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}
.emb-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.emb-icon {
  width: 72px; height: 72px; background: rgba(230,57,70,0.08);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: background 0.25s;
}
.emb-card:hover .emb-icon { background: rgba(230,57,70,0.15); }
.emb-icon i { font-size: 2rem; color: var(--accent); }
.emb-card-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--primary); margin-bottom: 10px;
}
.emb-card-desc {
  font-family: 'Inter', sans-serif; font-size: 0.86rem; color: #6c757d;
  line-height: 1.6; margin-bottom: 20px;
}
.emb-footer {
  text-align: center; padding: 28px 24px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}
.emb-footer p {
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: #6c757d;
  margin-bottom: 16px;
}
.emb-footer p a { color: var(--secondary); text-decoration: none; font-weight: 600; }
.emb-footer p a:hover { color: var(--accent-dark); }
.emb-footer-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== CATALOGOS ===================== */
#catalogos { background: #fff; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.cat-card {
  background: var(--bg); border-radius: 14px; padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.cat-icon { margin-bottom: 18px; }
.cat-icon i { font-size: 3rem; color: var(--accent); }
.cat-card-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--primary); margin-bottom: 8px;
}
.cat-card-hint {
  font-family: 'Inter', sans-serif; font-size: 0.83rem; color: #6c757d;
  margin-bottom: 22px;
}
.cat-note {
  text-align: center; font-family: 'Inter', sans-serif; font-size: 0.88rem;
  color: #6c757d; padding: 18px 24px; background: rgba(230,57,70,0.05);
  border-radius: 10px; border: 1px solid rgba(230,57,70,0.12);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.cat-note i { color: var(--accent-dark); }

/* ===================== SEGMENTOS ===================== */
#segmentos { background: var(--bg); }
.seg-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 44px; }
.seg-card {
  background: #fff; border-radius: 14px; padding: 40px 28px;
  box-shadow: var(--shadow); text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}
.seg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.seg-card-icon {
  width: 80px; height: 80px; background: linear-gradient(135deg, rgba(230,57,70,0.1), rgba(230,57,70,0.05));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; border: 1.5px solid rgba(230,57,70,0.15);
  transition: background 0.25s;
}
.seg-card:hover .seg-card-icon { background: linear-gradient(135deg, rgba(230,57,70,0.18), rgba(230,57,70,0.1)); }
.seg-card-icon i { font-size: 2.2rem; color: var(--accent); }
.seg-card-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--primary); margin-bottom: 12px;
}
.seg-card-desc {
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #6c757d;
  line-height: 1.7; margin-bottom: 24px;
}
.seg-cta { text-align: center; }

/* ===================== POR QUE DN ===================== */
#porque { background: #fff; }
.porque-highlight {
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  border-radius: 16px; padding: 36px 40px; margin-bottom: 56px;
  text-align: center;
}
.porque-highlight p {
  font-family: 'Inter', sans-serif; font-size: 1.12rem; color: rgba(255,255,255,0.92);
  line-height: 1.75; max-width: 780px; margin: 0 auto;
}
.porque-highlight p strong { color: #fff; font-weight: 700; }
.diferenciais-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.dif-card {
  background: var(--bg); border-radius: 14px; padding: 32px 22px;
  text-align: center; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dif-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.dif-icon {
  width: 68px; height: 68px; background: rgba(230,57,70,0.08);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: background 0.25s;
}
.dif-card:hover .dif-icon { background: rgba(230,57,70,0.16); }
.dif-icon i { font-size: 1.8rem; color: var(--accent); }
.dif-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.98rem;
  color: var(--primary); margin-bottom: 10px;
}
.dif-desc {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; color: #6c757d; line-height: 1.6;
}
.porque-cta { text-align: center; }

/* ===================== DEPOIMENTOS ===================== */
#depoimentos { background: var(--bg); }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dep-card {
  background: #fff; border-radius: 14px; padding: 32px 28px;
  box-shadow: var(--shadow); position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dep-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.dep-quote {
  font-size: 3.5rem; color: rgba(230,57,70,0.15); font-family: Georgia, serif;
  line-height: 1; margin-bottom: 4px; display: block;
}
.dep-text {
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #495057;
  line-height: 1.75; margin-bottom: 22px; font-style: italic;
}
.dep-divider { height: 1px; background: rgba(0,0,0,0.07); margin-bottom: 18px; }
.dep-author { display: flex; align-items: center; gap: 14px; }
.dep-author-icon {
  width: 46px; height: 46px; background: rgba(230,57,70,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dep-author-icon i { font-size: 1.1rem; color: var(--accent); }
.dep-author-info { display: flex; flex-direction: column; }
.dep-author-name {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem;
  color: var(--primary);
}
.dep-author-role {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; color: #6c757d;
}
.dep-stars { display: flex; gap: 3px; margin-top: 4px; }
.dep-stars i { font-size: 0.7rem; color: #f4a261; }

/* ===================== CTA FINAL ===================== */
#cta-final {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2f45 60%, #0d1b2a 100%);
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
#cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(230,57,70,0.12) 0%, transparent 65%);
}
.cta-final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-final-inner h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem); color: #fff;
  line-height: 1.2; margin-bottom: 18px;
}
.cta-final-inner h2 span { color: var(--accent); }
.cta-final-inner p {
  font-family: 'Inter', sans-serif; font-size: 1.05rem;
  color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.7;
}
.cta-final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-instagram {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff; text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem; padding: 16px 32px; border-radius: 10px;
  box-shadow: 0 6px 24px rgba(131,58,180,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-instagram:hover { transform: scale(1.04); box-shadow: 0 10px 32px rgba(131,58,180,0.5); }

/* ===================== FOOTER ===================== */
footer {
  background: #060e17; color: rgba(255,255,255,0.75);
  padding: 60px 24px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo-text span:first-child { font-size: 1.2rem; }
.footer-brand p {
  font-family: 'Inter', sans-serif; font-size: 0.88rem; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-top: 14px; margin-bottom: 20px;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
}
.footer-contact-item i { color: var(--accent); width: 18px; text-align: center; }
.footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-col-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: #fff; margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--accent); display: inline-block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a,
.footer-links li span {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  transition: color 0.2s; display: flex; align-items: center; gap: 8px;
}
.footer-links li a:hover { color: #fff; }
.footer-links li a i,
.footer-links li span i { font-size: 0.75rem; color: var(--accent); }
.footer-partners { margin-top: 16px; }
.footer-partners p {
  font-family: 'Inter', sans-serif; font-size: 0.82rem;
  color: rgba(255,255,255,0.45); margin-bottom: 8px;
}
.footer-partners a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600;
  transition: color 0.2s;
}
.footer-partners a:hover { color: var(--secondary); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif; font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem;
  padding: 14px 22px 14px 18px; border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  animation: pulse-wa 2.5s infinite;
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 10px 36px rgba(37,211,102,0.6); animation: none; }
.whatsapp-float i { font-size: 1.4rem; }
@keyframes pulse-wa {
  0%,100%{box-shadow:0 6px 28px rgba(37,211,102,0.45);}
  50%{box-shadow:0 6px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12);}
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .emb-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 20px; }
  .equip-grid { grid-template-columns: 1fr; }
  .emb-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .seg-cards-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .equip-banner { flex-direction: column; text-align: center; }
  .segments-bar-inner { gap: 16px; }
  .seg-item { min-width: 80px; }
  .seg-icon { width: 54px; height: 54px; }
  .seg-icon i { font-size: 1.4rem; }
  .whatsapp-float { padding: 14px 16px; border-radius: 50%; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons a { width: 100%; max-width: 320px; justify-content: center; }
  .emb-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .cta-final-btns { flex-direction: column; align-items: center; }
  .cta-final-btns a { width: 100%; max-width: 320px; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .porque-highlight { padding: 28px 22px; }
  .equip-banner { padding: 28px 22px; }
  .hero-badges { flex-direction: column; align-items: center; }
}