/* =============================================
   SUZANIL PRODUTOS QUIMICOS
   ============================================= */

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

:root {
  --navy: #09162b;
  --navy-deep: #050f1e;
  --navy-mid: #112444;
  --navy-soft: #17335d;
  --blue: #1e6fff;
  --blue-light: #5ca2ff;
  --cyan: #74d7ff;
  --teal: #34c4c8;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #edf2f8;
  --gray-200: #dbe5f1;
  --gray-400: #90a3bb;
  --gray-600: #5d7088;
  --text-dark: #0b1930;
  --text-mid: #39506d;
  --shadow-sm: 0 10px 24px rgba(11, 25, 48, 0.08);
  --shadow-md: 0 20px 50px rgba(11, 25, 48, 0.14);
  --shadow-lg: 0 30px 80px rgba(4, 17, 34, 0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #f3f7fb 0%, #ffffff 18%, #f4f8fc 100%);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.navbar {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 1000;
  pointer-events: none;
  transition: inset var(--transition);
}

.nav-container {
  width: min(1200px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 32px;
  pointer-events: auto;
  border-radius: 28px;
  border: 1px solid rgba(8, 19, 38, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 255, 0.92)),
    linear-gradient(90deg, rgba(52, 196, 200, 0.05), rgba(30, 111, 255, 0.04));
  box-shadow: 0 20px 48px rgba(4, 17, 34, 0.14);
  backdrop-filter: blur(16px);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition), width var(--transition), border-radius var(--transition), min-height var(--transition);
}

.navbar.scrolled {
  inset: 0 0 auto;
}

.navbar.scrolled .nav-container {
  width: 100%;
  min-height: 78px;
  transform: none;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(5, 15, 30, 0.96), rgba(12, 28, 54, 0.9)),
    linear-gradient(90deg, rgba(52, 196, 200, 0.12), rgba(30, 111, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 60px rgba(4, 17, 34, 0.34);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.logo-icon img,
.logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo-text {
  color: var(--navy);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.navbar.scrolled .logo-text {
  color: var(--white);
}

.footer .logo-text,
.footer-logo .logo-text {
  color: var(--white);
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(8, 19, 38, 0.04);
  border: 1px solid rgba(8, 19, 38, 0.05);
}

.nav-link {
  color: rgba(9, 22, 43, 0.72);
  padding: 10px 15px;
  border-radius: 999px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled .nav-links {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.82);
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg, rgba(52, 196, 200, 0.14), rgba(30, 111, 255, 0.14));
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(8, 19, 38, 0.06);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-cta,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, #1b6dff, #2fb7d0);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(30, 111, 255, 0.26);
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(30, 111, 255, 0.34);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.15);
}

.hamburger {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh + 96px);
  overflow: hidden;
  margin-top: -118px;
  padding-top: 118px;
  padding-bottom: 0;
  background: transparent;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(9, 22, 43, 0) 0%, rgba(9, 22, 43, 0.9) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-slider,
.hero-slide {
  min-height: calc(100svh + 96px);
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 26, 0.94) 0%, rgba(8, 19, 38, 0.8) 44%, rgba(8, 19, 38, 0.34) 100%),
    linear-gradient(180deg, rgba(6, 17, 34, 0.22) 0%, rgba(6, 17, 34, 0.54) 100%),
    radial-gradient(circle at right center, rgba(52, 196, 200, 0.18), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(30, 111, 255, 0.24), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  min-height: calc(100svh + 96px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 168px;
  padding-bottom: 228px;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 70px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 196, 200, 0.16), transparent 68%);
  filter: blur(10px);
  z-index: -1;
}

.hero-badge,
.section-badge,
.article-tag,
.portfolio-label,
.location-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.hero-badge {
  margin-bottom: 18px;
  color: #c9f7ff;
  border: 1px solid rgba(116, 215, 255, 0.26);
  background: rgba(10, 32, 62, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-title {
  max-width: 840px;
  color: var(--white);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-highlight {
  color: #8ce7ef;
}

.hero-subtitle {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  margin-bottom: 38px;
  text-wrap: pretty;
}

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

.slider-btn,
.dot,
.back-to-top,
.footer-tab {
  border: 0;
  cursor: pointer;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(5, 18, 38, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: background var(--transition), transform var(--transition);
}

.slider-btn:hover {
  background: rgba(30, 111, 255, 0.8);
  transform: translateY(-50%) scale(1.04);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: width var(--transition), background var(--transition);
}

.dot.active {
  width: 30px;
  background: var(--cyan);
}

.scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 122px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
  animation: scrollAnim 1.6s ease infinite;
}

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

.stats-bar {
  position: relative;
  z-index: 6;
  margin-top: -98px;
  padding: 0 0 18px;
  background: transparent;
}

.stats-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(5, 15, 30, 0.94), rgba(12, 28, 54, 0.92)),
    linear-gradient(90deg, rgba(52, 196, 200, 0.08), rgba(30, 111, 255, 0.08));
  box-shadow: 0 28px 60px rgba(4, 17, 34, 0.22);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.stat-item {
  flex: 1;
  min-width: 0;
  padding: 30px 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.stat-number,
.stat-plus {
  color: #b7f6ff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.76rem;
}

section {
  padding: 108px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header.left {
  text-align: left;
  margin-bottom: 42px;
}

.section-badge {
  color: var(--blue);
  background: rgba(30, 111, 255, 0.08);
}

.section-badge.light {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-title.white {
  color: var(--white);
}

.text-blue {
  color: var(--blue);
}

.text-blue-light {
  color: var(--cyan);
}

.section-subtitle,
.section-subtitle-dark {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.68);
}

.section-subtitle-dark {
  color: var(--gray-600);
}

.sobre {
  margin-top: -42px;
  padding-top: 84px;
  background:
    radial-gradient(circle at right top, rgba(30, 111, 255, 0.12), transparent 28%),
    radial-gradient(circle at left top, rgba(52, 196, 200, 0.08), transparent 22%),
    linear-gradient(180deg, #eef4f8 0%, #f8fbfd 20%, #ffffff 100%);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.sobre-kicker-row {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.sobre-header {
  margin-bottom: 28px;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.sobre-copy {
  display: grid;
  gap: 16px;
}

.sobre-more {
  display: none;
}

.sobre-content.expanded .sobre-more {
  display: block;
}

.sobre-more-toggle {
  margin-top: auto;
  align-self: flex-start;
}

.sobre-text {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 0;
}

.sobre-img-wrapper {
  position: relative;
  height: 100%;
}

.sobre-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(4, 17, 34, 0.22);
}

.sobre-badge-float {
  position: absolute;
  left: -24px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(9, 22, 43, 0.92);
  box-shadow: var(--shadow-md);
}

.sobre-badge-float i {
  color: var(--cyan);
  font-size: 1.6rem;
}

.sobre-badge-float span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.history-cta {
  margin-top: 36px;
  text-align: center;
}

.fabricacao {
  background: var(--gray-50);
}

.fabricacao.produtos {
  background: linear-gradient(180deg, var(--navy) 0%, #10264b 100%);
}

.fabricacao-grid,
.conteudo-grid {
  display: grid;
  gap: 24px;
}

.fabricacao-carousel {
  display: grid;
  gap: 18px;
}

.fabricacao-carousel-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gray-600);
  text-align: center;
}

.fabricacao-carousel-helper {
  display: none;
  margin: -4px auto 4px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.fabricacao.produtos .fabricacao-carousel-copy {
  color: rgba(255, 255, 255, 0.78);
}

.fabricacao-carousel-stage {
  position: relative;
  width: 100%;
  max-width: 1136px;
  margin: 0 auto;
  padding: 0 28px;
  justify-self: stretch;
  overflow: hidden;
}

.fabricacao-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 22, 43, 0.82);
  box-shadow: 0 18px 36px rgba(4, 17, 34, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.fabricacao-control:hover {
  transform: translateY(-50%) scale(1.04);
  background: linear-gradient(135deg, var(--navy-soft), var(--blue));
  box-shadow: var(--shadow-md);
}

.fabricacao-control-prev {
  left: 0;
  transform: translateY(-50%);
}

.fabricacao-control-next {
  right: 0;
  transform: translateY(-50%);
}

.fabricacao-track {
  display: flex;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 111, 255, 0.35) transparent;
  padding-bottom: 10px;
  padding-inline: 0;
}

.fabricacao-track::-webkit-scrollbar {
  height: 10px;
}

.fabricacao-track::-webkit-scrollbar-thumb {
  background: rgba(30, 111, 255, 0.35);
  border-radius: 999px;
}

.fabricacao-card {
  scroll-snap-align: start;
  flex: 0 0 344px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border: 1px solid rgba(30, 111, 255, 0.09);
  box-shadow: var(--shadow-sm);
  min-height: 0;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.fabricacao-card-wide {
  min-width: 0;
}

.fabricacao-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  color: var(--navy);
  background: linear-gradient(180deg, #eef4ff 0%, #dfeaff 100%);
  border: 1px solid rgba(17, 40, 76, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 1.9rem;
  line-height: 1;
}

.fabricacao-icon-acidos {
  color: #1e5be0;
}

.fabricacao-icon-bases {
  color: #2154b0;
}

.fabricacao-icon-oxidantes {
  color: #0f5f88;
}

.fabricacao-icon-sais {
  color: #244f93;
}

.fabricacao-icon-agua {
  color: #0f7399;
}

.fabricacao-icon-outros {
  color: #31548f;
}

.fabricacao-card h3,
.portfolio-card h3,
.segmento-card h3,
.diferencial-card h3,
.conteudo-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.fabricacao-card p,
.portfolio-card p,
.segmento-card p,
.diferencial-card p,
.conteudo-card p {
  color: var(--gray-600);
}

.fabricacao-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  overflow: visible;
  flex: 1;
  min-height: 0;
}

.fabricacao-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-mid);
  line-height: 1.45;
  font-size: 1.05rem;
}

.fabricacao-list li.has-product-modal,
.fabricacao-list li.has-product-link {
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}

.fabricacao-list li.has-product-modal:hover,
.fabricacao-list li.has-product-link:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.product-item-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-item-link:focus-visible {
  outline: 2px solid rgba(30, 111, 255, 0.46);
  outline-offset: 4px;
  border-radius: 14px;
}

.fabricacao-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.fabricacao-own {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(30, 111, 255, 0.1);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.fabricacao-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, #10284d 0%, #163766 52%, #1d4d87 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 58px rgba(8, 24, 49, 0.24);
}

.fabricacao-card:hover h3,
.fabricacao-card:hover li,
.fabricacao-card:hover .fabricacao-own {
  color: var(--white);
}

.fabricacao-card:hover .fabricacao-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.fabricacao-card:hover .fabricacao-list li::before {
  background: #d9fbff;
}

.fabricacao-card:hover .fabricacao-own {
  background: rgba(255, 255, 255, 0.14);
}

.fabricacao-more-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--blue);
  font-weight: 800;
  transition: gap var(--transition), color var(--transition);
}

.fabricacao-more-link:hover {
  gap: 12px;
}

.fabricacao-card:hover .fabricacao-more-link {
  color: var(--white);
}

.fabricacao-card .fabricacao-list {
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-gutter: stable;
}

.fabricacao-card .fabricacao-list::-webkit-scrollbar {
  width: 8px;
}

.fabricacao-card .fabricacao-list::-webkit-scrollbar-thumb {
  background: rgba(30, 111, 255, 0.24);
  border-radius: 999px;
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 28, 0.72);
  backdrop-filter: blur(12px);
}

.product-modal-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(90vh, 960px);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid rgba(30, 111, 255, 0.12);
  box-shadow: 0 34px 80px rgba(2, 12, 24, 0.34);
}

.product-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(5, 15, 30, 0.82);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.product-modal-close:hover {
  transform: scale(1.04);
  background: var(--blue);
}

.product-modal-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  background: linear-gradient(135deg, rgba(6, 18, 35, 0.97), rgba(13, 33, 64, 0.94));
}

.product-modal-visual {
  position: relative;
  min-height: 280px;
}

.product-modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.product-modal-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 14, 28, 0.12) 0%, rgba(5, 14, 28, 0.58) 100%);
}

.product-modal-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-modal-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 48px;
  color: var(--white);
}

.product-modal-kicker {
  margin-bottom: 10px;
  color: rgba(183, 246, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-modal-intro h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.product-modal-intro p {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.product-modal-fds {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  box-shadow: 0 18px 34px rgba(30, 111, 255, 0.22);
}

.product-modal-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  box-shadow: 0 18px 34px rgba(30, 111, 255, 0.22);
  text-decoration: none;
}

.product-modal-fds i {
  font-size: 0.95rem;
}

.product-modal-quote i {
  font-size: 0.95rem;
}

.product-modal-body {
  max-height: calc(90vh - 320px);
  overflow-y: auto;
  padding: 34px 40px 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-modal-section {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(30, 111, 255, 0.08);
  box-shadow: 0 14px 32px rgba(12, 31, 61, 0.06);
}

.product-modal-section:first-child,
.product-modal-section:nth-child(2) {
  grid-column: span 2;
}

.product-modal-section h4 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1rem;
}

.product-modal-section p {
  color: var(--gray-600);
  line-height: 1.7;
}

.product-modal-list {
  display: grid;
  gap: 10px;
}

.product-modal-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-mid);
  line-height: 1.55;
}

.product-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.tag-list,
.portfolio-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.tag-list li,
.portfolio-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-mid);
}

.tag-list li::before,
.portfolio-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.produtos {
  background: linear-gradient(180deg, var(--navy) 0%, #10264b 100%);
}

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

.portfolio-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.portfolio-card.large {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(30, 111, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.portfolio-card h3,
.portfolio-card p,
.portfolio-card li,
.portfolio-label {
  color: var(--white);
}

.portfolio-card p {
  opacity: 0.8;
}

.portfolio-list.compact {
  gap: 8px;
}

.portfolio-list.compact li {
  color: rgba(255, 255, 255, 0.82);
}

.portfolio-label {
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.segmentos {
  background: #ffffff;
}

.segmentos-showcase {
  position: relative;
  height: 620px;
  min-height: 620px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fd 100%);
  border: 1px solid rgba(30, 111, 255, 0.08);
  box-shadow: 0 24px 60px rgba(12, 31, 61, 0.08);
  overflow: hidden;
}

.segmentos-slide {
  display: none;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: stretch;
  min-height: 100%;
  height: 100%;
}

.segmentos-slide.active {
  display: grid;
}

.segmentos-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 46px 48px;
}

.segmentos-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(30, 111, 255, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.segmentos-kicker i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.16), rgba(116, 215, 255, 0.22));
  font-size: 1rem;
}

.segmentos-copy h3 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.segmentos-copy p {
  max-width: 58ch;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.62;
}

.segmentos-points {
  display: grid;
  gap: 10px;
}

.segmentos-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.segmentos-link-primary,
.segmentos-link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.segmentos-link-primary {
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #1b6dff, #2fb7d0);
  box-shadow: 0 18px 36px rgba(30, 111, 255, 0.18);
}

.segmentos-link-secondary {
  color: var(--blue);
}

.segmentos-link-secondary:hover {
  gap: 12px;
}

.segmentos-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.45;
}

.segmentos-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.segmentos-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  height: 100%;
  padding: 46px 46px 32px 10px;
}

.segmentos-media img {
  width: min(100%, 388px);
  max-height: 470px;
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.segmentos-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.segmentos-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 41, 76, 0.18);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), width var(--transition);
}

.segmentos-dot.active {
  width: 34px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.segmentos-dot:hover {
  transform: scale(1.05);
}

.diferenciais {
  background: linear-gradient(180deg, var(--navy) 0%, #10264b 100%);
}

.diferenciais .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #9dc4ff;
}

.diferenciais .section-title,
.diferenciais .section-title .text-blue {
  color: var(--white);
}

.diferenciais .section-subtitle-dark {
  color: rgba(255, 255, 255, 0.74);
}

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

.diferencial-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(4, 17, 34, 0.16);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.diferencial-card h3,
.diferencial-card p {
  color: var(--white);
}

.diferencial-card p {
  opacity: 0.82;
}

.diferencial-card:hover,
.conteudo-card:hover,
.fabricacao-card:hover,
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.diferencial-card:hover {
  border-color: rgba(116, 215, 255, 0.34);
  box-shadow: 0 28px 60px rgba(3, 13, 28, 0.38), 0 0 42px rgba(45, 123, 223, 0.3), 0 0 0 1px rgba(116, 215, 255, 0.2);
}

.dif-icon-wrap {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, #1e4ea8, #2d7bdf);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 1.7rem;
}

.conteudo {
  background: #ffffff;
}

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

.conteudo-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid rgba(30, 111, 255, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.conteudo-thumb-link {
  display: block;
  margin: -28px -28px 18px;
}

.conteudo-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #dcecff, #edf5ff);
}

.conteudo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.conteudo-date {
  color: rgba(10, 23, 48, 0.56);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.article-tag {
  color: var(--blue);
  background: rgba(30, 111, 255, 0.08);
}

.conteudo-card h3 {
  margin-bottom: 14px;
}

.conteudo-card p {
  flex: 1;
}

.text-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
}

.text-link:hover {
  gap: 12px;
}

.conteudo-card-loading .article-tag,
.conteudo-card-loading .conteudo-date {
  position: relative;
  overflow: hidden;
}

.skeleton-block,
.skeleton-text {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(214, 228, 247, 0.55) 25%, rgba(240, 246, 255, 0.96) 50%, rgba(214, 228, 247, 0.55) 75%);
  background-size: 240% 100%;
  animation: skeletonShift 1.6s ease-in-out infinite;
}

.skeleton-block {
  border-radius: 22px 22px 0 0;
}

.conteudo-card-loading .conteudo-date {
  width: 92px;
  height: 12px;
  border-radius: 999px;
}

.skeleton-title {
  height: 26px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.skeleton-paragraph {
  height: 72px;
  border-radius: 18px;
}

@keyframes skeletonShift {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.footer {
  background: linear-gradient(180deg, var(--navy) 0%, #08111f 100%);
}

.footer-top {
  padding: 76px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.footer-tagline {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.62);
}

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

.social-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), background var(--transition);
}

.social-btn:hover {
  background: rgba(30, 111, 255, 0.8);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

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

.footer-links a,
.footer-contact,
.footer-contact a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--cyan);
}

.footer-contact {
  display: grid;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact li i {
  color: var(--cyan);
  margin-top: 4px;
}

.footer-switch-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-switch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-tab {
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-tab.active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.85), rgba(92, 162, 255, 0.9));
}

.location-stage {
  position: relative;
  display: grid;
}

.location-panel {
  grid-area: 1 / 1;
  display: grid;
  gap: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.location-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.location-kicker {
  margin-bottom: 10px;
  color: #9fd0ff;
  background: rgba(255, 255, 255, 0.08);
}

.map-wrapper {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(116, 215, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.map-wrapper iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.82rem;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 108px;
  z-index: 990;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 16px 28px rgba(30, 111, 255, 0.3);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 995;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #18b85f, #0b8d46);
  box-shadow: 0 18px 36px rgba(10, 118, 58, 0.34);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 44px rgba(10, 118, 58, 0.4);
}

.whatsapp-float i {
  position: relative;
  z-index: 2;
  font-size: 1.7rem;
}

.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(24, 184, 95, 0.34);
  animation: whatsappPulse 2.2s ease-out infinite;
}

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

@keyframes whatsappPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.84);
  }
  70% {
    opacity: 0;
    transform: scale(1.22);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] {
  transform: translateY(36px);
}

[data-animate="fade-left"] {
  transform: translateX(-36px);
}

[data-animate="fade-right"] {
  transform: translateX(36px);
}

[data-animate].animated {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .sobre-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fabricacao-grid,
  .conteudo-grid,
  .diferenciais-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fabricacao-track {
    gap: 18px;
  }

  .fabricacao-card {
    flex-basis: 324px;
  }

  .segmentos-slide {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    min-height: 560px;
    height: 560px;
  }

  .segmentos-copy {
    padding: 40px 36px;
  }

  .segmentos-media {
    padding: 40px 36px 28px 10px;
  }

  .segmentos-media img {
    width: min(100%, 348px);
    max-height: 430px;
  }

  .portfolio-card.large,
  .footer-map-col {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .navbar:not(.scrolled) .nav-container {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 255, 0.96)),
      linear-gradient(90deg, rgba(52, 196, 200, 0.05), rgba(30, 111, 255, 0.04));
    border-color: rgba(8, 19, 38, 0.1);
    box-shadow: 0 20px 48px rgba(4, 17, 34, 0.14);
  }

  .navbar:not(.scrolled) .logo-text {
    color: var(--navy);
  }

  .navbar:not(.scrolled) .hamburger span {
    background: var(--navy);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    position: fixed;
    top: 112px;
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: linear-gradient(135deg, #071528, #0d2342);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 24px 54px rgba(4, 17, 34, 0.34);
    z-index: 1200;
  }

  .nav-links.open li {
    width: 100%;
  }

  .nav-links.open .nav-mobile-cta {
    display: block;
    margin-top: 6px;
  }

  .nav-links.open .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    box-shadow: none;
  }

  .nav-links.open .nav-link:hover,
  .nav-links.open .nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, rgba(30, 111, 255, 0.34), rgba(52, 196, 200, 0.24));
    border-color: rgba(116, 215, 255, 0.18);
  }

  .nav-links.open .nav-link-cta {
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, #1b6dff, #2fb7d0);
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(30, 111, 255, 0.22);
  }

  .navbar.scrolled .nav-links.open {
    top: 78px;
  }

  .hero-title {
    max-width: 560px;
  }

  .sobre-grid,
  .fabricacao-grid,
  .conteudo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fabricacao-carousel-stage {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .fabricacao-carousel-helper {
    display: block;
  }

  .fabricacao-control {
    display: none;
  }

  .fabricacao-track {
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-inline: 0;
    padding-bottom: 14px;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
  }

  .fabricacao-track::-webkit-scrollbar {
    display: none;
  }

  .fabricacao-card {
    flex: 0 0 min(88%, 360px);
    aspect-ratio: auto;
    min-height: 430px;
    scroll-snap-align: start;
    padding: 24px;
  }

  .fabricacao-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    font-size: 1.65rem;
  }

  .fabricacao-card h3 {
    font-size: 1.12rem;
  }

  .fabricacao-list {
    gap: 10px;
    margin-top: 12px;
  }

  .fabricacao-card .fabricacao-list {
    max-height: 230px;
    padding-right: 6px;
  }

  .fabricacao-list li {
    padding-left: 16px;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .fabricacao-own {
    margin-left: 6px;
    font-size: 0.64rem;
  }

  .portfolio-grid,
  .diferenciais-grid,
  .mini-cards {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card.large,
  .footer-map-col {
    grid-column: span 1;
  }

  .sobre-img {
    height: 420px;
  }

  .sobre-badge-float {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .segmentos-showcase {
    height: auto;
    min-height: auto;
  }

  .segmentos-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }

  .segmentos-copy {
    padding: 36px 28px 18px;
  }

  .segmentos-copy h3 {
    max-width: none;
  }

  .segmentos-media {
    padding: 8px 28px 34px;
  }

  .segmentos-media img {
    width: min(100%, 440px);
    aspect-ratio: 4 / 4.8;
  }

  .product-modal {
    padding: 16px;
  }

  .product-modal-dialog {
    max-height: 92vh;
  }

  .product-modal-hero {
    grid-template-columns: 1fr;
  }

  .product-modal-visual {
    min-height: 220px;
  }

  .product-modal-intro {
    padding: 28px;
  }

  .product-modal-body {
    max-height: calc(92vh - 420px);
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .product-modal-section:first-child,
  .product-modal-section:nth-child(2) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .fabricacao,
  .fabricacao.produtos,
  .fabricacao .container,
  .fabricacao-carousel,
  .fabricacao-carousel-stage {
    overflow-x: hidden;
  }

  .container,
  .nav-container,
  .hero-content,
  .stats-container {
    width: min(100% - 32px, 1200px);
  }

  section {
    padding: 78px 0;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 760px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-actions,
  .footer-switch-header,
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-container {
    flex-direction: column;
    border-radius: 28px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .portfolio-grid,
  .diferenciais-grid,
  .conteudo-grid,
  .mini-cards {
    grid-template-columns: 1fr;
  }

  .sobre-img {
    height: 320px;
  }

  .feature-item,
  .fabricacao-card,
  .portfolio-card,
  .diferencial-card,
  .conteudo-card,
  .footer-switch-card {
    padding: 22px;
  }

  .fabricacao-carousel-stage {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .fabricacao-track {
    gap: 14px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .fabricacao-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 418px;
    padding: 22px;
    border-radius: 24px;
  }

  .fabricacao-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.5rem;
  }

  .fabricacao-card h3 {
    font-size: 1.04rem;
    margin-bottom: 10px;
  }

  .fabricacao-card .fabricacao-list {
    max-height: 216px;
  }

  .fabricacao-list li {
    font-size: 0.94rem;
  }

  .fabricacao-carousel-helper {
    font-size: 0.82rem;
    max-width: 320px;
  }

  .segmentos-showcase {
    border-radius: 28px;
  }

  .segmentos-copy {
    padding: 30px 22px 14px;
  }

  .segmentos-kicker {
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .segmentos-kicker i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .segmentos-copy h3 {
    font-size: 2rem;
  }

  .segmentos-copy p,
  .segmentos-points li {
    font-size: 0.98rem;
  }

  .segmentos-media {
    padding: 6px 22px 28px;
  }

  .segmentos-media img {
    width: min(100%, 360px);
    aspect-ratio: 4 / 4.8;
    border-radius: 24px;
  }

  .product-modal-intro h3 {
    font-size: 2rem;
  }

  .product-modal-intro,
  .product-modal-body {
    padding-inline: 20px;
  }

  .product-modal-section {
    padding: 20px;
    border-radius: 20px;
  }

  .slider-btn,
  .scroll-indicator {
    display: none;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .back-to-top {
    right: 20px;
    bottom: 92px;
  }

  .map-wrapper iframe {
    height: 220px;
  }
}

@media (max-width: 900px) {
  .fabricacao,
  .fabricacao.produtos,
  .fabricacao .container,
  .fabricacao-carousel,
  .fabricacao-carousel-stage {
    overflow-x: hidden;
  }

  .navbar {
    inset: 12px 0 auto;
  }

  .nav-container {
    width: min(100% - 28px, 1200px);
    min-height: 70px;
    padding: 10px 16px;
    gap: 18px;
    border-radius: 22px;
  }

  .navbar.scrolled .nav-container {
    min-height: 68px;
  }

  .logo-text {
    font-size: 1.02rem;
    letter-spacing: 2px;
  }

  .nav-links.open {
    top: 92px;
    left: 14px;
    right: 14px;
    max-height: calc(100svh - 112px);
    overflow-y: auto;
  }

  .navbar.scrolled .nav-links.open {
    top: 68px;
  }

  .hero,
  .hero-slider,
  .hero-slide,
  .hero-content {
    min-height: 108svh;
  }

  .hero {
    margin-top: -94px;
    padding-top: 94px;
  }

  .hero-content {
    width: min(100% - 28px, 1200px);
    justify-content: flex-start;
    padding-top: 152px;
    padding-bottom: 176px;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    max-width: 12ch;
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 8vw, 3.4rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    min-height: 52px;
  }

  .stats-bar {
    margin-top: -54px;
    padding-bottom: 0;
  }

  .stats-container {
    width: min(100% - 28px, 1200px);
  }

  .stat-item {
    padding: 22px 16px;
  }

  .stat-number,
  .stat-plus {
    font-size: 2rem;
  }

  section {
    padding: 88px 0;
  }

  .section-header {
    margin-bottom: 28px;
    text-align: center;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.04;
  }

  .section-subtitle-dark,
  .fabricacao-carousel-copy {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .sobre-grid {
    gap: 28px;
  }

  .sobre-header {
    margin-bottom: 20px;
    text-align: center;
  }

  .sobre-kicker-row {
    justify-content: center;
  }

  .sobre-more-toggle,
  .history-cta {
    align-self: center;
    text-align: center;
  }

  .sobre-img {
    min-height: 360px;
  }

  .sobre-badge-float {
    gap: 10px;
    padding: 14px 16px;
  }

  .conteudo-thumb-link {
    margin: -22px -22px 16px;
  }

  .conteudo-thumb {
    aspect-ratio: 16 / 9;
  }

  .conteudo-meta {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .conteudo-card {
    text-align: center;
  }

  .conteudo-card .text-link {
    align-self: center;
  }

  .fabricacao-card,
  .diferencial-card,
  .portfolio-card {
    text-align: center;
    align-items: center;
  }

  .fabricacao-icon,
  .dif-icon-wrap {
    align-self: center;
  }

  .dif-icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .fabricacao-card .fabricacao-list {
    width: 100%;
  }

  .fabricacao-list li {
    text-align: center;
    padding-left: 0;
  }

  .fabricacao-list li::before {
    display: none;
  }

  .diferencial-card,
  .conteudo-card,
  .portfolio-card,
  .footer-switch-card {
    border-radius: 24px;
  }

  .segmentos-showcase {
    border-radius: 26px;
  }

  .segmentos-copy {
    padding: 28px 22px 14px;
    align-items: center;
    text-align: center;
  }

  .segmentos-copy h3 {
    max-width: none;
    font-size: clamp(1.55rem, 6vw, 2.2rem);
    line-height: 1.08;
  }

  .segmentos-copy p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .segmentos-points {
    gap: 12px;
    width: 100%;
  }

  .segmentos-points li {
    font-size: 0.93rem;
    line-height: 1.5;
    text-align: left;
  }

  .segmentos-media {
    padding: 2px 22px 24px;
    gap: 12px;
  }

  .segmentos-media img {
    width: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: 4 / 4.9;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-col,
  .footer-brand {
    text-align: center;
  }

  .footer-brand .nav-logo,
  .social-links {
    justify-content: center;
  }

  .footer-links a,
  .footer-contact li {
    justify-content: center;
  }

  .footer-switch-header {
    align-items: stretch;
  }

  .footer-tabs {
    width: 100%;
  }

  .footer-tab {
    flex: 1;
    text-align: center;
  }

  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }

  .product-modal {
    padding: 12px;
  }

  .product-modal-dialog {
    max-height: 94svh;
    border-radius: 24px;
  }

  .product-modal-close {
    top: 12px;
    right: 12px;
  }

  .product-modal-visual {
    min-height: 190px;
  }

  .product-modal-intro {
    padding: 22px;
  }

  .product-modal-intro h3 {
    font-size: 1.5rem;
    line-height: 1.08;
  }

  .product-modal-body {
    max-height: calc(94svh - 360px);
    padding: 18px;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .container,
  .nav-container,
  .hero-content,
  .stats-container {
    width: min(100% - 22px, 1200px);
  }

  .nav-container {
    min-height: 64px;
    padding: 9px 12px;
    border-radius: 20px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .logo-text {
    font-size: 0.92rem;
    letter-spacing: 1.6px;
  }

  .nav-cta {
    padding: 10px 13px;
    min-height: 42px;
    font-size: 0.78rem;
  }

  .nav-links.open {
    left: 11px;
    right: 11px;
    top: 84px;
    padding: 12px;
    border-radius: 18px;
  }

  .hero-content {
    min-height: 112svh;
    justify-content: flex-start;
    padding-top: 148px;
    padding-bottom: 170px;
  }

  .hero-badge,
  .section-badge,
  .article-tag,
  .portfolio-label,
  .location-kicker {
    padding: 6px 12px;
    font-size: 0.68rem;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: clamp(1.95rem, 8.5vw, 2.8rem);
    max-width: 12ch;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .nav-cta,
  .btn-primary,
  .btn-outline {
    padding: 13px 18px;
    min-height: 50px;
  }

  .stats-bar {
    margin-top: -42px;
  }

  .stats-container {
    border-radius: 24px;
  }

  .stat-item {
    padding: 18px 14px;
    gap: 6px;
  }

  .stat-number,
  .stat-plus {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.8px;
  }

  section {
    padding: 72px 0;
  }

  .section-title {
    font-size: clamp(1.72rem, 8vw, 2.4rem);
  }

  .sobre-img {
    min-height: 300px;
    border-radius: 24px;
  }

  .sobre-badge-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 18px;
  }

  .fabricacao-carousel-helper {
    max-width: 280px;
    font-size: 0.78rem;
  }

  .fabricacao-track {
    gap: 12px;
  }

  .fabricacao-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 430px;
    padding: 18px;
    border-radius: 22px;
  }

  .fabricacao-card .fabricacao-list {
    max-height: 250px;
    overflow-y: scroll;
    padding-right: 10px;
  }

  .conteudo-card,
  .diferencial-card,
  .portfolio-card,
  .footer-switch-card {
    padding: 18px;
    border-radius: 22px;
  }

  .conteudo-thumb-link {
    margin: -18px -18px 14px;
  }

  .conteudo-card h3,
  .diferencial-card h3,
  .portfolio-card h3 {
    font-size: 1.08rem;
  }

  .segmentos-showcase {
    border-radius: 22px;
  }

  .segmentos-copy {
    padding: 22px 18px 12px;
  }

  .segmentos-kicker {
    width: 100%;
    justify-content: center;
    font-size: 0.7rem;
  }

  .segmentos-copy h3 {
    font-size: 1.42rem;
  }

  .segmentos-copy p,
  .segmentos-points li {
    font-size: 0.9rem;
  }

  .segmentos-media {
    padding: 0 18px 20px;
  }

  .segmentos-media img {
    border-radius: 20px;
    aspect-ratio: 4 / 5.2;
  }

  .segmentos-dots {
    gap: 8px;
  }

  .segmentos-dot {
    width: 10px;
    height: 10px;
  }

  .segmentos-dot.active {
    width: 28px;
  }

  .footer-top {
    padding: 58px 0 30px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-switch-card {
    padding: 18px;
  }

  .footer-switch-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .footer-tab {
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .map-wrapper iframe {
    height: 200px;
  }

  .product-modal {
    padding: 8px;
  }

  .product-modal-dialog {
    border-radius: 20px;
  }

  .product-modal-intro,
  .product-modal-body {
    padding-inline: 16px;
  }

  .product-modal-intro h3 {
    font-size: 1.3rem;
  }

  .product-modal-section {
    padding: 16px;
    border-radius: 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

.back-to-top {
  right: 14px;
  bottom: 78px;
}
}

.product-category-page {
  background: linear-gradient(180deg, #081527 0%, #0e2342 30%, #f4f8fc 30%, #ffffff 100%);
}

.product-detail-page {
  background: linear-gradient(180deg, #081527 0%, #0e2342 100%);
}

.product-detail-shell {
  padding: 152px 0 88px;
}

.product-detail-dialog {
  width: 100%;
  max-height: none;
  overflow: hidden;
}

.product-detail-dialog .product-modal-intro h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--white);
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.product-detail-formula {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.produto-page-own {
  margin-left: 0;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.product-detail-body {
  max-height: none;
  overflow: visible;
}

.product-detail-inline-link a {
  color: var(--blue);
  font-weight: 800;
}

.seo-landing-page {
  background: linear-gradient(180deg, #081527 0%, #0e2342 28%, #f4f8fc 28%, #ffffff 100%);
}

.seo-hero {
  padding: 156px 0 74px;
  color: var(--white);
}

.seo-page-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d9fbff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.seo-hero h1 {
  margin: 18px 0 18px;
  max-width: 14ch;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-family: "Manrope", "Inter", sans-serif;
}

.seo-hero p {
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.8;
}

.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.seo-hero-actions .btn-outline {
  color: var(--white);
}

.seo-page-section {
  padding: 24px 0 88px;
}

.seo-page-intro {
  margin-bottom: 34px;
  text-align: center;
}

.seo-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.seo-page-card,
.seo-page-side {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
  border: 1px solid rgba(9, 22, 43, 0.06);
  box-shadow: 0 24px 60px rgba(11, 25, 48, 0.08);
}

.seo-page-card h2,
.seo-page-side h2,
.seo-page-card h3 {
  margin-bottom: 14px;
  color: var(--text-dark);
  font-family: "Manrope", "Inter", sans-serif;
}

.seo-page-card p,
.seo-page-card li,
.seo-page-side p,
.seo-page-side li {
  color: var(--gray-600);
  line-height: 1.78;
}

.seo-page-card + .seo-page-card {
  margin-top: 22px;
}

.seo-page-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.seo-page-list li {
  position: relative;
  padding-left: 22px;
}

.seo-page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.seo-related-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.seo-related-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.seo-related-links a:hover {
  gap: 12px;
}

.category-hero {
  padding: 156px 0 74px;
  color: var(--white);
}

.category-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #b9e4ff;
  font-weight: 700;
}

.category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: end;
}

.category-hero-copy h1 {
  margin: 18px 0 18px;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-family: "Manrope", "Inter", sans-serif;
}

.category-hero-copy p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.8;
}

.category-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d9fbff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-hero-side {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(4, 17, 34, 0.18);
  backdrop-filter: blur(14px);
}

.category-hero-side strong {
  color: var(--white);
  font-size: 1.08rem;
  font-family: "Manrope", "Inter", sans-serif;
}

.category-hero-side span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.category-hero-side-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.95), rgba(52, 196, 200, 0.88));
  font-size: 1.55rem;
  box-shadow: 0 18px 34px rgba(30, 111, 255, 0.2);
}

.category-products-section {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding: 42px 0 96px;
  background: #ffffff;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -10px 34px rgba(8, 24, 49, 0.06);
}

.category-products-head {
  text-align: center;
  margin-bottom: 36px;
}

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

.category-product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0f2950 0%, #163b6d 52%, #1f5d9a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 46px rgba(8, 24, 49, 0.18);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.category-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(135, 220, 255, 0.32);
  box-shadow: 0 28px 58px rgba(8, 24, 49, 0.28);
}

.category-product-top {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 142px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-product-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-product-formula {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.category-product-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.3;
}

.category-product-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.category-product-own {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-product-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9f8ff;
  font-weight: 800;
}

.category-product-card:hover .category-product-formula,
.category-product-card:hover .category-product-own {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

@media (max-width: 1024px) {
  .category-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .category-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .seo-hero {
    padding: 128px 0 56px;
  }

  .seo-page-intro,
  .seo-page-card,
  .seo-page-side {
    text-align: center;
  }

  .seo-hero h1 {
    max-width: none;
  }

  .seo-hero-actions {
    justify-content: center;
  }

  .category-hero {
    padding: 128px 0 56px;
  }

  .category-hero-copy,
  .category-hero-side,
  .category-products-head {
    text-align: center;
  }

  .category-back-link {
    justify-content: center;
    width: 100%;
  }

  .category-hero-copy p {
    max-width: none;
  }

  .category-hero-side {
    justify-items: center;
  }

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

  .category-product-card {
    text-align: center;
  }

  .category-product-top,
  .category-product-bottom {
    justify-content: center;
  }
}

.contact-page {
  background: linear-gradient(180deg, #081527 0%, #0e2342 38%, #f4f8fc 38%, #ffffff 100%);
}

.contact-hero {
  position: relative;
  min-height: 460px;
  padding: 168px 0 108px;
  color: var(--white);
}

.contact-hero .container {
  display: block;
}

.contact-hero-copy {
  max-width: 940px;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d8f8ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-hero-copy h1 {
  margin-top: 18px;
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contact-hero-copy p {
  max-width: 74ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.75;
}

.contact-form-section {
  padding: 0 0 96px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
  border: 1px solid rgba(9, 22, 43, 0.06);
  box-shadow: 0 24px 60px rgba(11, 25, 48, 0.08);
}

.contact-form-card h2,
.contact-info-card h2 {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.8rem;
}

.contact-form-card p,
.contact-info-card p {
  color: var(--gray-600);
  line-height: 1.75;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field.full {
  grid-column: span 2;
}

.contact-field label {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(17, 40, 76, 0.1);
  background: #f8fbff;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230d2342' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 18px) center;
  background-size: 14px;
}

.contact-field textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: none;
  border-color: rgba(30, 111, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(30, 111, 255, 0.08);
  background: #ffffff;
}

.contact-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex: 0 0 18px;
}

.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-submit-note {
  color: var(--gray-600);
  font-size: 0.88rem;
}

.contact-submit-row .btn-primary {
  border: 0;
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: #f7fbff;
  border: 1px solid rgba(30, 111, 255, 0.08);
}

.contact-info-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #1b6dff, #2fb7d0);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-info-item span,
.contact-info-item a {
  color: var(--gray-600);
  line-height: 1.65;
}

.contact-success {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #081527 0%, #0e2342 34%, #f4f8fc 34%, #ffffff 100%);
}

.contact-success-card {
  width: min(720px, calc(100% - 28px));
  padding: 38px;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
  border: 1px solid rgba(9, 22, 43, 0.06);
  box-shadow: 0 24px 60px rgba(11, 25, 48, 0.08);
}

.contact-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #1b6dff, #2fb7d0);
  font-size: 1.7rem;
  box-shadow: 0 18px 36px rgba(30, 111, 255, 0.22);
}

.contact-success-card h1 {
  margin-bottom: 14px;
  color: var(--text-dark);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-success-card p {
  max-width: 52ch;
  margin: 0 auto 24px;
  color: var(--gray-600);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .contact-hero .container,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: 0;
    padding: 128px 0 72px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-field.full {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 112px 0 64px;
  }

  .contact-hero-copy,
  .contact-form-card,
  .contact-info-card,
  .contact-success-card {
    text-align: center;
  }

  .contact-hero-copy p {
    max-width: none;
  }

  .contact-info-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-form-card,
  .contact-info-card,
  .contact-success-card {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-submit-row {
    justify-content: center;
    text-align: center;
  }
}

/* All products page */
.all-products-hero {
  position: relative;
  padding: 178px 24px 76px;
  background:
    radial-gradient(circle at top right, rgba(52, 196, 200, 0.14), transparent 24%),
    linear-gradient(180deg, #071528 0%, #0d2342 100%);
  overflow: hidden;
}

.all-products-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(7, 21, 40, 0) 0%, rgba(7, 21, 40, 0.88) 100%);
  opacity: 0.28;
  pointer-events: none;
}

.all-products-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
}

.all-products-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.all-products-hero-copy .category-hero-badge {
  margin-bottom: 18px;
}

.all-products-hero-copy p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.all-products-hero-side {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 44px rgba(4, 17, 34, 0.22);
  backdrop-filter: blur(12px);
}

.all-products-hero-side strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.05rem;
}

.all-products-hero-side span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.all-products-section {
  padding: 76px 24px 96px;
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.todos-produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.todos-produtos-grid .fabricacao-card {
  min-width: 0;
  width: 100%;
}

.fabricacao-all-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.fabricacao-all-cta .btn-primary {
  min-width: 240px;
}

@media (max-width: 1100px) {
  .all-products-hero-grid {
    grid-template-columns: 1fr;
  }

  .todos-produtos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-cta {
    display: none !important;
  }

  .navbar.scrolled .nav-links.open,
  .navbar .nav-links.open {
    background: #091a31 !important;
    background-image: none !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 24px 54px rgba(4, 17, 34, 0.34) !important;
  }

  .nav-links.open .nav-mobile-cta {
    display: block;
    margin-top: 6px;
  }

  .nav-links.open .nav-link-cta {
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, #1b6dff, #2fb7d0);
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(30, 111, 255, 0.22);
  }

  .product-modal-actions {
    justify-content: center;
    margin-top: 18px;
  }

  .product-modal-fds,
  .product-modal-quote {
    width: 100%;
    justify-content: center;
  }

  .fabricacao-all-cta {
    margin-top: 22px;
  }

  .fabricacao-all-cta .btn-primary {
    width: 100%;
    max-width: 320px;
  }

  .all-products-hero {
    padding: 148px 24px 58px;
  }

  .all-products-hero-copy,
  .all-products-hero-side {
    text-align: center;
  }

  .all-products-hero-copy p {
    margin-inline: auto;
  }

  .product-detail-shell {
    padding: 140px 0 72px;
  }

  .todos-produtos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .all-products-hero {
    padding: 132px 20px 52px;
  }

  .all-products-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .all-products-hero-side {
    padding: 22px;
    border-radius: 24px;
  }

  .product-detail-shell {
    padding: 128px 0 64px;
  }

  .product-detail-dialog .product-modal-intro h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .product-detail-meta {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .product-modal-actions {
    width: 100%;
  }

  .product-modal-actions > * {
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .product-modal-dialog {
    max-height: 94svh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .product-modal-hero {
    grid-template-columns: 1fr;
  }

  .product-modal-body {
    max-height: none !important;
    overflow: visible !important;
  }

  .product-detail-page .product-modal-dialog {
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: auto;
  }

  .product-detail-page .product-modal-body,
  .product-detail-page .product-detail-body {
    max-height: none !important;
    overflow: visible !important;
  }
}
