/*
 * Braseal Vedações - Landing Page Stylesheet
 * Distribuidora Autorizada Trelleborg Sealing Solutions
 * Localização: Socorro/SP, Brasil
 * Design: Premium, Industrial, Moderno e Confiável
 */

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

:root {
  /* Cores Principais do Projeto */
  --color-primary: #0065AF;
  /* Azul Trelleborg / Confiança */
  --color-secondary: #00A7B5;
  /* Turquesa / Tecnologia e Inovação */
  --color-neutral: #7A8381;
  /* Cinza Técnico / Estrutural */

  /* Gradientes B2B Premium */
  --gradient-brand: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-dark-glow: radial-gradient(circle at 50% 50%, rgba(0, 167, 185, 0.08) 0%, rgba(248, 250, 252, 0) 70%);
  --gradient-card-border: linear-gradient(135deg, rgba(0, 101, 175, 0.15) 0%, rgba(0, 167, 181, 0.05) 100%);
  --gradient-card-border-active: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);

  /* Cores de Fundo e Superfície (Premium Light Theme) */
  --bg-main: #F8FAFC;
  /* Slate muito claro para fundo principal */
  --bg-surface: #FFFFFF;
  /* Superfície de cards e seções em branco puro */
  --bg-surface-hover: #F1F5F9;
  /* Hover de cards */
  --bg-header: rgba(248, 250, 252, 0.85);
  /* Header com Blur claro */

  /* Cores de Texto */
  --text-light: #0F172A;
  /* Texto principal escuro (Slate 900) */
  --text-muted: #475569;
  /* Texto secundário/subtítulo (Slate 600) */
  --text-dark: #FFFFFF;
  /* Para elementos invertidos ou botões */

  /* Efeitos */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 25px rgba(0, 167, 181, 0.12);
  --shadow-glow-blue: 0 0 25px rgba(0, 101, 175, 0.08);
  --glass-blur: blur(12px);
  --glass-border: 1px solid rgba(15, 23, 42, 0.08);

  /* Fontes */
  --font-title: 'Outfit', 'Avenir Black', 'Avenir Next', 'Avenir', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Transição Global */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;

  /* 12 Cataloged Easing Curves */
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --ease-out-quad: cubic-bezier(0.5, 1, 0.89, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-circ: cubic-bezier(0, 0.55, 0.45, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-in-out-back: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --ease-elastic: cubic-bezier(0.25, 1.25, 0.5, 1.25);
}

/* ==========================================
   Resets e Configurações Base
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

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

li {
  list-style: none;
}

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

/* Utilitários */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: rgba(0, 167, 181, 0.1);
  border: 1px solid rgba(0, 167, 181, 0.15);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.15rem;
  }
}

/* ==========================================
   Botões Premium (CTAs)
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-title);
  letter-spacing: 0.02em;
}

.btn-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--color-primary);
  color: #FFFFFF;
  border: none;
}

.btn-primary:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: rgba(0, 101, 175, 0.05);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(15, 23, 42, 0.15);
}

.btn-outline:hover {
  border-color: var(--color-secondary);
  background: rgba(0, 167, 181, 0.05);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

/* ==========================================
   Header (Navegação)
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-header);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  transition: var(--transition-smooth);
}

.header-scrolled {
  padding: 0.5rem 0;
  background-color: rgba(248, 250, 252, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

.header-scrolled .header-container {
  height: 65px;
}

/* Branding Logos */
.logo-area {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-main-text {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text-light);
  line-height: 1;
}

.logo-sub-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  font-weight: 700;
  margin-top: 2px;
}

.logo-separator {
  width: 1px;
  height: 35px;
  background-color: rgba(15, 23, 42, 0.15);
}

.logo-partner-wrapper-old {
  display: flex;
  flex-direction: column;
}

.partner-tag {
  font-size: 0.55rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2px;
}

.logo-partner-text {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* Menu de Navegação Desktop */
.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-link:hover {
    color: var(--text-light);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link.active {
    color: var(--text-light);
  }

  .nav-link.active::after {
    width: 100%;
  }
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

/* Hamburguer Mobile */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

/* Animação do Hamburguer */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Menu Mobile Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-main);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  transition: var(--transition-smooth);
  padding: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--text-light);
}

.mobile-menu .nav-link:hover {
  color: var(--color-secondary);
}

.mobile-menu .btn {
  width: 100%;
  max-width: 280px;
}


/* ==========================================
   Hero Section
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-main);
}


.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: var(--gradient-dark-glow);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle at center, rgba(0, 101, 175, 0.12) 0%, rgba(15, 23, 42, 0) 75%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 101, 175, 0.06);
  border: 1px solid rgba(0, 101, 175, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-tag-badge {
  background: var(--color-primary);
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-right: 0.6rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
    font-size: 1.2rem;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-ctas {
    justify-content: flex-start;
  }
}

.hero-ctas .btn {
  min-width: 200px;
}

/* Lado Visual do Hero (Grafismo Tecnológico) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 380px;
  /* Aumentado para valor superior aos 300px originais */
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 50%, transparent 100%);
  will-change: transform;
  transition: transform 0.1s ease-out;
  /* Suaviza a rotação no scroll */
}

.tech-circle-container {
  position: relative;
  width: 280px;
  height: 280px;
}

@media (min-width: 480px) {
  .tech-circle-container {
    width: 350px;
    height: 350px;
  }
}

@media (min-width: 1200px) {
  .tech-circle-container {
    width: 400px;
    height: 400px;
  }
}

.tech-circle-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(0, 167, 181, 0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.tech-circle-middle {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border: 2px solid rgba(0, 101, 175, 0.2);
  border-left-color: var(--color-primary);
  border-right-color: var(--color-secondary);
  border-radius: 50%;
  animation: spin-reverse 20s linear infinite;
}

.tech-circle-inner {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: var(--bg-surface);
  border: var(--glass-border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-blue);
  overflow: hidden;
  text-align: center;
  padding: 1.5rem;
}

.tech-circle-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 167, 181, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.tech-icon-svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.5;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0px 0px 8px var(--color-secondary));
}

.tech-stat {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-light);
  line-height: 1.1;
}

.tech-stat-desc {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 2px;
}


/* ==========================================
   Famílias de Produto
   ========================================== */
/* ==========================================
   Catálogo / Localizador de Vedações
   ========================================== */
.catalog-section {
  position: relative;
  background-color: var(--bg-surface);
}

.catalog-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-main), transparent);
  pointer-events: none;
}

/* Barra de busca */
.catalog-search-wrapper {
  margin-bottom: 2.5rem;
}

.catalog-search-bar {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-main);
  border: 1px solid rgba(0, 101, 175, 0.2);
  border-radius: 10px;
  padding: 0 1.25rem;
  transition: var(--transition-smooth);
}

.catalog-search-bar:focus-within {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(0, 167, 181, 0.12);
}

.catalog-search-icon {
  stroke: var(--text-muted);
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.catalog-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 1rem 0;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.catalog-search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.catalog-search-clear {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  padding: 0.25rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.catalog-search-clear:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

/* Resultado da busca */
.catalog-search-result {
  display: none;
  margin-top: 0.75rem;
}

.catalog-result-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  flex-wrap: wrap;
}

.catalog-result-found {
  background: rgba(0, 167, 181, 0.07);
  border: 1px solid rgba(0, 167, 181, 0.2);
}

.catalog-result-unknown {
  background: rgba(122, 131, 129, 0.07);
  border: 1px solid rgba(122, 131, 129, 0.15);
}

.catalog-result-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.catalog-result-code {
  font-family: var(--font-mono, monospace);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.catalog-result-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.catalog-result-btn {
  white-space: nowrap;
  font-size: 0.8rem;
  padding: 0.55rem 1rem;
}

/* Filtros */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.catalog-filter-btn {
  background: var(--bg-main);
  border: 1px solid rgba(0, 101, 175, 0.15);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.catalog-filter-btn:hover {
  border-color: var(--color-secondary);
  color: var(--text-light);
}

.catalog-filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Grid de cards */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.catalog-card {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(0, 101, 175, 0.1);
  transition: var(--transition-smooth);
}

.catalog-card:hover {
  transform: translateY(-4px);
  background: var(--bg-surface-hover);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 167, 181, 0.25);
}

.catalog-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.catalog-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 167, 181, 0.06);
  border: 1px solid rgba(0, 167, 181, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.catalog-card:hover .catalog-card-icon {
  background: rgba(0, 167, 181, 0.12);
  border-color: rgba(0, 167, 181, 0.3);
}

.catalog-card-icon svg {
  stroke: var(--color-secondary);
}

.catalog-card-meta {
  text-align: right;
}

.catalog-profile-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

.catalog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.catalog-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}

.catalog-code-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.catalog-code-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
}

.catalog-card:hover .catalog-code-tag {
  background: rgba(0, 167, 181, 0.06);
  border-color: rgba(0, 167, 181, 0.15);
}

.catalog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-secondary);
  transition: var(--transition-smooth);
  margin-top: auto;
  text-decoration: none;
}

.catalog-card:hover .catalog-card-cta {
  color: var(--text-light);
  gap: 0.55rem;
}

/* Rodapé da seção */
.catalog-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.catalog-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}



/* --- Catálogo: estados de resultado Supabase --- */
.catalog-results-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.catalog-result-loading {
  background: rgba(0, 101, 175, 0.04);
  border: 1px solid rgba(0, 101, 175, 0.1);
}

@keyframes catalog-spin {
  to {
    transform: rotate(360deg);
  }
}

.catalog-spinner {
  animation: catalog-spin 0.8s linear infinite;
  flex-shrink: 0;
}

.catalog-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.catalog-result-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: rgba(0, 167, 181, 0.08);
  border: 1px solid rgba(0, 167, 181, 0.18);
  color: var(--color-secondary);
}

.catalog-result-tag--dim {
  background: rgba(0, 101, 175, 0.07);
  border-color: rgba(0, 101, 175, 0.15);
  color: var(--color-primary);
}

.catalog-result-tag--mat {
  background: rgba(122, 131, 129, 0.07);
  border-color: rgba(122, 131, 129, 0.15);
  color: var(--text-muted);
}

.catalog-result-more {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* ==========================================
   Braseal Distribuidora Autorizada
   ========================================== */
.about-braseal {
  position: relative;
  background-color: #0065af;
  background-image: radial-gradient(circle at 80% 25%, transparent 10%, rgba(0, 101, 175, 0.4) 35%, rgba(0, 101, 175, 0.8) 65%, #0065af 90%), url('braseal-bg.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .about-braseal {
    background-image: radial-gradient(circle at 75% 75%, transparent 10%, rgba(0, 101, 175, 0.5) 45%, rgba(0, 101, 175, 0.9) 75%, #0065af 95%), url('braseal-bg.jpg');
    background-position: center bottom;
    background-size: contain;
    min-height: auto;
    padding-bottom: 300px;
  }
}

.about-braseal::before {
  display: none;
}

.about-braseal .container {
  width: 100%;
}

.braseal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .braseal-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.braseal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.braseal-years {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.braseal-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.braseal-text {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.braseal-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  width: 100%;
}

@media (min-width: 480px) {
  .braseal-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

.braseal-highlight-item {
  border-left: 2px solid rgba(255, 255, 255, 0.35);
  padding-left: 0.85rem;
  display: block;
}

.highlight-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: #ffffff;
}

.highlight-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-braseal .btn-primary {
  background: #ffffff;
  color: #0065af;
  border: 2px solid #ffffff;
}

.about-braseal .btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* Frame do Certificado (Placeholder Premium) */
.certificate-container {
  display: none;
}

.certificate-card {
  width: 100%;
  max-width: 380px;
  background: var(--bg-surface);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 101, 175, 0.1);
  transition: var(--transition-smooth);
}

.certificate-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 101, 175, 0.3);
}

.certificate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.certificate-seal {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 101, 175, 0.3);
}

.certificate-seal-svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-light);
  stroke-width: 2;
  fill: none;
}

.certificate-badges {
  text-align: right;
}

.cert-year-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--text-muted);
}

.certificate-body {
  text-align: center;
  padding: 1rem 0;
  border: 1px dashed rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.02);
  margin-bottom: 1.5rem;
  position: relative;
}

.certificate-logo-placeholder {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.certificate-logo-placeholder span {
  color: var(--color-secondary);
}

.certificate-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.certificate-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 250px;
  margin: 0 auto;
  line-height: 1.4;
}

.certificate-stamp {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}


/* ==========================================
   Segmentos Atendidos
   ========================================== */
.segments {
  position: relative;
  background-color: var(--bg-surface);
}

.segments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.segment-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  border: 1px solid rgba(0, 101, 175, 0.1);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem 2rem;
  transition: var(--transition-smooth);
}

/* Scroll reveal overrides/specifics */
.segment-card.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.segment-card.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.segment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), 0 20px 40px rgba(0, 101, 175, 0.12);
  border-color: rgba(0, 101, 175, 0.35);
}

.segment-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

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

.segment-card:hover .segment-img {
  transform: scale(1.12);
}

.segment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to top,
      rgba(15, 23, 42, 0.92) 0%,
      rgba(15, 23, 42, 0.45) 50%,
      rgba(15, 23, 42, 0.1) 100%);
  transition: var(--transition-smooth);
}

.segment-card:hover .segment-overlay {
  background: linear-gradient(to top,
      rgba(0, 45, 85, 0.95) 0%,
      rgba(0, 45, 85, 0.55) 60%,
      rgba(15, 23, 42, 0.2) 100%);
}

.segment-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.segment-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0;
  font-family: var(--font-title);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.segment-card:hover .segment-title {
  transform: translateY(-4px);
}

.segment-accent-line {
  width: 30px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.segment-card:hover .segment-accent-line {
  width: 80px;
  background: #FFFFFF;
}


/* ==========================================
   Sobre a Trelleborg
   ========================================== */
.about-trelleborg {
  position: relative;
  background-color: var(--bg-main);
  overflow: hidden;
}

.about-trelleborg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 101, 175, 0.06), transparent);
  pointer-events: none;
}

.trelleborg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .trelleborg-grid {
    grid-template-columns: 0.90fr 1.1fr;
  }
}

/* Lado Visual da Marca Trelleborg (Placeholder Premium) */
.trelleborg-visual {
  display: flex;
  justify-content: center;
}

.trelleborg-brand-card {
  background: var(--bg-surface);
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 101, 175, 0.1);
}

.trelleborg-logo-placeholder {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.trelleborg-logo-placeholder span {
  color: var(--color-primary);
}

.trelleborg-brand-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.trelleborg-brand-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trelleborg-brand-stat-item h4 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
}

.trelleborg-brand-stat-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Coluna de Conteúdo sobre a Trelleborg */
.trelleborg-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trelleborg-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.trelleborg-key-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.trelleborg-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trelleborg-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 101, 175, 0.1);
  border: 1px solid rgba(0, 101, 175, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.trelleborg-point-icon-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.trelleborg-point-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.trelleborg-point-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}


/* ==========================================
   Diferenciais Competitivos
   ========================================== */
.differentials {
  position: relative;
  background-color: var(--bg-surface);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.diff-card {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 2.25rem 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
  text-align: center;
  border: 1px solid rgba(0, 101, 175, 0.1);
}

.diff-card:hover {
  transform: translateY(-5px);
  background: var(--bg-surface-hover);
  border-color: rgba(0, 101, 175, 0.3);
}

.diff-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(15, 23, 42, 0.04);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  transition: var(--transition-smooth);
}

.diff-card:hover .diff-number {
  color: rgba(0, 167, 181, 0.12);
  transform: scale(1.1);
}

.diff-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(0, 167, 181, 0.05);
  border: 1px solid rgba(0, 167, 181, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--color-secondary);
  transition: var(--transition-smooth);
}

.diff-card:hover .diff-icon-wrapper {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: none;
}

.diff-icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.diff-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.diff-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}


/* ==========================================
   Final CTA
   ========================================== */
.final-cta {
  position: relative;
  background-color: var(--bg-main);
  overflow: hidden;
  text-align: center;
}

/* Background glowing */
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 101, 175, 0.1) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-box {
  background: #004D85;
  border-radius: 20px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 101, 175, 0.15);
  z-index: 2;
  color: #FFFFFF;
}

.cta-box .cta-title {
  color: #FFFFFF;
}

.cta-box .cta-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.cta-box-glow {
  display: none;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

@media (min-width: 768px) {
  .cta-subtitle {
    font-size: 1.15rem;
  }
}

.cta-box .btn {
  min-width: 240px;
  box-shadow: 0 8px 30px rgba(0, 167, 181, 0.35);
}


/* ==========================================
   Footer (Rodapé)
   ========================================== */
.footer {
  background-color: #0065AF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4.5rem 0 2rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer .logo-main-text {
  color: #FFFFFF;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

/* Coluna Comercial */
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.footer-badge-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

/* Links Rápidos */
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

/* Dados da Empresa / Endereço */
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-secondary);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-contact-info p {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-copy {
  font-size: 0.78rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.78rem;
}

.footer-legal-link:hover {
  color: var(--color-secondary);
}


/* ==========================================
   SISTEMA DE ANIMAÇÃO E INTERATIVIDADE
   27 @keyframes Catalogados
   ========================================== */

/* --- ENTRADAS DE CONTEÚDO (1 - 9) --- */
@keyframes anim_ttb {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim_btt {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim_ltr {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes anim_rtl {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slight_anim_ttb {
  0% {
    opacity: 0;
    transform: translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slight_anim_btt {
  0% {
    opacity: 0;
    transform: translateY(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slight_anim_ltr {
  0% {
    opacity: 0;
    transform: translateX(-3px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slight_anim_rtl {
  0% {
    opacity: 0;
    transform: translateX(3px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes alpha-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* --- TEXTO E MOVIMENTOS DE TELA (10 - 14) --- */
@keyframes text_anim_btt {
  0% {
    opacity: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateY(0);
  }
}

@keyframes perspective_anim_btt {
  0% {
    opacity: 0;
    transform: perspective(800px) rotateX(-30deg) translateY(60px);
    transform-origin: top center;
  }

  100% {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg) translateY(0);
    transform-origin: top center;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--color-secondary);
  }
}

@keyframes text_glow {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 167, 181, 0);
  }

  50% {
    text-shadow: 0 0 15px rgba(0, 167, 181, 0.4);
  }
}

/* --- FUNDOS DE HERO E IMAGENS (15 - 18) --- */
@keyframes kenburns {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes backwash {
  0% {
    opacity: 0;
    transform: scale(1.15);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes pan_left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-20px);
  }
}

@keyframes pan_right {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(20px);
  }
}

/* --- ELEMENTOS DE INTERFACES E UI (19 - 27) --- */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes tooltip_boing {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  70% {
    transform: scale(0.9);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes overlay_focus {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.3;
  }
}

@keyframes anim_menu_ttb {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse_glow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 167, 181, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(0, 167, 181, 0.6);
  }
}

@keyframes float_element {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes magnetic_slide {
  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(8px);
  }

  60% {
    transform: translateX(-3px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes border_draw {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}


/* ==========================================
   SISTEMA DE ANIMAÇÃO AO ROLAR (SCROLL REVEAL)
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.animate_when_almost_visible,
.translate_when_almost_visible {
  opacity: 0;
  will-change: transform, opacity, clip-path;
}

/* Comportamento de transições (.translate_when_almost_visible) */
.translate_when_almost_visible {
  transition: opacity var(--speed, 800ms) var(--ease-out-expo) var(--delay, 0ms),
    transform var(--speed, 800ms) var(--ease-out-expo) var(--delay, 0ms),
    clip-path var(--speed, 1000ms) var(--ease-out-expo) var(--delay, 0ms);
}

/* Gatilho quando no Viewport */
.translate_when_almost_visible.start_animation {
  opacity: 1;
}

/* Transições padrão baseadas em classes de orientação */
.translate_when_almost_visible.reveal_ttb {
  transform: translateY(-40px);
}

.translate_when_almost_visible.reveal_btt {
  transform: translateY(40px);
}

.translate_when_almost_visible.reveal_ltr {
  transform: translateX(-40px);
}

.translate_when_almost_visible.reveal_rtl {
  transform: translateX(40px);
}

.translate_when_almost_visible.reveal_ttb.start_animation,
.translate_when_almost_visible.reveal_btt.start_animation {
  transform: translateY(0);
}

.translate_when_almost_visible.reveal_ltr.start_animation,
.translate_when_almost_visible.reveal_rtl.start_animation {
  transform: translateX(0);
}

/* Comportamento de animações (.animate_when_almost_visible) */
.animate_when_almost_visible.start_animation {
  opacity: 1;
  animation-duration: var(--speed, 800ms);
  animation-delay: var(--delay, 0ms);
  animation-timing-function: var(--ease, var(--ease-out-expo));
  animation-fill-mode: both;
}

/* Mapeamento de classes de animações específicas */
.animate_when_almost_visible.anim-ttb.start_animation {
  animation-name: anim_ttb;
}

.animate_when_almost_visible.anim-btt.start_animation {
  animation-name: anim_btt;
}

.animate_when_almost_visible.anim-ltr.start_animation {
  animation-name: anim_ltr;
}

.animate_when_almost_visible.anim-rtl.start_animation {
  animation-name: anim_rtl;
}

.animate_when_almost_visible.slight-ttb.start_animation {
  animation-name: slight_anim_ttb;
}

.animate_when_almost_visible.slight-btt.start_animation {
  animation-name: slight_anim_btt;
}

.animate_when_almost_visible.slight-ltr.start_animation {
  animation-name: slight_anim_ltr;
}

.animate_when_almost_visible.slight-rtl.start_animation {
  animation-name: slight_anim_rtl;
}

.animate_when_almost_visible.fade-in.start_animation {
  animation-name: alpha-in;
}

.animate_when_almost_visible.text-clip.start_animation {
  animation-name: text_anim_btt;
}

.animate_when_almost_visible.text-3d.start_animation {
  animation-name: perspective_anim_btt;
}

.animate_when_almost_visible.backwash-in.start_animation {
  animation-name: backwash;
}

.animate_when_almost_visible.boing.start_animation {
  animation-name: tooltip_boing;
}

.animate_when_almost_visible.float.start_animation {
  animation-name: float_element;
  animation-iteration-count: infinite;
}


/* ==========================================
   LAYOUT: GRID BASEADO EM TABLE
   ========================================== */
.table-grid-section {
  padding: 6rem 0;
  background-color: var(--bg-main);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 101, 175, 0.05);
}

.table-grid {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.table-row {
  display: table-row;
}

.table-col {
  display: table-cell;
  vertical-align: top;
}

/* Sistema de 12 colunas */
.col-1 {
  width: 8.333%;
}

.col-2 {
  width: 16.666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333%;
}

.col-5 {
  width: 41.666%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333%;
}

.col-8 {
  width: 66.666%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333%;
}

.col-11 {
  width: 91.666%;
}

.col-12 {
  width: 100%;
}

/* Gutters via border spacing do display: table */
.gutter-px {
  border-spacing: 1px 0px;
}

.gutter-half {
  border-spacing: 18px 0px;
}

.gutter-default {
  border-spacing: 36px 0px;
}

.gutter-double {
  border-spacing: 72px 0px;
}

.gutter-triple {
  border-spacing: 108px 0px;
}

.gutter-quad {
  border-spacing: 144px 0px;
}

/* Preenchimento padrão */
.table-grid-padding {
  padding: 36px;
}

/* Estilos de Cartões de Tabela */
.table-spec-card {
  background: var(--bg-surface);
  border-radius: 12px;
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.table-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 167, 181, 0.2);
}

.table-spec-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.table-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.table-spec-item {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
  padding-bottom: 0.4rem;
  color: var(--text-muted);
}

.table-spec-item span:last-child {
  font-weight: 700;
  color: var(--text-light);
}

/* Responsividade para o Grid em Table (Transformar em bloco no Mobile) */
@media (max-width: 991px) {
  .table-grid {
    display: block !important;
    width: 100% !important;
    border-spacing: 0 !important;
  }

  .table-row {
    display: block !important;
    width: 100% !important;
  }

  .table-col {
    display: block !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }
}


/* ==========================================
   HOVER EFFECTS EM CARDS (SHOWCASE GALLERY)
   ========================================== */
.showcase-section {
  padding: 6rem 0;
  background-color: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.showcase-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  cursor: pointer;
  height: 380px;
  border: 1px solid rgba(0, 101, 175, 0.08);
}


.showcase-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.showcase-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-quint);
}

.showcase-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.9) 0%, rgba(10, 20, 40, 0.4) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-cubic);
  z-index: 2;
}

.showcase-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 3;
}

.showcase-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out-back) 100ms, opacity 0.4s var(--ease-out-cubic) 100ms;
}

.showcase-card-title {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out-back) 180ms, opacity 0.4s var(--ease-out-cubic) 180ms;
}

.showcase-card-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  transform: translateY(25px);
  opacity: 0;
  /* Slide-from-bottom com delay de 250ms */
  transition: transform 0.5s var(--ease-out-back) 250ms, opacity 0.5s var(--ease-out-cubic) 250ms;
}

/* Triggers on Hover */
.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), var(--shadow-glow-blue);
}

.showcase-card:hover .showcase-card-img {
  transform: scale(1.15);
  /* Zoom de imagem */
}

.showcase-card:hover .showcase-card-overlay {
  opacity: 1;
  /* Overlay fade */
}

.showcase-card:hover .showcase-card-tag,
.showcase-card:hover .showcase-card-title,
.showcase-card:hover .showcase-card-text {
  transform: translateY(0);
  opacity: 1;
}



/* ==========================================
   EXTRAS: CURSOR CUSTOMIZADO E LENIS SCROLL
   ========================================== */
.custom-cursor {
  display: none;
}


/* Configurações básicas de Smooth Scroll */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}


/* ==========================================
   LOGOS REAIS NO HEADER
   ========================================== */
.header-logo-braseal {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.header-logo-trelleborg {
  height: 22px;
  width: auto;
  object-fit: contain;
  margin-top: 2px;
}

.logo-partner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
}


/* ==========================================
   VARIAÇÕES DE LAYOUT PARA CABEÇALHOS DE SEÇÃO
   ========================================== */

/* Título alinhado à esquerda */
.section-header-left {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-header-left .section-title {
  margin-bottom: 0.75rem;
}

.section-header-left .section-subtitle {
  max-width: 560px;
}

/* Título e subtítulo em duas colunas */
.section-header-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .section-header-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.section-header-split-left .section-title {
  margin-bottom: 0;
}

.section-header-split-right {
  padding-bottom: 4px;
}

.section-header-split-right .section-subtitle {
  color: var(--text-muted);
}


/* ==========================================
   CERTIFICADO TRELLEBORG COM LOGO REAL
   ========================================== */
.certificate-trelleborg-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 0.75rem auto;
  display: block;
  filter: brightness(0);
  opacity: 0.75;
}


/* ==========================================
   TRELLEBORG BRAND CARD COM LOGO REAL
   ========================================== */
.trelleborg-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1.25rem auto;
  display: block;
}


/* ==========================================
   SEÇÃO DE CLIENTES
   ========================================== */
.clients {
  background-color: var(--bg-surface);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.client-logo-item {
  background: var(--bg-main);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: var(--transition-smooth);
  min-height: 100px;
}

.client-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 101, 175, 0.15);
}

.client-logo-img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.client-logo-item:hover .client-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}


/* ==========================================
   FOOTER COM LOGO REAL
   ========================================== */
.footer-logo-area {
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}