/* ==========================================================================
   MASTER PUMP INDUSTRIAL — CORE DESIGN SYSTEM & STYLES (PDF MATCH)
   ========================================================================== */

:root {
  --primary-orange: #f15a24;
  --primary-orange-hover: #ea580c;
  --primary-orange-dark: #d94814;
  --mp-green: #22c55e;
  --mp-green-dark: #16a34a;
  --dark-bg: #0a0e17;
  --dark-surface: #0f172a;
  --dark-card: #1e293b;
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.08);
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light-muted: #94a3b8;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 6px 20px rgba(241, 90, 36, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

img, svg, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: var(--text-body);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}


/* --------------------------------------------------------------------------
   MAIN NAVBAR / TOPBAR
   -------------------------------------------------------------------------- */
.topbar {
  background: rgba(255, 255, 255, 0.96);
  -webkit--webkit-

  -webkit-

  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 240px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-orange);
}

.nav-menu .nav-link-catalog {
  color: var(--primary-orange);
}

.nav-menu-mobile-cta {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-orange-header {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-hover) 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: var(--shadow-orange);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-orange-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.45);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 2px solid var(--primary-orange);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 15px;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
  }

  .btn-nav-mobile-quote {
    background: var(--primary-orange);
    color: #ffffff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
  }

  .btn-nav-mobile-wa {
    background: #25d366;
    color: #ffffff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .btn-orange-header {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 48px 0 54px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero-keywords-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-keyword-tag {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--text-body);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-keyword-tag.tag-primary {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.hero-keyword-tag.tag-ex {
  border-color: #fde68a;
  background: #fefce8;
  color: #a16207;
}

.hero-keyword-tag.tag-tech {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-orange);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.text-orange {
  color: var(--primary-orange);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 24px;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.mini-feature span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-orange-large {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-hover) 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-orange);
  transition: all 0.25s ease;
}

.btn-orange-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(241, 90, 36, 0.45);
  color: #ffffff;
}

.btn-whatsapp-hero {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-whatsapp-hero:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-container {
  width: 100%;
  max-width: 520px;
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.12));
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   TRUST / HIGHLIGHTS BAR
   -------------------------------------------------------------------------- */
.trust-bar-section {
  background: var(--dark-bg);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(241, 90, 36, 0.12);
  border: 1px solid rgba(241, 90, 36, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 2px;
}

.trust-text p {
  color: var(--text-light-muted);
  font-size: 12px;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 960px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 580px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   GENERAL SECTION WRAPPERS & TITLES
   -------------------------------------------------------------------------- */
.section {
  padding: 56px 0;
}

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

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.orange-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
  margin: 0 auto;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   PRODUCTS SHOWCASE SECTION
   -------------------------------------------------------------------------- */
.product-line-section {
  background-color: var(--dark-bg);
  padding: 60px 0;
}

.product-line-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-line-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.product-line-img-box {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-line-title {
  color: var(--primary-orange);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.product-line-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.product-line-specs li {
  margin-bottom: 8px;
}

.product-line-specs li strong {
  color: #fff;
}

.specs-bar {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.specs-bar div {
  color: #fff;
  font-size: 1rem;
}

@media (max-width: 960px) {
  .product-line-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .product-line-grid {
    grid-template-columns: 1fr;
  }
  .specs-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.products-section {
  background: #ffffff;
}

.product-category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.category-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: var(--text-body);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.category-btn.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.35);
}

.series-banner-container {
  display: none;
  margin-bottom: 28px;
  text-align: center;
}

.series-banner-container.active {
  display: block;
}

.series-banner-img {
  max-width: 100%;
  max-height: 220px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
}

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

.product-img-wrap {
  background: #f8fafc;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  cursor: pointer;
}

.pump-svg {
  display: block;
  margin: 0 auto;
}

.product-info {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.product-specs {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  text-align: left;
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 12.5px;
  border-bottom: 1px dashed #f1f5f9;
}

.product-specs li:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--text-muted);
  font-weight: 600;
}

.spec-value {
  color: var(--text-dark);
  font-weight: 800;
}

.btn-product-more {
  margin-top: auto;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-product-more:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #ffffff;
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   FULL CATALOG CTA BANNER & TECH SPECS BAR
   -------------------------------------------------------------------------- */
.full-catalog-cta-box {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  border: 1.5px solid rgba(241, 90, 36, 0.4);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.catalog-cta-badge {
  display: inline-block;
  background: rgba(241, 90, 36, 0.15);
  border: 1px solid rgba(241, 90, 36, 0.35);
  color: var(--primary-orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.catalog-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.catalog-cta-desc {
  font-size: 13.5px;
  color: var(--text-light-muted);
  max-width: 680px;
  margin: 0;
  line-height: 1.45;
}

.btn-catalog-cta-main {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-hover) 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-orange);
  transition: all 0.25s ease;
}

.btn-catalog-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(241, 90, 36, 0.5);
  color: #ffffff;
}

@media (max-width: 900px) {
  .full-catalog-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-catalog-cta-main {
    width: 100%;
    justify-content: center;
  }
}

.tech-specs-bar {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tech-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-spec-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-spec-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.tech-spec-desc {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .tech-specs-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .tech-specs-bar {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   OPERATION SCHEME / TRANSFERÊNCIA FECHADA
   -------------------------------------------------------------------------- */
.operation-scheme-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.operation-scheme-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 12px auto 0 auto;
  line-height: 1.5;
}

.operation-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.operation-svg-wrap {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.operation-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
}

.operation-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.operation-feature-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-left: 5px solid var(--primary-orange);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.operation-feature-card.green {
  border-left-color: #22c55e;
}

.operation-feature-card.blue {
  border-left-color: #0284c7;
}

.operation-feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
}

.operation-feature-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 900px) {
  .operation-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   APPLICATIONS SECTION
   -------------------------------------------------------------------------- */
.applications-section {
  background: #ffffff;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.app-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(241, 90, 36, 0.15), 0 4px 10px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-orange);
}

.app-img-wrap {
  height: 140px;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}

.app-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-card:hover .app-img-wrap img {
  transform: scale(1.1);
}

.app-label {
  padding: 12px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 580px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   ACCESSORIES & SPARE PARTS
   -------------------------------------------------------------------------- */
.accessories-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
}

.accessories-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 12px auto 16px auto;
  line-height: 1.5;
}

.accessories-notice-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 32px auto;
  text-align: left;
  font-size: 12.5px;
  color: #9a3412;
  line-height: 1.45;
}

.accessories-notice-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.acc-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.25s ease;
}

.acc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-orange);
}

.acc-img-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.acc-img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}

.acc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.acc-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1024px) {
  .accessories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .accessories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .accessories-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   WHY CHOOSE & QUOTE FORM (SPLIT SECTION)
   -------------------------------------------------------------------------- */
.why-and-quote-section {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

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

.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
  text-transform: uppercase;
}

.why-item-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.quote-box-wrap {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.quote-card-inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 0;
}

.quote-form-side {
  padding: 32px 28px;
}

.quote-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
}

.quote-form-subtitle {
  font-size: 13px;
  color: var(--text-light-muted);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-orange);
  background: #0f172a;
}

.form-group select option {
  background: #0f172a;
  color: #ffffff;
}

.form-honeypot {
  display: none !important;
}

.lgpd-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-light-muted);
  line-height: 1.35;
  margin: 14px 0;
}

.lgpd-checkbox-group input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--primary-orange);
}

.lgpd-checkbox-group a {
  color: var(--primary-orange);
  text-decoration: underline;
}

.btn-submit-orange {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-hover) 100%);
  color: #ffffff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-orange);
  transition: all 0.25s ease;
}

.btn-submit-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(241, 90, 36, 0.45);
}

.quote-visual-side {
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-ibc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

@media (max-width: 960px) {
  .split-quote-grid {
    grid-template-columns: 1fr;
  }
  .quote-card-inner {
    grid-template-columns: 1fr;
  }
  .quote-visual-side {
    display: none;
  }
}
@media (max-width: 580px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   MAIN SITE FOOTER
   -------------------------------------------------------------------------- */
.footer-section {
  background: var(--dark-bg);
  border-top: 1px solid var(--border-dark);
  color: var(--text-light-muted);
  padding: 48px 0 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.3fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  display: block;
  margin-bottom: 14px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.footer-address-link {
  text-decoration: none;
  color: inherit;
}

.footer-address-link:hover span {
  color: var(--primary-orange);
}

.footer-lines {
  display: flex;
  flex-direction: column;
}

.footer-maps-tag {
  color: var(--primary-orange);
  font-weight: 700;
  margin-top: 2px;
}

.footer-link {
  color: var(--text-light-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary-orange);
}

.footer-link-highlight {
  color: var(--primary-orange);
  font-weight: 700;
}

.footer-social-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-circle-btn:hover {
  background: #25d366;
  border-color: #25d366;
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --------------------------------------------------------------------------
   CATALOGO HEADER COMPATIBILITY
   -------------------------------------------------------------------------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 16px 28px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid var(--primary-orange);
}

.logo-container svg {
  height: 48px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-surface);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-back-home:hover {
  background: #000000;
  transform: translateY(-2px);
}

.btn-budget {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-orange);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-budget:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-2px);
}

.header-info {
  text-align: right;
}

.header-info p {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

/* Banner da Série */
.series-banner-card {
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  text-align: center;
  padding: 10px;
}

.series-banner-card img {
  max-width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  border-radius: 6px;
}

/* Grids */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

/* Cards */
.card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #085521;
}

.card-img-wrapper {
  background: #ffffff;
  height: 260px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 12px 12px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.card-img-wrapper img {
  max-height: 100% !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  -webkit--webkit-

  -webkit-

  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.card-img-wrapper:hover .card-zoom-hint {
  opacity: 1;
  transform: translateY(0);
  background: var(--primary-orange);
}

.badge {
  position: absolute;
  top: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.badge-cap {
  left: 10px;
  background-color: #e6f4ea;
  color: #085521;
  border: 1px solid #b7e1cd;
}

.badge-ex {
  right: 10px;
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.card-header-bar {
  background: #f8fafc;
  padding: 10px 14px;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header-bar h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: #085521;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.model-tag {
  background: #085521;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.card-body {
  padding: 12px 14px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.spec-table tr {
  border-bottom: 1px dashed #e2e8f0;
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 4px 0;
}

.spec-label {
  color: #64748b;
  font-weight: 600;
  width: 44%;
}

.spec-val {
  color: #0f172a;
  font-weight: 600;
  text-align: right;
}

.app-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #334155;
}

.app-box strong {
  color: #085521;
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.4px;
  font-weight: 800;
}

.alert-text {
  color: #dc2626;
  font-size: 0.72rem;
  margin-top: 4px;
  display: block;
  font-weight: 600;
  line-height: 1.3;
}

/* Footer */
.footer-catalogo {
  margin-top: 48px;
  padding: 28px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  border-top: 3px solid #085521;
}

.footer-catalogo p {
  color: #64748b;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

/* Footer App Install Banner & Buttons */
.footer-app-install-banner {
  background: linear-gradient(135deg, #131b26 0%, #1c2635 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 24px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.footer-app-info {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.footer-app-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f15a24 0%, #d44715 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(241, 90, 36, 0.35);
}

.footer-app-texts h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-app-badge-pill {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
}

.footer-app-texts p {
  font-size: 12.5px;
  color: #94a3b8;
  margin: 0 !important;
  line-height: 1.4;
}

.footer-app-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 1;
}

.btn-footer-install {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: left;
}

.btn-install-windows {
  background: #0f172a;
  border-color: rgba(0, 173, 239, 0.35);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.btn-install-windows:hover {
  background: #1e293b;
  border-color: #00adef;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 173, 239, 0.3);
  color: #ffffff;
}

.btn-install-windows .install-btn-icon {
  color: #00adef;
}

.btn-install-mobile {
  background: #0f172a;
  border-color: rgba(241, 90, 36, 0.35);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.btn-install-mobile:hover {
  background: #1e293b;
  border-color: #f15a24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.3);
  color: #ffffff;
}

.btn-install-mobile .install-btn-icon {
  color: #f15a24;
}

.install-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.install-btn-details {
  display: flex;
  flex-direction: column;
}

.install-btn-sub {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.2;
}

.install-btn-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.install-btn-arrow {
  margin-left: 4px;
  color: #64748b;
  transition: transform 0.2s, color 0.2s;
  display: flex;
  align-items: center;
}

.btn-footer-install:hover .install-btn-arrow {
  color: #ffffff;
  transform: translateX(3px);
}

/* Toast */
.mp-install-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid rgba(0, 173, 239, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 173, 239, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 100000;
  font-size: 13.5px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mp-install-toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mp-toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 173, 239, 0.15);
  color: #00adef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Modal Celular Catalogo */
.mobile-install-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.85);
  -webkit--webkit-

  -webkit-

  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-install-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-install-modal-box {
  background: #ffffff;
  color: #1e293b;
  width: min(540px, 95vw);
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}

.mobile-install-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 22px 24px;
  position: relative;
  border-bottom: 2px solid #f15a24;
}

.mobile-install-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.mobile-install-header p {
  margin: 0 !important;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
}

.mobile-install-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-install-close:hover {
  background: #f15a24;
  color: #ffffff;
}

.mobile-install-tabs {
  display: flex;
  background: #f1f5f9;
  padding: 6px;
  border-bottom: 1px solid #e2e8f0;
  gap: 6px;
}

.mobile-install-tab-btn {
  flex: 1;
  padding: 10px 12px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.mobile-install-tab-btn.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-install-body {
  padding: 22px 24px;
  overflow-y: auto;
  max-height: calc(90vh - 170px);
}

.mobile-tab-pane {
  display: none;
}

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

.install-step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.install-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.install-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f15a24;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.install-step-content {
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
}

.install-step-content strong {
  color: #0f172a;
}

.install-qr-container {
  text-align: center;
  padding: 10px 0;
}

.install-qr-box {
  display: inline-block;
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.install-qr-box img {
  display: block;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

.install-qr-caption {
  font-size: 12.5px;
  color: #64748b;
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.4;
}

.btn-trigger-pwa-install {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #f15a24 0%, #ea580c 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(241, 90, 36, 0.35);
  transition: all 0.2s ease;
}

.btn-trigger-pwa-install:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.45);
}

.mobile-install-footer-note {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: #64748b;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FOOTER CATALOGO & APP INSTALL BANNER */
.footer-catalogo {
  background: #0d1217;
  color: #94a3b8;
  border-radius: 16px;
  padding: 36px 32px 28px;
  margin-top: 48px;
  text-align: center;
  border: 1px solid #1e293b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.footer-app-install-banner {
  background: linear-gradient(135deg, #131b26 0%, #1c2635 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.footer-app-install-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.footer-app-install-banner::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 173, 239, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.footer-app-info {
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 1;
}
.footer-app-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f15a24 0%, #d44715 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(241, 90, 36, 0.35);
}
.footer-app-texts h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-app-badge-pill {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
}
.footer-app-texts p {
  font-size: 12.5px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}
.footer-app-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 1;
}
.btn-footer-install {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: left;
}
.btn-install-windows {
  background: #0f172a;
  border-color: rgba(0, 173, 239, 0.35);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.btn-install-windows:hover {
  background: #1e293b;
  border-color: #00adef;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 173, 239, 0.3);
  color: #ffffff;
}
.btn-install-windows .install-btn-icon {
  color: #00adef;
}
.btn-install-mobile {
  background: #0f172a;
  border-color: rgba(241, 90, 36, 0.35);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.btn-install-mobile:hover {
  background: #1e293b;
  border-color: #f15a24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.3);
  color: #ffffff;
}
.btn-install-mobile .install-btn-icon {
  color: #f15a24;
}
.install-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.install-btn-details {
  display: flex;
  flex-direction: column;
}
.install-btn-sub {
  font-size: 10.5px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.2;
}
.install-btn-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}
.install-btn-arrow {
  margin-left: 4px;
  color: #64748b;
  transition: transform 0.2s, color 0.2s;
  display: flex;
  align-items: center;
}
.btn-footer-install:hover .install-btn-arrow {
  color: #ffffff;
  transform: translateX(3px);
}
.footer-catalogo-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1150px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .grid-4, .grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .header {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 16px 14px;
  }
  .logo-container svg {
    height: 38px;
    width: auto;
  }
  .header-info {
    text-align: center;
  }
  .header-nav {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .btn-back-home, .btn-budget {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.88rem;
  }
  .catalog-toolbar {
    padding: 14px 12px;
    margin-bottom: 18px;
  }
  .catalog-search-input {
    font-size: 13.5px;
    padding: 10px 12px 10px 38px;
  }
  .filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 8px;
  }
  .filter-pills::-webkit-scrollbar {
    display: none;
  }
  .filter-pill {
    flex-shrink: 0;
    font-size: 11.5px;
    padding: 6px 14px;
    white-space: nowrap;
  }
  .catalog-results-counter {
    width: 100%;
    text-align: center;
    margin-top: 4px;
    font-size: 0.8rem;
  }
  .series-banner-card {
    padding: 8px;
  }
  .series-banner-card img {
    max-height: 180px;
  }
  .card-img-wrapper {
    height: 190px;
  }
  .footer-catalogo {
    padding: 22px 16px;
    margin-top: 32px;
  }
  .footer-app-install-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px;
    gap: 16px;
  }
  .footer-app-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-footer-install {
    width: 100%;
    justify-content: flex-start;
  }
  .lightbox-close-btn {
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

/* Lightbox Modal */
.image-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 8, 12, 0.94);
  -webkit--webkit-

  -webkit-

  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}
.image-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.image-lightbox-wrapper {
  max-width: 95vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: default;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-lightbox-overlay.active .image-lightbox-wrapper {
  transform: scale(1);
}
.lightbox-close-btn {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lightbox-close-btn:hover {
  background: #f15a24;
  border-color: #f15a24;
}
.lightbox-image-box {
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  max-width: 90vw;
  max-height: 80vh;
  overflow: auto;
}
.lightbox-image-box img {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
.lightbox-footer {
  margin-top: 14px;
  text-align: center;
  color: #ffffff;
}
.lightbox-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
}
.lightbox-hint {
  font-size: 0.75rem;
  color: #94a3b8;
}
.card-img-wrapper, .series-banner-card {
  cursor: zoom-in;
}

/* LGPD Banner & Privacy Modal in Catalogo */
.lgpd-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 18, 23, 0.96);
  -webkit--webkit-

  -webkit-

  border-top: 2px solid #f15a24;
  color: #f1f5f9;
  padding: 16px 24px;
  z-index: 10000;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.lgpd-cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
}
.lgpd-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.lgpd-content {
  flex: 1 1 500px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lgpd-icon {
  flex-shrink: 0;
  color: #f15a24;
  margin-top: 2px;
}
.lgpd-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: #cbd5e1;
}
.lgpd-text strong {
  color: #ffffff;
}
.lgpd-text a {
  color: #f15a24;
  text-decoration: underline;
  cursor: pointer;
}
.lgpd-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-lgpd-accept {
  background: #f15a24;
  color: #ffffff;
  border: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-lgpd-accept:hover {
  background: #d94819;
}
.btn-lgpd-essential {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid #475569;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-lgpd-essential:hover {
  border-color: #94a3b8;
  color: #ffffff;
}
.btn-lgpd-link {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}
.btn-lgpd-link:hover {
  color: #f15a24;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 15, 20, 0.85);
  -webkit--webkit-

  -webkit-

  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.privacy-modal-card {
  background: #ffffff;
  width: min(720px, 95%);
  max-height: 85vh;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}
.privacy-modal-body {
  overflow-y: auto;
  padding-right: 8px;
  font-size: 13px;
  color: #334155;
  line-height: 1.65;
  margin-top: 16px;
}
.privacy-modal-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 18px 0 6px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 4px;
}
.privacy-modal-body h4:first-child {
  margin-top: 0;
}
.privacy-modal-body p {
  margin-bottom: 10px;
}
.privacy-modal-body ul {
  margin: 6px 0 12px 20px;
}
.privacy-modal-body li {
  margin-bottom: 4px;
}
.privacy-badge-lgpd {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid #bae6fd;
  margin-bottom: 8px;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  color: #334155;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: #f15a24;
  color: #ffffff;
  border-color: #f15a24;
}
.footer-privacy-wrap {
  margin-top: 6px;
  font-size: 0.8rem;
}
.footer-privacy-link {
  color: #64748b;
  text-decoration: underline;
}
.footer-catalogo-actions {
  margin-top: 14px;
}
.privacy-modal-header {
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 12px;
}
.privacy-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: #0f172a;
  margin: 0;
}
.privacy-modal-subtitle {
  color: #64748b;
  font-size: 12px;
}
.privacy-contact-box {
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-weight: 600;
}
.privacy-contact-link {
  color: #f15a24;
}
.privacy-modal-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
}

/* Robot Assistant & WhatsApp Widget in Catalogo */
.bot-floating-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.bot-tooltip-bubble {
  background: #0f172a;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: botFloat 3s ease-in-out infinite;
  max-width: 250px;
  line-height: 1.35;
}
.bot-tooltip-bubble strong { color: #38bdf8; }
.bot-bubble-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 14px;
  cursor: pointer;
  padding: 0 2px;
  margin-left: auto;
}
@keyframes botFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.bot-trigger-btn {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f15a24 0%, #0c8a44 100%);
  border: 3px solid #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(241, 90, 36, 0.4), 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}
.bot-trigger-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 30px rgba(241, 90, 36, 0.55);
}
.bot-icon-close { display: none; }
.bot-floating-container.open .bot-icon-robot { display: none; }
.bot-floating-container.open .bot-icon-close { display: block; }
.bot-online-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border: 2.5px solid #ffffff;
  border-radius: 50%;
}
.bot-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(241, 90, 36, 0.6);
  animation: botPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}
@keyframes botPulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}
.bot-chat-window {
  display: none;
  flex-direction: column;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-bottom: 14px;
  animation: botChatSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}
.bot-floating-container.open .bot-chat-window { display: flex; }
@keyframes botChatSlideUp {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.bot-chat-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #f15a24;
}
.bot-header-left { display: flex; align-items: center; gap: 10px; }
.bot-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f15a24, #0c8a44);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.bot-header-title { font-size: 14px; font-weight: 800; color: #ffffff; line-height: 1.2; }
.bot-header-status { font-size: 11px; color: #4ade80; display: flex; align-items: center; gap: 5px; }
.bot-status-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; display: inline-block; }
.bot-header-btn-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.bot-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.bot-msg { max-width: 86%; padding: 11px 14px; border-radius: 14px; font-size: 13px; line-height: 1.45; }
.bot-msg-bot {
  background: #ffffff;
  color: #1e293b;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}
.bot-msg-user {
  background: #f15a24;
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.bot-chips-container { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.bot-chip {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}
.bot-chip:hover {
  background: #f1f5f9;
  border-color: #f15a24;
  color: #f15a24;
  transform: translateX(3px);
}
.bot-chip-icon { font-size: 14px; margin-right: 6px; }
.bot-direct-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 8px;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.35);
}
.bot-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 6px;
}
.bot-chat-footer { padding: 10px 12px; background: #ffffff; border-top: 1px solid #e2e8f0; }
.bot-input-form { display: flex; align-items: center; gap: 8px; }
.bot-input-text {
  flex: 1;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  padding: 9px 14px;
  border-radius: 20px;
  font-size: 13px;
  outline: none;
}
.bot-input-text:focus { border-color: #f15a24; background: #ffffff; }
.bot-btn-send {
  background: #f15a24;
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* SEARCH & FILTER TOOLBAR */
.catalog-toolbar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.catalog-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.catalog-search-wrap {
  flex: 1;
  position: relative;
}
.catalog-search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  background: #f8fafc;
}
.catalog-search-input:focus {
  border-color: #f15a24;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.15);
}
.catalog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}
.catalog-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-pill {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-pill:hover, .filter-pill.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}
.filter-pill.active {
  background: #f15a24;
  border-color: #f15a24;
}
.catalog-results-counter {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
}

/* INDUSTRIAL TRANSFER CALCULATOR */
.calc-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  border-left: 5px solid #f15a24;
}
.calc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.calc-icon {
  background: rgba(241, 90, 36, 0.2);
  color: #f15a24;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.calc-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}
.calc-sub {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 16px;
  align-items: center;
}
@media (max-width: 860px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}
.calc-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-label {
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-select {
  background: #0d131f;
  border: 1px solid #334155;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  outline: none;
}
.calc-select:focus {
  border-color: #f15a24;
}
.calc-result-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-result-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.calc-result-time {
  font-size: 20px;
  font-weight: 900;
  color: #38bdf8;
}
.calc-result-model {
  font-size: 13px;
  color: #4ade80;
  font-weight: 700;
}
.calc-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s ease;
}
.calc-btn-whatsapp:hover {
  background: #1eb956;
}
.header-logo-img {
  height: 52px;
  width: auto;
  max-width: 260px;
  display: block;
}
.calc-result-label {
  color: #cbd5e1;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}
.calc-result-right {
  text-align: right;
}
.btn-social-ig {
  background: #e1306c;
  border-color: #e1306c;
  color: #ffffff;
}
.btn-social-yt {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}
.btn-social-li {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
}
.btn-social-maps {
  background: #4285f4;
  border-color: #4285f4;
  color: #ffffff;
}
.bot-contact-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.btn-bot-maps { background: #4285f4; }
.btn-bot-ig { background: #e1306c; }
.btn-bot-yt { background: #ff0000; }
.btn-bot-li { background: #0a66c2; }

/* CARD ACTION TOOLBAR */
.card-action-row {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}
.btn-card-action {
  flex: 1;
  min-width: 75px;
  padding: 7px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-card-wa {
  background: #0c8a44;
  color: #ffffff;
  flex: 1.3;
}
.btn-card-wa:hover {
  background: #085521;
  transform: translateY(-1px);
}
.btn-card-comp {
  background: #f1f5f9;
  color: #334155;
  border-color: #cbd5e1;
}
.btn-card-comp:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
}
.btn-card-comp.active {
  background: #f15a24;
  color: #ffffff;
  border-color: #f15a24;
}
.btn-card-pdf {
  background: #ffffff;
  color: #0f172a;
  border-color: #e2e8f0;
}
.btn-card-pdf:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #f15a24;
}

/* FLOATING COMPARISON BAR */
.compare-floating-dock {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(15, 23, 42, 0.95);
  -webkit--webkit-

  -webkit-

  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.compare-floating-dock.active {
  transform: translateX(-50%) translateY(0);
}
.compare-dock-count {
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-dock-badge {
  background: #f15a24;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.78rem;
}
.btn-dock-compare {
  background: #f15a24;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}
.btn-dock-compare:hover {
  background: #d94a15;
}
.btn-dock-clear {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}
.btn-dock-clear:hover {
  color: #ffffff;
}

/* MODAL COMPARATOR OVERLAY */
.compare-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 12, 0.85);
  -webkit--webkit-

  -webkit-

  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.compare-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.compare-modal-box {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.compare-modal-header {
  padding: 18px 24px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.compare-modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.btn-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.compare-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.compare-table-wrap {
  overflow-x: auto;
}
.compare-grid-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.compare-grid-table th, .compare-grid-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.85rem;
  vertical-align: middle;
}
.compare-grid-table th {
  background: #f8fafc;
  color: #475569;
  font-weight: 700;
  width: 22%;
}
.compare-grid-table td {
  color: #1e293b;
  min-width: 200px;
}
.compare-prod-card-cell {
  text-align: center;
}
.compare-prod-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 8px auto;
  display: block;
  border-radius: 8px;
  background: #f8fafc;
  padding: 6px;
}
.compare-prod-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.compare-prod-model {
  display: inline-block;
  background: #f15a24;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

/* TECHNICAL DATASHEET MODAL (FICHA TÉCNICA) */
.techsheet-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 12, 0.88);
  -webkit--webkit-

  -webkit-

  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.techsheet-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.techsheet-modal-box {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 820px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.techsheet-toolbar {
  padding: 14px 20px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.techsheet-title {
  font-weight: 800;
  font-size: 1.05rem;
}
.techsheet-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.techsheet-print-btn {
  background: #f15a24;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.techsheet-print-btn:hover { background: #d94a15; }
.techsheet-paper {
  padding: 30px;
  overflow-y: auto;
  background: #ffffff;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #085521;
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.ts-logo-box h2 {
  color: #085521;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.ts-logo-box span {
  color: #f15a24;
  font-weight: 800;
  font-size: 0.8rem;
}
.ts-doc-tag {
  text-align: right;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}
.ts-model-badge {
  display: inline-block;
  background: #f15a24;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 3px 10px;
  border-radius: 4px;
}
.ts-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.ts-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
}
.ts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.ts-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #e2e8f0;
}
.ts-table td:first-child {
  font-weight: 700;
  color: #475569;
  width: 40%;
}
.ts-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #085521;
  border-left: 4px solid #f15a24;
  padding-left: 8px;
  margin: 18px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.ts-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #334155;
}
.ts-footer {
  margin-top: 24px;
  border-top: 1px solid #e2e8f0;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #94a3b8;
}

@media print {
  body * { visibility: hidden; }
  .techsheet-paper, .techsheet-paper * { visibility: visible; }
  .techsheet-paper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .techsheet-toolbar, .site-top-strip, .header, .catalog-toolbar, .calc-card, .footer-catalogo, #botBubble, #botContainer, .global-floating-wa {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   GLOBAL FLOATING WHATSAPP BUTTON (BOTTOM-LEFT)
   -------------------------------------------------------------------------- */
.global-floating-wa {
  position: fixed;
  bottom: 24px;
  left: 24px !important;
  right: auto !important;
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit--webkit-

  -webkit-

}

.global-floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.6);
  color: #ffffff !important;
}

.global-floating-wa:active {
  transform: translateY(-1px) scale(0.98);
}

.global-floating-wa .wa-icon-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-floating-wa .wa-icon-glow svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.global-floating-wa .wa-pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffffff;
  animation: waPulse 1.8s infinite ease-in-out;
}

@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

@media (max-width: 768px) {
  .global-floating-wa {
    bottom: 20px;
    left: 16px !important;
    right: auto !important;
    padding: 10px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
  .global-floating-wa span {
    display: none;
  }
}

/* ==========================================================================
   MODERN PRODUCT CARD ACTIONS & TECHNICAL SPECS MODAL
   ========================================================================== */

.product-card-modern {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.badge-inox {
  background: linear-gradient(135deg, #475569, #334155);
  color: #f8fafc;
  font-weight: 700;
}

.card-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #edf2f7;
}

.btn-card-details {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-card-details:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.btn-card-whatsapp {
  background: #22c55e;
  border: 1px solid #16a34a;
  color: #ffffff !important;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-card-whatsapp:hover {
  background: #16a34a;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.btn-card-zoom-float {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 5;
  -webkit--webkit-

  -webkit-

  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-card-zoom-float:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.35);
}

.btn-modal-viewer {
  background: #0f172a;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-viewer:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.3);
}

/* MODAL DE FICHA TÉCNICA */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 23, 0.75);
  -webkit--webkit-

  -webkit-

  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInModal 0.2s ease-out;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  background: #ffffff;
  border-radius: 14px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideUpModal 0.25s ease-out;
}

@keyframes slideUpModal {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #0f172a;
  color: #ffffff;
}

.modal-title-group h3 {
  margin: 4px 0 0 0;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 800;
}

.badge-modal {
  background: #f15a24;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close-btn:hover {
  background: #f15a24;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.modal-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
}

.modal-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  min-height: 280px;
}

.modal-image-col img {
  max-width: 100% !important;
  max-height: 280px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
}

.modal-ex-tag {
  margin-top: 10px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
}

.modal-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
}

.modal-section-subtitle {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  border-left: 3px solid #f15a24;
  padding-left: 8px;
}

.modal-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.btn-modal-secondary {
  background: #e2e8f0;
  border: none;
  color: #475569;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-modal-secondary:hover {
  background: #cbd5e1;
}

.btn-modal-whatsapp {
  background: #22c55e;
  border: none;
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  transition: all 0.2s ease;
}

.btn-modal-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

.modal-view-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  background: #e2e8f0;
  padding: 4px;
  border-radius: 8px;
}

.btn-tab-view {
  flex: 1;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #475569;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-tab-view.active {
  background: #ffffff;
  color: #f15a24;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-modal-pdf {
  background: #0f172a;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-modal-pdf:hover {
  background: #1e293b;
  color: #f15a24 !important;
}

/* --------------------------------------------------------------------------
   SEÇÃO ESPECIAL PNEUMÁTICA & PISTÃO / PLUNGER (INDEX STORE)
   -------------------------------------------------------------------------- */
.pneumatic-special-section {
  position: relative;
  overflow: hidden;
}

.pneumatic-special-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.store-tabs-wrapper {
  -ms-overflow-style: none;
}

.store-tabs-wrapper::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

@supports (scrollbar-width: none) {
  .store-tabs-wrapper {
    scrollbar-width: none;
  }
}

/* ==========================================================
   INTERACTIVE IMAGE LIGHTBOX / ZOOM / GALERIA DE FOTOS
   ========================================================== */
.image-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 23, 0.92);
  -webkit--webkit-

  -webkit-

  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-box {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  animation: lightboxPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.lightbox-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.lightbox-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lightbox-badge {
  background: var(--primary-orange);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.lightbox-caption {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.lightbox-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.lightbox-image-stage {
  flex: 1;
  min-height: 380px;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at center, #1e293b 0%, #0a0e17 100%);
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.lightbox-main-img {
  max-width: 100%;
  max-height: 52vh;
  object-fit: contain;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
  transform-origin: center center;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  -webkit--webkit-

  -webkit-

}

.lightbox-nav-btn:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-prev { left: 16px; }
.lightbox-nav-next { right: 16px; }

.lightbox-toolbar {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lightbox-controls-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox-tool-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-tool-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.lightbox-action-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lightbox-whatsapp-btn {
  background: #25d366;
  color: #ffffff !important;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.lightbox-whatsapp-btn:hover {
  background: #1eb956;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .lightbox-content-box { max-height: 96vh; }
  .lightbox-image-stage { min-height: 280px; max-height: 45vh; padding: 12px; }
  .lightbox-toolbar { flex-direction: column; align-items: stretch; }
  .lightbox-controls-group, .lightbox-action-group { justify-content: center; width: 100%; }
  .lightbox-whatsapp-btn { width: 100%; justify-content: center; }
}

/* ==========================================================
   TOAST NOTIFICATION MODERNO MASTER PUMP
   ========================================================== */
.mp-toast-notification {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(241, 90, 36, 0.4);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999999;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.mp-toast-notification.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mp-toast-notification.success {
  border-left: 4px solid #22c55e;
}

.mp-toast-notification.warning {
  border-left: 4px solid #f15a24;
}

/* NOVO CONTATO FORM */
.why-and-quote-section {
  padding: 80px 0;
  background-color: #0a0e17;
}
.split-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .split-quote-grid { grid-template-columns: 1fr; }
}
.why-content {
  color: #fff;
}
.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.quote-box-wrap {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.quote-card-inner {
  display: flex;
  flex-direction: column;
}
.quote-form-side {
  padding: 40px;
}
.quote-visual-side {
  display: none;
}
.quote-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.quote-form-subtitle {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 25px;
}
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.form-group {
  flex: 1;
  margin-bottom: 15px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 15px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}
.btn-submit-orange {
  background: var(--primary-orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}
.btn-submit-orange:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   CONTROLE ESTRITO DE PROPORÇÃO DE IMAGENS E CARDS
   ========================================================================== */

/* 1. Vitrine da Página Inicial (Product Line) */
.product-line-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.product-line-card {
  background: var(--dark-card, #1e293b);
  border: 1px solid var(--border-dark, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-lg, 12px);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-line-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(241, 90, 36, 0.3);
}

.product-line-img-box {
  width: 100%;
  height: 220px;
  max-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.6);
  border-radius: var(--radius-md, 8px);
  padding: 15px;
  margin-bottom: 18px;
  overflow: hidden;
}

.product-line-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* 2. Cards do Catálogo Geral (Modern Product Card) */
.card.product-card-modern,
.product-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  max-height: 230px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  padding: 16px;
  overflow: hidden;
}

.card-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card.product-card-modern:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* 3. Banners de Séries */
.series-banner-card {
  width: 100%;
  max-height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.series-banner-card img {
  width: 100%;
  max-height: 160px;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* 4. Esquema de Operação & Imagens Institucionais */
.operation-svg-wrap,
.operation-grid-img {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.operation-img,
.operation-svg-wrap img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* 5. Acessórios e Itens Técnicos */
.accessory-img-box {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 12px;
}

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

/* 6. Grid Responsivo de Aplicações Industriais (3x2) */
@media (max-width: 992px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .applications-grid {
    grid-template-columns: 1fr !important;
  }
  .specs-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

.trust-bar-section {
  scroll-margin-top: 90px;
}
