/* ==========================================================================
   REALMINE - FOLHA DE ESTILOS PRINCIPAL
   Tema Claro: Branco e Azul Institucional RealMine
   ========================================================================== */

/* ==========================================================================
   1. VARIÁVEIS E CONFIGURAÇÕES GERAIS
   ========================================================================== */
:root {
  /* Tons Institucionais da Marca RealMine */
  --primary-dark: #012b45;        /* Azul Marinho Profundo (Cor de fundo da Logo) */
  --primary-dark-hover: #001f33;
  --primary-blue: #006699;        /* Azul Royal Corporativo para Ações/Destaques */
  --primary-blue-hover: #004d73;
  --accent-ice: #b5d3e9;          /* Azul Gelo / Ciano Suave (Cor do Ícone da Logo) */
  --accent-light: #e8f3fa;        /* Fundo Azul Sutil */

  /* Fundos em Tema Claro */
  --bg-body: #f8fafc;             /* Fundo Principal Limpo e Iluminado */
  --bg-white: #ffffff;            /* Branco Puro para Cards e Caixas */
  --bg-card: #ffffff;
  --bg-alt: #f1f6fa;              /* Fundo de Seções Alternadas */
  --bg-dark: #012b45;             /* Fallback para componentes escuros específicos */

  /* Tipografia & Contraste */
  --text-navy: #012b45;           /* Títulos Principais */
  --text-dark: #0f172a;           /* Títulos Escuros */
  --text-body: #334155;           /* Parágrafos e Leituras Confortáveis */
  --text-muted: #64748b;          /* Textos Secundários, Datas e Metas */
  --text-white: #ffffff;          /* Textos sobre Fundo Azul/Escuro */

  /* Bordas e Sombras Suaves */
  --border-color: #e2e8f0;
  --border-subtle: rgba(1, 43, 69, 0.08);
  --border-blue: rgba(0, 102, 153, 0.2);
  --shadow-sm: 0 2px 10px rgba(1, 43, 69, 0.04);
  --shadow-md: 0 8px 24px rgba(1, 43, 69, 0.08);
  --shadow-lg: 0 16px 36px rgba(1, 43, 69, 0.12);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-body);
  color: var(--text-body);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.bg-dark {
  background-color: var(--bg-body) !important;
}

.bg-light {
  background-color: var(--bg-body) !important;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ==========================================================================
   2. HEADER (CABEÇALHO)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(0, 20, 35, 0.75) 0%, rgba(0, 20, 35, 0.25) 60%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
  padding: 12px 0;
  background: rgba(1, 43, 69, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(181, 211, 233, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

/* Logo */
.logo {
  flex: 0 1 auto;
}

.logo-img {
  height: 75px !important;
  width: auto !important;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Bloco da Direita (Menu + Busca + Tradutor) */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Menu de Navegação */
.nav-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
}

.nav-menu ul li a:hover {
  color: var(--accent-ice);
}

.btn-nav {
  background: var(--accent-ice) !important;
  color: var(--primary-dark) !important;
  padding: 9px 22px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(181, 211, 233, 0.3);
  transition: var(--transition);
}

.btn-nav:hover {
  background: #ffffff !important;
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
}

/* Buscador em linha */
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(181, 211, 233, 0.3);
  border-radius: 50px;
  padding: 6px 15px;
  transition: var(--transition);
}

.header-search:focus-within {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-ice);
  box-shadow: 0 0 10px rgba(181, 211, 233, 0.3);
}

.header-search input {
  background: none;
  border: none;
  color: #ffffff;
  outline: none;
  font-size: 13px;
  width: 130px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header-search button {
  background: none;
  border: none;
  color: var(--accent-ice);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tradutor Customizado */
.custom-translator {
  position: relative;
  cursor: pointer;
  user-select: none;
  z-index: 10001;
}

.translator-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 15px;
  border-radius: 50px;
  border: 1px solid rgba(181, 211, 233, 0.3);
  transition: var(--transition);
}

.translator-selected:hover {
  border-color: var(--accent-ice);
  background: rgba(255, 255, 255, 0.2);
}

.translator-selected img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.translator-selected span {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.translator-selected i {
  font-size: 10px;
  color: var(--accent-ice);
}

.translator-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #012338;
  border: 1px solid rgba(181, 211, 233, 0.25);
  border-radius: 12px;
  list-style: none;
  padding: 8px 0;
  width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.custom-translator.active .translator-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.translator-options li {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s;
  cursor: pointer;
}

.translator-options li:hover {
  background: rgba(181, 211, 233, 0.15);
  color: var(--accent-ice);
}

.translator-options li img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* Oculta Google Translate */
#google_translate_element {
  display: block !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  top: -100px !important;
  left: -100px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.goog-te-banner-frame,
.skiptranslate iframe,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

/* ==========================================================================
   3. BOTÕES E COMPONENTES GERAIS
   ========================================================================== */
.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 35px;
  background-color: var(--primary-dark);
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(1, 43, 69, 0.2);
}

.btn-brand:hover {
  background-color: var(--primary-blue);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 153, 0.35);
}

.w-100-btn {
  width: 100%;
  text-align: center;
  display: flex;
}

/* Linha Divisória de Título */
.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-centered h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-header-centered .subtitle {
  display: block;
  color: var(--primary-blue);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 10px;
}

.header-line {
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  margin: 15px auto 0;
  border-radius: 3px;
}

/* ==========================================================================
   4. HOME - HERO FULLSCREEN DINÂMICO (ESTILO FAST2MINE / IMPACTO)
   ========================================================================== */
.fullscreen-hero {
  position: relative;
  width: 100%;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #011b2e;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.heroBgSwiper {
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(1, 43, 69, 0.25) 40%,
    rgba(0, 0, 0, 0.4) 75%,
    rgba(1, 43, 69, 0.75) 100%
  );
  z-index: 2;
}

.hero-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 180px;
  padding-bottom: 120px;
  display: flex;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  color: #ffffff;
}

.hero-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 1.3;
  margin-bottom: 35px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.hero-main-title .highlight-num {
  color: #f7e018;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f7e018;
  color: #012b45 !important;
  padding: 15px 48px;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(247, 224, 24, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-cta:hover {
  background-color: #ffffff;
  color: #012b45 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #ffffff;
  font-size: 24px;
  opacity: 0.85;
  transition: var(--transition);
  animation: heroBounce 2s infinite;
  text-decoration: none;
}

.hero-scroll-indicator:hover {
  opacity: 1;
  color: #f7e018;
}

@keyframes heroBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (max-width: 992px) {
  .hero-main-title {
    font-size: 2rem;
  }
  .fullscreen-hero {
    min-height: 85vh;
  }
  .hero-content-container {
    padding-top: 140px;
    padding-bottom: 90px;
  }
}

@media (max-width: 600px) {
  .hero-main-title {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
  .btn-hero-cta {
    width: 100%;
    max-width: 260px;
    padding: 13px 25px;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   PAGE HERO BANNER (SOLUÇÕES, SOBRE, CONTATO - TEMA CLARO & AZUL CORPORATIVO)
   ========================================================================== */
.page-hero-banner {
  position: relative;
  background: linear-gradient(135deg, #012b45 0%, #004777 60%, #012b45 100%);
  padding: 170px 0 70px;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(181, 211, 233, 0.2);
}

.page-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 85% 20%, rgba(181, 211, 233, 0.18) 0%, transparent 55%),
              radial-gradient(circle at 15% 85%, rgba(247, 224, 24, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(181, 211, 233, 0.15);
  color: var(--accent-ice);
  border: 1px solid rgba(181, 211, 233, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.page-hero-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
  font-size: 1.15rem;
  color: #e2e8f0;
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 25px;
}

.page-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #b5d3e9;
}

.hero-feature-item i {
  color: #f7e018;
  font-size: 14px;
}

/* ==========================================================================
   5. HOME - SEÇÃO SOBRE (RESUMO)
   ========================================================================== */
.home-about {
  padding: 90px 0;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.about-left-col .subtitle {
  display: block;
  color: var(--primary-blue);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-left-col .section-title-small {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.about-right-col p {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-right-col p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   6. HOME - SEÇÃO DE PRODUTOS / SOLUÇÕES (SWIPER)
   ========================================================================== */
.products-section {
  padding: 100px 0;
  background: #ffffff;
}

.product-card-new {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
}

.product-card-new:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.product-img-box {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.product-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card-new:hover .product-img-box img {
  transform: scale(1.06);
}

.product-content-box {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.product-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.product-header-row h3 {
  color: var(--text-navy);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.detail-arrow {
  color: var(--primary-blue);
  font-size: 1.1rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
}

.detail-arrow:hover {
  color: #ffffff;
  background: var(--primary-blue);
  transform: translateX(4px);
}

.product-category-tag {
  color: var(--primary-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.product-short-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 60px;
}

.view-all-container {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 40px;
  background: #ffffff;
  color: var(--text-navy);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-view-all i {
  font-size: 12px;
  color: var(--primary-blue);
  transition: var(--transition);
}

.btn-view-all:hover {
  border-color: var(--primary-blue);
  background: var(--accent-light);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-view-all:hover i {
  transform: rotate(90deg);
}

/* ==========================================================================
   7. HOME & SOBRE - SEÇÃO DE PARCEIROS
   ========================================================================== */
.partners-section {
  padding: 90px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-6px);
}

.partner-logo-circle {
  width: 140px;
  height: 140px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.partner-logo-circle::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px dashed var(--accent-ice);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover .partner-logo-circle {
  border-color: var(--primary-blue);
  box-shadow: 0 10px 25px rgba(0, 102, 153, 0.15);
}

.partner-card:hover .partner-logo-circle::before {
  border-color: var(--primary-blue);
  border-style: solid;
  transform: rotate(180deg);
}

.logo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner img {
  max-width: 100% !important;
  max-height: 65px !important;
  object-fit: contain !important;
  filter: grayscale(0%) !important;
  opacity: 1 !important;
}

.partner-name {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 600;
}

.partnersSwiper {
  padding: 20px 0;
}

/* ==========================================================================
   8. HOME - CATÁLOGO PREMIUM SECTION
   ========================================================================== */
.catalog-premium-section {
  padding: 80px 0;
  background: var(--bg-body);
}

.catalog-premium-box {
  background: linear-gradient(135deg, #012b45 0%, #00426d 100%);
  border: 1px solid rgba(181, 211, 233, 0.3);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.catalog-premium-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(181, 211, 233, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.catalog-premium-content {
  flex: 1;
  z-index: 2;
}

.catalog-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(181, 211, 233, 0.2);
  color: var(--accent-ice);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(181, 211, 233, 0.3);
}

.catalog-premium-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.catalog-premium-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 600px;
}

.catalog-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.catalog-btn {
  background: #ffffff !important;
  color: var(--primary-dark) !important;
  font-weight: 800 !important;
}

.catalog-btn:hover {
  background: var(--accent-ice) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-3px);
}

.catalog-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-premium-visual {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.visual-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-ice);
  filter: blur(60px);
  opacity: 0.25;
  border-radius: 50%;
}

.pdf-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(5deg);
  transition: 0.4s ease;
}

.catalog-premium-box:hover .pdf-icon-wrapper {
  transform: rotate(0deg) translateY(-10px);
  border-color: rgba(181, 211, 233, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pdf-icon-wrapper i {
  font-size: 4rem;
  color: #ef4444;
}

/* ==========================================================================
   9. PÁGINA DE SOLUÇÕES (NOSSOS PRODUTOS)
   ========================================================================== */
.solutions-page {
  background-color: var(--bg-body);
}

.solutions-hero {
  padding: 120px 0 30px;
  background-color: var(--bg-body);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.solutions-intro {
  padding: 40px 0 20px;
  background-color: transparent;
}

.solutions-intro .intro-text {
  max-width: 900px;
}

.solutions-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-navy);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.solutions-intro h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-blue);
  margin-top: 15px;
  border-radius: 2px;
}

.solutions-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body);
}

.solutions-content {
  padding: 30px 0 90px;
}

.solutions-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Sidebar de Filtros */
.filters-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 110px;
}

.filters-title {
  font-size: 1.15rem;
  color: var(--text-navy);
  margin-bottom: 25px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
}

.filter-btn:hover {
  background: var(--accent-light);
  color: var(--primary-blue);
}

.checkbox-custom {
  min-width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  position: relative;
  background: #ffffff;
  transition: var(--transition);
}

.filter-btn.active {
  color: var(--primary-blue);
  font-weight: 700;
  background: var(--accent-light);
}

.filter-btn.active .checkbox-custom {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.filter-btn.active .checkbox-custom::after {
  content: "✓";
  position: absolute;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Coluna de Produtos */
.products-column {
  flex-grow: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.product-thumb {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 15px;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-item:hover .product-thumb img {
  transform: scale(1.08);
}

.product-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.product-title-row h3 {
  color: var(--text-navy);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.link-detail {
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.link-detail:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateX(3px);
}

.product-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-whatsapp-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 15px;
  background-color: #25d366;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  margin-top: auto;
}

.btn-whatsapp-quote:hover {
  background-color: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.no-products-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border: 1px dashed var(--border-color);
  border-radius: 20px;
  color: var(--text-muted);
}

.no-products-found i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  display: block;
}

.no-products-found p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-body);
}

/* ==========================================================================
   10. PÁGINA SOBRE NÓS
   ========================================================================== */
.about-page {
  background-color: var(--bg-body);
}

.about-hero {
  padding: 60px 0 50px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-navy);
  line-height: 1.3;
  margin-bottom: 30px;
  max-width: 1000px;
  letter-spacing: -0.5px;
}

.about-text {
  max-width: 1000px;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-history {
  padding: 80px 0;
  background-color: var(--bg-alt);
}

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

.about-swiper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}

.about-quote {
  background: #ffffff;
  border-left: 4px solid var(--primary-blue);
  padding: 25px;
  border-radius: 0 12px 12px 0;
  margin-top: 30px;
  box-shadow: var(--shadow-sm);
}

.about-quote p {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-navy);
  margin-bottom: 8px;
}

.about-quote span {
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   11. PÁGINA DETALHE DO PRODUTO
   ========================================================================== */
.product-detail-page {
  padding: 130px 0 60px;
  background-color: var(--bg-body);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-gallery-section {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.gallery-container {
  display: flex;
  gap: 20px;
}

.thumb-swiper {
  width: 100px;
  height: 420px;
}

.thumb-img-box {
  width: 100%;
  height: 90px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.thumb-swiper .swiper-slide-thumb-active .thumb-img-box {
  border-color: var(--primary-blue);
  box-shadow: 0 0 10px rgba(0, 102, 153, 0.3);
}

.thumb-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.main-swiper-view {
  flex-grow: 1;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 20px;
}

.main-swiper {
  width: 100%;
  height: 100%;
}

.main-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Info Section */
.product-info-section {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.cat-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.product-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 25px;
  line-height: 1.2;
}

.description-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.description-block p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Tabs do Produto */
.product-tabs-full {
  padding: 40px 0 60px;
  background: var(--bg-body);
}

.tabs-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.tabs-buttons {
  display: flex;
  gap: 15px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
}

.tab-button {
  background: none;
  border: none;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-button:hover {
  color: var(--primary-blue);
}

.tab-button.active {
  color: var(--text-navy);
}

.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px 3px 0 0;
}

.tabs-content {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
}

.tab-pane {
  display: none;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

.tab-pane.active {
  display: block;
}

/* Seção de Cotação Produto */
.quote-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-color);
}

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

.quote-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.quote-left h2 span {
  color: var(--primary-blue);
}

.quote-text {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 30px;
}

.quote-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.quote-highlight i {
  font-size: 24px;
  color: var(--primary-blue);
}

.quote-highlight p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}

.quote-right {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 18px;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.expert-form input,
.expert-form select,
.expert-form textarea {
  width: 100%;
  background: var(--bg-body);
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.expert-form input:focus,
.expert-form select:focus,
.expert-form textarea:focus {
  border-color: var(--primary-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.15);
}

.btn-quote,
.btn-send-expert {
  width: 100%;
  background: var(--primary-dark);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(1, 43, 69, 0.2);
}

.btn-quote:hover,
.btn-send-expert:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 153, 0.35);
}

/* ==========================================================================
   12. BLOG E ARTIGOS
   ========================================================================== */
.blog-hero {
  padding: 130px 0 40px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.blog-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 10px;
}

.blog-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.blog-list {
  padding: 60px 0 100px;
  background: var(--bg-body);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.blog-img-wrapper {
  height: 220px;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.08);
}

.blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.text-area h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 15px;
  line-height: 1.3;
}

.text-area p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-standard {
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-standard:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
}

/* Artigo Individual */
.article-hero {
  padding: 130px 0 40px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.back-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.3s;
}

.back-link:hover {
  color: var(--primary-dark);
}

.article-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-navy);
  line-height: 1.2;
  max-width: 900px;
}

.article-body {
  padding: 50px 0 100px;
  background: var(--bg-body);
}

.main-article-img {
  width: 100%;
  max-height: 500px;
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.main-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.rich-text {
  color: var(--text-body);
  font-size: 1.15rem;
  line-height: 1.9;
}

.rich-text p {
  margin-bottom: 25px;
}

.article-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 50px 0;
}

.article-footer p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-weight: 600;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.share-buttons a:hover {
  background: #1eb954;
  transform: translateY(-2px);
}

/* ==========================================================================
   13. PÁGINA DE CONTATO
   ========================================================================== */
.contact-page {
  background-color: var(--bg-body);
}

.contato-hero {
  padding-top: 110px;
}

.contact-hero {
  padding: 30px 0 20px;
  background: transparent;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 8px;
}

.contact-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.contact-section {
  padding: 20px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-navy);
  margin-bottom: 20px;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-box {
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  background: var(--bg-body);
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: var(--primary-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.15);
}

.btn-contact {
  width: 100%;
  background: var(--primary-dark);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(1, 43, 69, 0.2);
}

.btn-contact:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 153, 0.35);
}

/* ==========================================================================
   14. POLÍTICA DE PRIVACIDADE
   ========================================================================== */
.policy-page {
  padding: 130px 0 80px;
  background-color: var(--bg-body);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  line-height: 1.8;
  color: var(--text-body);
}

.policy-content h1 {
  color: var(--text-navy);
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 800;
}

.policy-content h2 {
  color: var(--primary-blue);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  border-left: 4px solid var(--primary-blue);
  padding-left: 15px;
}

.policy-content p {
  margin-bottom: 20px;
  color: var(--text-body);
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content ul li {
  margin-bottom: 10px;
  color: var(--text-body);
}

.policy-date {
  margin-top: 50px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   15. FOOTER (RODAPÉ)
   ========================================================================== */
.main-footer {
  background-color: var(--primary-dark);
  color: #e2e8f0;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Faixa Amarela de CTA */
.footer-cta {
  background-color: #f7e018;
  padding: 30px 0;
  margin-bottom: 50px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-box p {
  color: #012b45;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0;
  max-width: 750px;
  line-height: 1.4;
}

.btn-cta {
  background-color: #012b45;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(1, 43, 69, 0.3);
}

.btn-cta:hover {
  background-color: #001726;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Grid do Rodapé */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-top: 20px;
  padding-bottom: 50px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent-ice) !important;
  padding-left: 5px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 25px;
}

/* Redes Sociais */
.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.social-icons a {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icons a:hover {
  background-color: var(--accent-ice) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-3px);
}

.ex-badge-container {
  background-color: rgba(181, 211, 233, 0.12);
  border: 1px solid rgba(181, 211, 233, 0.3);
  color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.ex-box {
  border: 2px solid var(--accent-ice);
  color: var(--accent-ice);
  padding: 2px 8px;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 4px;
}

.ex-badge-container p {
  font-size: 0.82rem;
  font-weight: 500;
  margin: 0;
  color: #e2e8f0;
}

/* Sub-Rodapé */
.footer-bottom {
  background-color: #001726;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .copyright {
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-bottom .developer {
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-bottom .developer a {
  color: var(--accent-ice);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom .developer a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   16. BANNER DE COOKIES LGPD
   ========================================================================== */
.cookie-full-width {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 18px 0;
  z-index: 99998;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
  transition: bottom 0.5s ease-in-out;
  border-top: 1px solid var(--border-color);
}

.cookie-full-width.show {
  bottom: 0;
}

.cookie-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text p {
  color: var(--text-dark) !important;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.cookie-text a {
  color: var(--primary-blue);
  text-decoration: underline;
  font-weight: 700;
}

.cookie-btn-black {
  background-color: var(--primary-dark);
  color: #ffffff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.cookie-btn-black:hover {
  background-color: var(--primary-blue);
}

/* ==========================================================================
   17. WHATSAPP FLUTUANTE & QR CODE
   ========================================================================== */
.whatsapp-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  transition: bottom 0.5s ease-in-out;
}

.cookie-full-width.show ~ .whatsapp-float-container {
  bottom: 90px;
}

a.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

a.whatsapp-btn:hover {
  background: #1eb954;
  transform: scale(1.08);
}

.qrcode-wrapper {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  width: 240px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.whatsapp-float-container:hover .qrcode-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.qrcode-img {
  width: 200px !important;
  height: 200px !important;
  display: block;
}

.qrcode-wrapper p {
  color: var(--text-navy) !important;
  margin-top: 15px;
  font-weight: 700;
  font-size: 13px;
}

/* ==========================================================================
   18. RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
.mobile-only {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10000;
}

.hamburger-icon {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  position: relative;
  transition: 0.3s;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}

.hamburger-icon::before {
  top: -8px;
  width: 70%;
}

.hamburger-icon::after {
  bottom: -8px;
  width: 100%;
}

/* Animação Hamburger Ativo */
.mobile-menu-toggle.active .hamburger-icon {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
  width: 100%;
}

.mobile-menu-toggle.active .hamburger-icon::after {
  transform: rotate(-45deg) translate(6px, -7px);
  width: 100%;
}

/* Ocultação Desktop / Mobile */
.d-mobile {
  display: none !important;
}

.d-desktop {
  display: block !important;
}

@media (max-width: 992px) {
  .logo-img {
    height: 55px !important;
  }

  .desktop-translator,
  .header-search {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: #012338;
    padding: 90px 30px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    z-index: 9999;
    box-shadow: none;
    border-left: 1px solid rgba(181, 211, 233, 0.2);
  }

  .nav-menu.active {
    right: 0;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .nav-menu ul li {
    width: 100%;
  }

  .nav-menu ul li a {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .mobile-translator {
    margin-top: 15px;
    width: 100%;
  }

  .mobile-translator .translator-options {
    position: relative;
    top: 10px;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .mobile-translator.active .translator-options {
    display: block;
  }

  .about-new-grid,
  .quote-grid,
  .contact-grid,
  .about-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solutions-layout {
    flex-direction: column;
  }

  .filters-sidebar {
    width: 100%;
    position: static;
    top: auto;
  }

  .filter-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .catalog-premium-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
    gap: 30px;
  }

  .catalog-actions {
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .d-desktop {
    display: none !important;
  }

  .d-mobile {
    display: block !important;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .gallery-container {
    flex-direction: column-reverse;
  }

  .thumb-swiper {
    width: 100%;
    height: 80px;
  }

  .thumb-img-box {
    height: 75px;
  }

  .main-swiper-view {
    height: 300px;
  }

  .cookie-flex {
    flex-direction: column;
    text-align: center;
  }

  .cookie-btn-black {
    width: 100%;
  }

  .cookie-full-width.show ~ .whatsapp-float-container {
    bottom: 150px;
  }

  .qrcode-wrapper {
    display: none !important;
  }
}
