/* ============================================================
   RED FIRE — Design System Moderno
   Paleta: #666666 (azul profundo) + #FFFFFF
   Tipografia: Poppins + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #666666;
  --primary-light: #d81a1b;
  --primary-dark: #000b3a;
  --accent: #666666;
  --accent-light: #666666;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #eeeeee;
  --gray-200: #e4e7f0;
  --gray-400: #666666;
  --gray-600: #5a6080;
  --gray-800: #1e2340;
  --text: #666666;
  --text-light: #666666;
  --shadow-sm: 0 2px 8px rgba(0,17,87,0.08);
  --shadow-md: 0 4px 20px rgba(0,17,87,0.12);
  --shadow-lg: 0 8px 40px rgba(0,17,87,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  text-transform: none;
}

p { margin-bottom: 16px; color: var(--text-light); }
p:last-child { margin-bottom: 0; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.container {  margin: 0 auto; padding: 0 24px; }
.d-table { width: 100%; height: 100%; }
.d-table-cell { vertical-align: middle; }

/* ============================================================ HEADER ============================================================ */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  /* box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm); */
  /* border-top: 3px solid #666666; */
  transition: box-shadow 0.32s ease, background-color 0.32s ease, border-color 0.32s ease;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 10px;
  border-radius: 0 0 0 100px;
  background: linear-gradient(135deg, #f2f2f2 0%, #e5e5e5 100%);
  pointer-events: none;
  z-index: 1;
}

.navbar-area {
  width: 100%;
  transition: box-shadow 0.32s ease, background-color 0.32s ease, transform 0.32s ease;
}
.desktop-nav { display: block; }
.mobile-responsive-nav { display: none; }

.desktop-nav .container {
  display: flex;
  align-items: center;
  /* height: 72px; */
}

.desktop-nav nav.navbar {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: padding 0.32s ease, gap 0.32s ease;
}

.navbar-brand { flex-shrink: 0; margin-right: 24px; }
.navbar-brand img { height: 90px; margin-top: -5px; width: auto; display: block;
    transition: height 0.32s ease, margin-top 0.32s ease, transform 0.32s ease, opacity 0.32s ease;
    }
.lg_two { display: none !important; }

.desktop-nav-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  transition: gap 0.32s ease;
}

.navbar-collapse { flex: 1; }
.mean-menu { display: flex !important; align-items: center; justify-content: flex-end; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: end;
  list-style: none;
  margin: 0;
  margin-top: 0px;
  padding: 0;
}

.nav-item { position: relative; }

.nav-item > .nav-link,
.nav-item > a.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 23px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  border-radius: 8px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
    border: 1px solid #eeeeee;
}

.nav-item:hover > .nav-link,
.nav-item:hover > a.nav-link {
  border:1px solid #FFF;
    background: #d5090a;
    color: #FFF !important;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 999;
  list-style: none;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu .nav-item .nav-link {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-menu .nav-item .nav-link:hover {
  background: var(--gray-100);
  color: var(--primary);
  padding-left: 20px;
}

.others-options {
  display: flex;
  justify-content: flex-end;
  max-height: 80px;
  opacity: 1;
  overflow: hidden;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.32s ease, margin 0.32s ease;
}

.others-options ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.orcamento_s {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #d81a1b;
  color: var(--white) !important;
  padding: 6px 15px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}

.orcamento_s:hover {
  background: #1ebe5d;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

.orcamento_s i { font-size: 18px; }

.midias-s a.sign-in {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 36px; */
  height: 36px;
  border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
    background: #d81a1b;
    border: 1px solid var(--gray-100);
  color: #FFF;
  font-size: 18px;
  transition: var(--transition);
}
.midias-s a.sign-in span {
  display: block;
  font-size: 12px;
  font-weight: bold;
}
.midias-s a.sign-in:hover { background: #eee; color: #666; }

/* Mobile nav */
.mobile-responsive-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.mobile-responsive-menu .logo img { height: 40px; display: block; }

/* ============================================================ HERO SLIDE ============================================================ */

.container_slide { position: relative; overflow: hidden; }

.container_slide::before,
.page-title-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 10px;
  background: #d81a1b;
  border-radius: 0 0 100px 0;
  z-index: 999;
  pointer-events: none;
}

.container_slide::after,
.page-title-area::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 10px;
  background: #d81a1b;
  border-radius: 100px 0 0 0;
  z-index: 1;
  pointer-events: none;
}

.category-slide .single-category-item {
  min-height: 720px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.category-slide .single-category-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,17,87,0.9) 0%, rgba(0,17,87,0.55) 55%, rgba(0,17,87,0.1) 100%);
}

.banner-area { position: relative; z-index: 2; width: 100%; padding: 60px 0; }
.banner-area .container { position: relative; }
.banner-content { padding: 75px 0 20px; }

.banner-content .tit1 {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.banner-content h1 {
  font-size: clamp(26px, 4vw, 24px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.banner-content .slide__subtitle {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.6;
}

.comprars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #737373;
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  /* box-shadow: 0 4px 16px rgb(255 255 255 / 40%); */
}

.comprars:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,51,41,0.5);
  color: var(--white) !important;
}

.banner-area .col-md-6 img.np-drone {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: floatImg 3.5s ease-in-out infinite;
}

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

.category-slide .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.category-slide .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255,255,255,0.4) !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all 0.3s ease !important;
}

.category-slide .owl-dot.active span { background: var(--white) !important; width: 24px !important; border-radius: 4px !important; }

/* ============================================================ DESTAQUES STRIP ============================================================ */

.np-destaques { background: linear-gradient(135deg, #f2f2f2 0%,#e5e5e5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ padding: 0; }

.np-wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.np-item {
  flex: 1;
  min-width: 200px;
  padding: 36px 30px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-item:last-child { border-right: none; }

.np-item p {
  font-size: 13px;
  color: #d60a09;
  text-align: center;
  margin: 0;
  line-height: 1.45;
}

.np-item p strong { color: #d60a09; font-weight: 600; }

/* ============================================================ SOBRE ============================================================ */

.np-sobre { padding: 0px 0 80px; background: var(--white); }

.np-wrapper-sobre {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.mapa-brasil { flex: 0 0 320px; max-width: 320px; }
.mapa-brasil svg { width: 100%; height: auto; }
.np-texto { flex: 1; }

.np-texto h2 {
  font-size: clamp(24px, 3vw, 24px);
  font-weight: 800;
  color: #737373;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.np-texto h2 span { color: #737373; }

.np-texto p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.np-botao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #737373;
  color: var(--white) !important;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,17,87,0.25);
}

.np-botao:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,17,87,0.35);
  color: var(--white) !important;
}

/* ============================================================ SECTION TITLE ============================================================ */

.section-title { text-align: center; margin-bottom: 48px; }

.section-title h2 {
  font-size: clamp(22px, 3vw, 24px);
  font-weight: 800;
  color: #737373;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title p,
.section-title .noww {
  font-size: 15px;
  color: var(--text-light);
  margin: 0 auto;
}

.left-title { text-align: left !important; }
.left-title p { margin: 0; }

/* ============================================================ PRODUCTS ============================================================ */

.online-courses-area, .produtos-tp { padding: 64px 0; background: var(--gray-50); }
.bg-color-f7f8f9 { background: var(--gray-50) !important; }

.single-courses-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.single-courses-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.courses-img { overflow: hidden; aspect-ratio: 4/3; }
.courses-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.single-courses-item:hover .courses-img img { transform: scale(1.05); }

.courses-content {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.courses-content h3 {
  font-size: 13.5px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.45;
}

.courses-content h3 a { color: #737373; }
.courses-content h3 a:hover { color: var(--primary); }

a.comprar {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background:#737373;
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  align-self: flex-start;
  transition: var(--transition);
}

a.comprar:hover { background: #d81a1b; color: var(--white) !important; }

/* ============================================================ SOLUCOES ============================================================ */

.np-solucoes { padding: 80px 0; background: var(--white); }

.np-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.np-titulo { text-align: center; margin-bottom: 56px; }

.np-titulo span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.np-titulo h2 {
  font-size: clamp(22px, 3vw, 24px);
  color: #737373;
  font-weight: 800;
  text-transform: none;
}

.np-titulo h2 b { color: #737373; font-weight: 800; }

.np-grid { display: flex; align-items: center; gap: 32px; }
.np-col { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.np-box {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.np-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.np-box:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.np-box:hover::before { opacity: 1; }

.np-box h3 { font-size: 15px; text-transform: uppercase; font-weight: 700; color: #737373; text-transform: none; margin-bottom: 15px; }
.np-box p { font-size: 13.5px; color: var(--text-light); margin: 0; }

.np-centro { flex: 0 0 380px; display: flex; align-items: center; justify-content: center; }

.np-drone {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 10px 30px rgba(0,17,87,0.2));
  animation: floatImg 4s ease-in-out infinite;
}

/* ============================================================ COUNTERS ============================================================ */

.counter-area { padding: 64px 0; background: linear-gradient(135deg, #f2f2f2 0%,#e5e5e5 100%); margin-bottom: 80px;}

.single-counter-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.single-counter-item:last-child { border-right: none; }

.single-counter-item h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #757575;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
  text-transform: none;
}

.single-counter-item h2 .target { font-size: 26px; color: #757575; }
.single-counter-item h4 { font-size: 12px; font-weight: 500; color:#757575; letter-spacing: 0.5px; text-transform: none; }

/* ============================================================ FOOTER SERVICES ============================================================ */

.testimonials-area { padding: 80px 0; background: var(--gray-50); }

.testimonials-area .section-title h2 { font-size: clamp(20px, 3vw, 24px); }

#icones_servicos {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  color: inherit;
}

#icones_servicos:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

#icones_servicos img { width: 48px; height: 48px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }

#icones_servicos span h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: #737373;
    text-transform: uppercase;
  margin-bottom: 15px;
}

#icones_servicos span p { font-size: 13.5px; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ============================================================ FOOTER ============================================================ */

footer.footer { background: var(--white); }

.first-footer { background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: 56px 0; }

.first-footer h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-transform: none;
  margin-bottom: 20px;
}

.ttm-timelist-block { padding: 0; margin: 0 0 20px; }

.ttm-timelist-block li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}

.ttm-timelist-block li:last-child { border-bottom: none; }
.ttm-timelist-block li i { color: var(--primary); font-size: 16px; flex-shrink: 0; }

.social-icons ul { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; list-style: none; padding: 0; }

.social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #737373;
  color: var(--white);
  border-radius: 8px;
  font-size: 18px;
  transition: var(--transition);
}

.social-icons ul li a:hover { background: var(--accent); }

.featured-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-transform: none;
  margin-bottom: 8px;
}

.featured-content p { font-size: 13.5px; color: var(--gray-600); margin: 0; }

.newsletter-form p { margin: 0; }

.newsletter-form .textfield {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.newsletter-form .textfield:focus { border-color: var(--primary); }

.newsletter-form button.submit,
.ttm-btn {
  width: 100%;
  padding: 12px 20px;
  background: #737373;
  color: var(--white) !important;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.newsletter-form button.submit:hover,
.ttm-btn:hover { background: var(--primary-light); }

.second-footer { background: var(--primary-dark); padding: 100px 0 0; }
.bg-footer, .ttm-bgcolor-darkgrey, .ttm-bg {
  background: linear-gradient(135deg, #f2f2f2 0%,#e5e5e5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 }

.widget-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #d5090a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#menu-footer-quick-links li { margin-bottom: 0; }

#menu-footer-quick-links .nav-link {
  font-size: 13px;
  border: 0;
  color: #666;
  padding: 0 !important;
    display: block; /* Ou 'inline-block' */
    white-space: normal; /* Garante que o texto não seja forçado a uma linha só */
    overflow-wrap: break-word; /* Quebra palavras longas se necessário */
    word-break: break-word; 
  align-items: center;
  margin-bottom: 20px;
  gap: 6px;
  font-weight: normal;
  line-height: 1.1;
  transition: var(--transition);
}

#menu-footer-quick-links .nav-link:hover { color:#000000 !important; background: transparent; padding-left: 6px; }
#menu-footer-quick-links .nav-link i { font-size: 14px; color: #666; }

.widget-post li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.widget-post li:last-child { border-bottom: none; }

.widget-post li a img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }

.post-detail .post-date {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.post-detail > a {
  font-size: 14.5px;
  display: block;
  line-height: 1.4;
  text-transform: uppercase;
  transition: var(--transition);
}

.post-detail > a:hover { color: #000; }

.bottom-footer-text.copyright {
  background: #d81a1b;
  padding: 20px 0;
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cpy-text { font-size: 12.5px; color: #FFF; }

.footer-nav-menu { display: flex; justify-content: flex-end; list-style: none; padding: 0; margin: 0; }

.footer-nav-menu li a {
  font-size: 12.5px;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-nav-menu li a:hover { color: rgba(255,255,255,0.75); }
.footer-nav-menu li img { height: 16px; width: auto; display: inline-block; }

/* ============================================================ PAGE TITLE (INNER) ============================================================ */

.page-title-area {
  position: relative;
  background: linear-gradient(135deg, #f2f2f2 0%,#e5e5e5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
}

.page-title-area .container-fluid { position: relative; z-index: 2; padding: 40px; }
.page-shape-wrap { position: relative; z-index: 2; }

.page-title-content h1 {
  font-size: clamp(22px, 4vw, 20px);
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.page-title-content ul { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }

.page-title-content ul li { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; }

.page-title-content ul li::after { content: '/'; color: rgba(255,255,255,0.25); margin-left: 6px; }
.page-title-content ul li:last-child::after { display: none; }

.page-title-content ul li a { color:#666666; font-size: 13px; transition: var(--transition); }
.page-title-content ul li a:hover { color: #666666; }
.page-title-content ul li.active { color: #666666; }

.video-foreground { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.video-foreground::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,17,87,0.92) 0%, rgba(0,17,87,0.7) 100%);
  z-index: 1;
}

.video-foreground video { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================ CONTACT FORM ============================================================ */

.contact-area { padding: 64px 0; }
.pt-100 { padding-top: 64px !important; }
.ptb-100 { padding: 64px 0 !important; }
.ptb-40 { padding: 40px 0 !important; }
.pt-md-5 { padding-top: 32px !important; }
.pb-100 { padding-bottom: 64px !important; }

.contact-form .form-group { margin-bottom: 20px; }

.form-control {
  height: 50px;
  color: var(--text);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 14px;
  padding: 10px 16px;
  width: 100%;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  display: block;
}

.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,17,87,0.07); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { height: auto; resize: vertical; }

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.default-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white) !important;
  padding: 13px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,17,87,0.25);
}

.default-btn:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,17,87,0.35); color: var(--white) !important; }

.default-btn.two { background: var(--accent); box-shadow: 0 4px 16px rgba(230,51,41,0.3); }
.default-btn.two:hover { background: var(--accent-light); }

.btn-iconic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-iconic:hover { background: var(--primary-light); color: var(--white) !important; }

.produto-media-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.produto-image-popup {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

.produto-image-popup::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: var(--transition);
}

.produto-image-popup:hover::after {
  opacity: 1;
}

.imagem-expandir {
  width: 100%;
  border-radius: inherit;
  transition: transform 0.45s ease;
}

.produto-image-popup:hover .imagem-expandir {
  transform: scale(1.04);
}

.produto-image-hint {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #737373;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.whatsapp-orcamento {
  display: flex;
  justify-content: center;
}

.btn-orcamento-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: 16px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366 0%, #149f4a 100%);
  color: var(--white) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-orcamento-whatsapp:hover {
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.36);
  filter: saturate(1.05);
}

.btn-orcamento-whatsapp svg {
  flex-shrink: 0;
}

/* ============================================================ BLOG ============================================================ */

.single-blog-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 24px;
}

.single-blog-item:hover {  transform: translateY(-3px); }

.single-blog-item > a img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.blog-content { padding: 20px 22px; }

.blog-content ul { gap: 12px; margin-bottom: 12px; list-style: none; padding: 0; }
.blog-content ul li { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray-400); }
.blog-content ul li i { font-size: 14px; color: var(--accent); }

.blog-content h3 { font-size: 15px; font-weight: 700; color: var(--text); text-transform: none; margin-bottom: 12px; line-height: 1.4; }
.blog-content h3 a { color: var(--text); }
.blog-content h3 a:hover { color: var(--primary); }

a.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

a.read-more:hover { gap: 10px; color: var(--accent); }

/* ============================================================ FAQ ============================================================ */

.faq-accordion .accordion { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }

.accordion-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  transition: var(--transition);
}

.accordion-item:hover { border-color: var(--primary); }

.accordion-title {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 12px;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  text-decoration: none;
}

.accordion-title.active { color: var(--primary); }
.accordion-title i { font-size: 20px; transition: var(--transition); flex-shrink: 0; }
.accordion-title.active i { transform: rotate(45deg); color: var(--accent); }

.accordion-content { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--text-light); line-height: 1.7; }
.accordion-content.show { display: block; }

/* ============================================================ SIDEBAR / TAGS ============================================================ */

.categoriasp-pro {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.categoriasp-pro h6 { margin-bottom: 2px; }

.categoriasp-pro h6 a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}

.categoriasp-pro h6 a:hover { background: var(--primary); color: var(--white); }
.categoriasp-pro h6 a i { color: var(--accent); font-size: 15px; }
.categoriasp-pro h6 a:hover i {
  color: #FFF;
}
.event-details-content { background: var(--gray-50); border-radius: var(--radius); padding: 20px; border: 1px solid var(--gray-200); }

.tag-list { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; list-style: none; padding: 0; margin: 0; }

.tag-list li a {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-100);
  color: var(--text);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  transition: var(--transition);
}

.tag-list li a:hover { background: var(--primary); color: var(--white); }
.tag-list li span { font-size: 12px; font-weight: 600; color: var(--gray-400); }

/* ============================================================ ERROR 404 ============================================================ */

.error-area { padding: 80px 0; }
.error-content { text-align: center; }

.error-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  text-transform: none;
}

.error-content h1 .red { color: var(--accent); }

.error-content h3 { font-size: 22px; color: var(--text); text-transform: none; margin-bottom: 16px; }
.error-content p { color: var(--text-light); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================ OVERVIEW CONTENT ============================================================ */

.overview-content h1, .overview-content h2, .overview-content h3, .overview-content h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  text-transform: none;
  margin-bottom: 12px;
  margin-top: 24px;
}

.overview-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }
.overview-content img { border-radius: var(--radius); margin-bottom: 16px; }

.page.overview-content { background: var(--white); border-radius: var(--radius); padding: 0px; box-shadow: var(--shadow-sm); }

/* ============================================================ OWL CAROUSEL ============================================================ */

.owl-theme .owl-nav [class*=owl-] {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50% !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  margin: 4px !important;
  transition: var(--transition) !important;
}

.owl-theme .owl-nav [class*=owl-]:hover { background: var(--accent) !important; }
.owl-theme .owl-dots .owl-dot span { background: var(--gray-400) !important; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { background: var(--primary) !important; }

/* ============================================================ MEANMENU (mobile) ============================================================ */

.mean-container .mean-bar { background: var(--primary) !important; }

.mean-container .mean-nav ul li a {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.9) !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  padding: 12px 5% !important;
}

.mean-container a.meanmenu-reveal {
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  border-radius: 6px !important;
}

.mean-container a.meanmenu-reveal span { background: var(--white) !important; }

/* ============================================================ UTILITIES ============================================================ */

.text-center { text-align: center !important; }
.text-left, .text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-white { color: var(--white) !important; }
.pt-20 { padding-top: 20px; }
.mb-0 { margin-bottom: 0 !important; }

.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }

.col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-md-10, .col-md-12,
.col-lg-3, .col-lg-4, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-12,
.col-sm-6, .col-sm-12,
.col-xl-3, .col-xl-4, .col-xl-12,
.col-xs-12, .widget-area {
  padding: 0 12px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .col-sm-6 { width: 50%; }
}

@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666%; }
  .col-md-10 { width: 83.333%; }
  .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.666%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333%; }
  .col-lg-12 { width: 100%; }
}

@media (min-width: 1320px) {
  .col-xl-3 { width: 25%; }
  .col-xl-4 { width: 33.333%; }
  .col-xl-12 { width: 100%; }
}

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.d-flex { display: flex; }

/* ============================================================ RESPONSIVE ============================================================ */

@media (max-width: 1400px) {
  .navbar-brand img { height: 50px !important;}
}

@media (max-width: 992px) {
  .desktop-nav { display: none !important; }
  .mobile-responsive-nav { display: block !important; }

  .np-wrapper-sobre { flex-direction: column; gap: 32px; }
  .mapa-brasil { flex: none; max-width: 240px; margin: 0 auto; }

  .np-grid { flex-direction: column; gap: 20px; }
  .np-centro { order: -1; }
  .np-col { gap: 16px; }

  .single-counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .single-counter-item:last-child { border-bottom: none; }

  .first-footer .col-lg-8, .first-footer .col-lg-4 { width: 100% !important; }
  .second-footer .col-lg-3 { width: 50% !important; margin-bottom: 32px; }
}

@media (max-width: 768px) {
  .bg-video, .container_slide .bg-video {
    min-height: 220px !important;
    height: 220px !important;
  }
  .np-item { min-width: 50%; }
  .category-slide .single-category-item { min-height: 400px; }
  .banner-content h1 { font-size: 24px; }
  .banner-area .col-md-6:last-child { display: none; }

  .np-wrapper { padding: 0 12px; }
  .np-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .np-item:last-child { border-bottom: none; }

  .np-solucoes, .np-sobre, .testimonials-area, .counter-area { padding: 48px 0; }
  .single-counter-item h2 { font-size: 34px; }
  .page-title-area .container-fluid { padding: 28px 24px; }

  .second-footer .col-lg-3 { width: 100% !important; }
  .footer-nav-menu { justify-content: flex-start; margin-top: 8px; }
}

@media (max-width: 480px) {
  .np-item { min-width: 100%; }
  .comprars, .np-botao { padding: 11px 20px; font-size: 13px; }
}

/* ---- Sticky header ---- */
.navbar-area.is-sticky {
  box-shadow: 0 2px 20px rgba(0,17,87,0.12);
  transform: translateY(0);
}
.navbar-area.is-sticky .others-options {
  max-height: 0;
  opacity: 0;
  margin: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.navbar-area.is-sticky .navbar-brand img {
  height: 40px;
  margin-top: 0;
}
.navbar-area.is-sticky .desktop-nav-content {
  gap: 0;
}
.navbar-area.is-sticky .desktop-nav nav.navbar {
  padding: 10px 0;
  gap: 18px;
}
/* ---- Go top button ---- */
.go-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.go-top.active { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top:hover { background: var(--accent); }

/* ============================================================
   CORREÇÕES v2 — Dropdown azul + Slide background
   ============================================================ */

/* ------ DROPDOWN: fundo azul, letras brancas, gap fechado ------ */

.desktop-nav .navbar-nav .nav-item {
  position: relative;
}

.desktop-nav .navbar-nav .nav-item .dropdown-menu {
  display: block !important;
  position: absolute;
  /* gap de 2px para o cursor não perder o foco ao deslocar */
  top: calc(100% + 2px);
  left: 0;
  background: #d5090a;          /* azul #666666 */
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,17,87,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 200px;
  max-width: 240px;                     /* evita links muito largos */
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 9999;
  list-style: none;
}

/* ponte invisível de 2px para o cursor não "cair no vazio" */
.desktop-nav .navbar-nav .nav-item .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.desktop-nav .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* links dentro do dropdown: brancos */
.desktop-nav .dropdown-menu .nav-item .nav-link,
.desktop-nav .dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85) !important; /* branco sempre */
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  /* quebra linha em textos longos */
  white-space: normal;
  padding: 10px !important;
  border: 0;
  word-break: break-word;
  line-height: 1.35;
  max-width: 228px;
}

/* hover: fundo branco semi-transparente, letra totalmente branca */
.desktop-nav .dropdown-menu .nav-item .nav-link:hover,
.desktop-nav .dropdown-menu li a:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  padding-left: 20px;
}

/* estado active / current */
.desktop-nav .dropdown-menu .nav-item .nav-link:active,
.desktop-nav .dropdown-menu .nav-item .nav-link:focus,
.desktop-nav .dropdown-menu li a:active,
.desktop-nav .dropdown-menu li a:focus {
  background: rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
  outline: none;
}

/* ------ SLIDE HERO: garante background visível ------ */

/* O Owl Carousel envolve em .owl-item que pode ter overflow:hidden
   e o background-image inline do PHP não aparece se o elemento não
   tiver dimensões explícitas. Forçamos tudo aqui. */
.container_slide,
.container_slide .category-slide,
.container_slide .owl-stage-outer,
.container_slide .owl-stage,
.container_slide .owl-item {
  /* não cortar a imagem de fundo dos filhos */
  overflow: visible;
}

/* Restaurar overflow apenas no stage-outer para o carousel funcionar */
.container_slide .owl-stage-outer {
  overflow: hidden !important;
}

.category-slide .single-category-item,
.owl-carousel .owl-item .single-category-item,
.single-category-item {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  /* fallback: se ainda não carregar a imagem, fundo azul sólido */
  /* background-color: var(--primary) !important; */
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
}

/* overlay escuro SEMPRE presente — garante legibilidade do texto
   mesmo quando a imagem ainda não carregou */
.category-slide .single-category-item::before,
.owl-carousel .owl-item .single-category-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #8a888840;
  z-index: 1;
  pointer-events: none;
}

/* o conteúdo do banner fica acima do overlay */
.single-category-item .banner-area {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* texto branco explícito em todos os elementos do banner */
.banner-content,
.banner-content h1,
.banner-content p,
.banner-content .tit1,
.banner-content .slide__subtitle {
  color: #ffffff !important;
}

.banner-content .tit1 {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.single-blog-item .text-center {
  text-align: left !important;
}
.video-foreground {
  display: none;
}
.container_slide .bg-video {
    height: 720px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.text-banner {
    margin-top: -720px;
}
.bg-video {
    min-height: 720px;
}
.video-car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
