/* 
   INNOBRAX — style.css
   Design System Completo
   Paleta: #0A1628 / #1565C0 / #00E5FF
*/

/* 
   01. VARIÁVEIS CSS (DESIGN TOKENS)
    */
:root {
  /* Cores Primárias */
  --color-primary:        #0A1628;
  --color-secondary:      #1565C0;
  --color-accent:         #00E5FF;
  --color-mid:            #0D2137;

  /* Cores Neutras */
  --color-light:          #F0F4F8;
  --color-dark:           #1E293B;
  --color-white:          #FFFFFF;
  --color-gray:           #64748B;
  --color-gray-light:     #94A3B8;
  --color-border:         rgba(0, 229, 255, 0.15);
  --color-border-light:   rgba(255, 255, 255, 0.08);

  /* Tipografia */
  --font-display:         'Space Grotesk', sans-serif;
  --font-body:            'Inter', sans-serif;

  /* Tamanhos de Fonte — Desktop */
  --fs-h1:                3.5rem;
  --fs-h2:                2.5rem;
  --fs-h3:                1.75rem;
  --fs-h4:                1.25rem;
  --fs-body-lg:           1.125rem;
  --fs-body:              1rem;
  --fs-small:             0.875rem;
  --fs-xs:                0.75rem;

  /* Espaçamentos */
  --space-xs:             0.5rem;
  --space-sm:             1rem;
  --space-md:             1.5rem;
  --space-lg:             2rem;
  --space-xl:             3rem;
  --space-2xl:            4rem;
  --space-3xl:            6rem;
  --space-section:        6.25rem;

  /* Layout */
  --container-max:        1280px;
  --container-padding:    5rem;
  --border-radius-sm:     6px;
  --border-radius-md:     12px;
  --border-radius-lg:     16px;
  --border-radius-xl:     24px;

  /* Sombras */
  --shadow-sm:            0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md:            0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg:            0 16px 48px rgba(0, 0, 0, 0.35);
  --shadow-card:          0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow:          0 0 20px rgba(0, 229, 255, 0.35);
  --shadow-glow-intense:  0 0 40px rgba(0, 229, 255, 0.55);

  /* Transições */
  --transition-fast:      150ms ease;
  --transition-base:      250ms ease;
  --transition-slow:      400ms ease;
}

/* 
   02. RESET E BASE
    */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* 
   03. FADE-IN ANIMATION (JS HOOK)
    */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* 
   04. TIPOGRAFIA GLOBAL
    */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  line-height: 1.7;
  color: var(--color-dark);
}

strong { font-weight: 600; }

.text--accent { color: var(--color-accent); }
.text--white  { color: var(--color-white); }

/* 
   05. LAYOUT — CONTAINER
    */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* 
   06. BOTÕES
    */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-body);
  letter-spacing: 0.03em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius-md);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn--primary:active {
  transform: translateY(0) scale(0.99);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn--outline-dark:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-small);
}

.btn--full { width: 100%; }

.btn--glow {
  box-shadow: var(--shadow-glow);
  animation: glow-pulse 3s ease-in-out infinite;
}

.btn--glow:hover {
  box-shadow: var(--shadow-glow-intense);
  animation: none;
}

/* 
   07. SEÇÕES — SISTEMA DE FUNDOS
    */
.section--dark  { background-color: var(--color-primary); position: relative; }
.section--mid   { background-color: var(--color-mid);     position: relative; }
.section--light { background-color: var(--color-light);   position: relative; }
.section--white { background-color: var(--color-white); }

.section__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.section__wave svg { display: block; width: 100%; }

/* 
   08. SEÇÃO — HEADERS
    */
.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section__header          { margin-bottom: var(--space-2xl); }
.section__header--center  { text-align: center; }

.section__title           { font-size: var(--fs-h2); color: var(--color-dark); margin-bottom: 1rem; }
.section__title--light    { color: var(--color-white); }
.section__title--center   { text-align: center; }

.section__subtitle        { font-size: var(--fs-body-lg); color: var(--color-gray); max-width: 600px; }
.section__subtitle--light { color: var(--color-gray-light); }

.section__header--center .section__subtitle { margin: 0 auto; }

/* 
   09. HEADER GLOBAL
    */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background-color: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.header--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  background-color: rgba(10, 22, 40, 0.98);
}

.header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-gray-light);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active { color: var(--color-white); }

.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.header__cta {
  font-size: var(--fs-small);
  padding: 0.625rem 1.25rem;
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.header__menu-toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__menu-toggle--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__menu-toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 
   10. HERO SECTION
    */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D2A50 50%, var(--color-secondary) 100%);
  padding-top: 72px;
  padding-bottom: 0;
  overflow: hidden;
}

canvas.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  padding-top: clamp(0.5rem, 2vh, var(--space-xl));
  padding-bottom: calc(clamp(0.75rem, 2vh, var(--space-xl)) + 72px);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  width: fit-content;
}

.hero__title {
  font-size: clamp(2.15rem, 3.6vw, 3.1rem);
  color: var(--color-white);
  line-height: 1.06;
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-gray-light);
  max-width: 520px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-xs);
}

.hero__ctas--below {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.hero__ctas--below .btn {
  width: 100%;
  padding: 0.7rem 1.05rem;
  border-radius: 12px;
  font-size: var(--fs-small);
  justify-content: center;
}
@media (max-width: 1024px) {
  .hero__ctas--below { justify-content: center; }
}

@media (max-width: 640px) {
  .hero__ctas--below { width: 100%; }
  .hero__ctas--below .btn { width: 100%; }
}

.hero__trust {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xs);
}

.trust__item {
  font-size: var(--fs-small);
  color: var(--color-gray-light);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: start;
  margin-top: -0.5rem;
}

.hero__visual--stack {
  align-items: flex-start;
}

.hero__visual-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.hero__dashboard {
  background: rgba(13, 33, 55, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  padding: var(--space-sm);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 229, 255, 0.08);
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.dashboard__dot { width: 10px; height: 10px; border-radius: 50%; }
.dashboard__dot--red    { background-color: #FF5F57; }
.dashboard__dot--yellow { background-color: #FFBD2E; }
.dashboard__dot--green  { background-color: #28C840; }

.dashboard__title {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-gray-light);
  margin-left: auto;
}

.dashboard__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.dashboard__metric {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.metric__label {
  font-size: var(--fs-xs);
  color: var(--color-gray-light);
  font-weight: 500;
}

.metric__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.metric__fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  position: relative;
}

.metric__fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-accent);
}

.metric__fill--75 { width: 75%; }
.metric__fill--42 { width: 42%; }
.metric__fill--91 { width: 91%; }

.metric__value {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-accent);
  text-align: right;
}

.dashboard__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.status__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.status__dot--online {
  background-color: #28C840;
  box-shadow: 0 0 6px #28C840;
  animation: pulse-green 2s infinite;
}

.status__text {
  font-size: var(--fs-xs);
  color: var(--color-gray-light);
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.hero__wave svg { display: block; width: 100%; }

/* 
   11. ABOUT INTRO SECTION
    */
.about-intro { padding: var(--space-section) 0; }

.about-intro__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-intro__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-intro__description {
  font-size: var(--fs-body-lg);
  color: var(--color-gray);
  line-height: 1.75;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.about-intro__stat {
  background: var(--color-white);
  border: 1px solid rgba(21, 101, 192, 0.12);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-intro__stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
}

.stat__label {
  font-size: var(--fs-xs);
  color: var(--color-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* 
   12. PRODUCTS SECTION (HOME CARDS)
    */
.products { padding: var(--space-section) 0 calc(var(--space-section) + 80px); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(0, 229, 255, 0.08);
}

.product-card:hover::before { opacity: 1; }

.product-card--featured {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.04);
}

.product-card__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.product-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card__tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  width: fit-content;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-card__title {
  font-size: var(--fs-h4);
  color: var(--color-white);
  font-weight: 700;
}

.product-card__tagline {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card__description {
  font-size: var(--fs-small);
  color: var(--color-gray-light);
  line-height: 1.65;
  flex: 1;
}

.product-card__link {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition-fast), color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.product-card__link:hover {
  color: var(--color-white);
  gap: 0.5rem;
}

/* 
   13. DIFFERENTIALS SECTION
    */
.differentials { padding: var(--space-section) 0; }

.differentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.differential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.differential-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.25);
}

.differential-item__icon {
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.08), rgba(0, 229, 255, 0.06));
  border-radius: var(--border-radius-lg);
  margin-bottom: 0.25rem;
}

.differential-item__title {
  font-size: var(--fs-h4);
  color: var(--color-dark);
  font-weight: 700;
}

.differential-item__text {
  font-size: var(--fs-small);
  color: var(--color-gray);
  line-height: 1.65;
}

/* 
   14. SECTORS SECTION
    */
.sectors { padding: var(--space-section) 0 calc(var(--space-section) + 80px); }

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-md) var(--space-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: all var(--transition-base);
  cursor: default;
}

.sector-item:hover {
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-3px);
}

.sector-item__icon {
  font-size: 1.75rem;
  line-height: 1;
  display: block;
}

.sector-item__label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* 
   15. NUMBERS SECTION
    */
.numbers { padding: var(--space-section) 0; }

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.number-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

.number-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.15);
}

.number-item__value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.number-item__label {
  font-size: var(--fs-small);
  color: var(--color-gray);
  font-weight: 500;
  line-height: 1.4;
}

/* 
   16. CTA FINAL SECTION
    */
.cta-final { padding: var(--space-section) 0; }

.cta-final__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.cta-final__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--color-white);
  max-width: 700px;
}

.cta-final__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-gray-light);
  max-width: 520px;
}

/* 
   17. FOOTER
    */
.footer {
  background-color: var(--color-primary);
  border-top: 1px solid var(--color-border);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-3xl);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__description {
  font-size: var(--fs-small);
  color: var(--color-gray-light);
  line-height: 1.7;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: var(--fs-small);
  color: var(--color-gray-light);
  transition: color var(--transition-fast);
}

.footer__link:hover { color: var(--color-accent); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--color-gray-light);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}

.footer__bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--color-gray);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-sm);
}

/* 
   18. PAGE HERO (PÁGINAS INTERNAS)
    */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D2A50 60%, var(--color-secondary) 100%);
  padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
}

.page-hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  max-width: 700px;
}

.page-hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-gray-light);
  max-width: 580px;
  line-height: 1.7;
}

.products__nav {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-sm);
}

.products__nav-link {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-gray-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: all var(--transition-base);
}

.products__nav-link:hover {
  color: var(--color-accent);
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.06);
}

/* 
   19. PRODUCT DETAIL SECTIONS
    */
.product-detail { padding: var(--space-section) 0; position: relative; }

/* InnoTemp — compact view (reduz scroll) */
#innotemp.product-detail--compact { padding: clamp(1.75rem, 4vh, 3rem) 0; }
#innotemp .product-detail__header { margin-bottom: clamp(1rem, 2vh, 1.5rem); }
#innotemp .product-two-col { gap: clamp(1rem, 2vw, 1.75rem); align-items: start; }
#innotemp .product-two-col__title { margin-bottom: 0.5rem; }
#innotemp .product-two-col__description { margin-bottom: 0.75rem; }
#innotemp .feature-list { gap: 0.5rem; margin-bottom: 0.9rem; }
#innotemp .feature-list__item { line-height: 1.35; }
#innotemp .product-visual-card { padding: 0; border-radius: var(--border-radius-xl); overflow: hidden; }
#innotemp .product-two-col__visual { margin-top: 0; }
@media (max-width: 1024px) {
  #innotemp.product-detail--compact { padding: 2.25rem 0; }
}
.product-detail--featured { padding-bottom: calc(var(--space-section) + 80px); }

.product-detail__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.product-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--color-accent);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
}

.product-detail__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--color-white);
  max-width: 820px;
  line-height: 1.2;
}

.product-detail__title--dark    { color: var(--color-dark); }

.product-detail__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-gray-light);
  max-width: 600px;
  line-height: 1.7;
}

.product-detail__subtitle--dark { color: var(--color-gray); }
.product-detail__cta { text-align: center; margin-top: var(--space-2xl); }

.product-detail__problem {
  display: flex;
  gap: var(--space-lg);
  background: rgba(255, 193, 7, 0.04);
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.problem__icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }

.problem__content { display: flex; flex-direction: column; gap: 0.5rem; }

.problem__title { font-size: var(--fs-h4); color: var(--color-white); font-weight: 700; }

.problem__text { font-size: var(--fs-body); color: var(--color-gray-light); line-height: 1.7; }

.product-detail__how-it-works { margin-bottom: var(--space-3xl); }

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
}

.step:hover {
  background: rgba(0, 229, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-4px);
}

.step__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 229, 255, 0.3);
  line-height: 1;
}

.step__title {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.step__text { font-size: var(--fs-small); color: var(--color-gray-light); line-height: 1.6; }

.product-detail__features { margin-bottom: var(--space-3xl); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.feature-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: rgba(0, 229, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.2);
}

.feature-item__icon { font-size: 1.25rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }

.feature-item__title { font-size: var(--fs-small); font-weight: 700; color: var(--color-white); margin-bottom: 0.25rem; }

.feature-item__text { font-size: var(--fs-xs); color: var(--color-gray-light); line-height: 1.55; }

.product-detail__applications { margin-bottom: var(--space-2xl); }

.applications__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-top: var(--space-lg);
}

.app-tag {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-gray-light);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: all var(--transition-base);
}

.app-tag:hover {
  color: var(--color-accent);
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.06);
}

.product-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.product-two-col--reversed      { direction: rtl; }
.product-two-col--reversed > *  { direction: ltr; }

.product-two-col__title         { font-size: var(--fs-h3); color: var(--color-dark); margin-bottom: var(--space-md); }
.product-two-col__title--light  { color: var(--color-white); }

.product-two-col__description   { font-size: var(--fs-body-lg); color: var(--color-gray); margin-bottom: var(--space-md); line-height: 1.75; }

.feature-list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: var(--space-lg); }

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--fs-body);
  color: var(--color-gray);
  line-height: 1.6;
}

.feature-list--light .feature-list__item { color: var(--color-gray-light); }

.product-visual-card {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(21, 101, 192, 0.12);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-visual-card--dark {
  background: var(--color-mid);
  border-color: var(--color-border);
}

.visual-card__header {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-dark);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(21, 101, 192, 0.1);
}

.product-visual-card--dark .visual-card__header {
  color: var(--color-gray-light);
  border-bottom-color: var(--color-border);
}

.visual-card__temp {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visual-card__temp--warm {
  background: linear-gradient(135deg, #FF6B35, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visual-card__status {
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

.status--ok     { background: rgba(40, 200, 64, 0.1);  color: #28C840; border: 1px solid rgba(40, 200, 64, 0.2); }
.status--active { background: rgba(255, 107, 53, 0.1); color: #FF6B35; border: 1px solid rgba(255, 107, 53, 0.2); }

.visual-card__detail { font-size: var(--fs-small); color: var(--color-gray); }
.product-visual-card--dark .visual-card__detail { color: var(--color-gray-light); }

/* 
   20. INNODEV SECTION
    */
.innodev__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.innodev-card {
  background: var(--color-white);
  border: 1px solid rgba(21, 101, 192, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
  align-items: center;
}

.innodev-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.25);
}

.innodev-card__icon {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.08), rgba(0, 229, 255, 0.06));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.innodev-card__title { font-size: var(--fs-small); font-weight: 700; color: var(--color-dark); }
.innodev-card__text  { font-size: var(--fs-small); color: var(--color-gray); line-height: 1.6; }

/* 
   21. ABOUT PAGE — HISTÓRIA
    */
.about-history { padding: var(--space-section) 0; }

.about-history__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-history__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-history__text p { color: var(--color-gray); line-height: 1.8; }

.history-visual {
  background: linear-gradient(135deg, var(--color-primary), var(--color-mid));
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.history-visual__text {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
}

.history-visual__stats { display: flex; gap: var(--space-lg); }

.history-stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }

.history-stat__number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--color-accent); }
.history-stat__label  { font-size: var(--fs-xs); color: var(--color-gray-light); text-transform: uppercase; letter-spacing: 0.06em; }

/* 
   22. MVV SECTION
    */
.mvv { padding: var(--space-section) 0 calc(var(--space-section) + 80px); }

.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.mvv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition-base);
}

.mvv-card:hover {
  background: rgba(0, 229, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-4px);
}

.mvv-card__icon {
  font-size: 2rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  background: rgba(0, 229, 255, 0.08);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvv-card__title { font-size: var(--fs-h4); color: var(--color-white); font-weight: 700; }
.mvv-card__text  { font-size: var(--fs-small); color: var(--color-gray-light); line-height: 1.7; }

.mvv-card__list { display: flex; flex-direction: column; gap: 0.5rem; }

.mvv-card__list li {
  font-size: var(--fs-small);
  color: var(--color-gray-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 
   23. WHY INNOBRAX SECTION
    */
.why-innobrax { padding: var(--space-section) 0; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-item {
  background: var(--color-white);
  border: 1px solid rgba(21, 101, 192, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.25);
}

.why-item__icon {
  font-size: 2.25rem;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.08), rgba(0, 229, 255, 0.06));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item__title { font-size: var(--fs-h4); color: var(--color-dark); font-weight: 700; }
.why-item__text  { font-size: var(--fs-small); color: var(--color-gray); line-height: 1.65; }

/* 
   24. CONTACT PAGE
    */
.contact { padding: var(--space-section) 0; }

.contact__container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact__form-title,
.contact__info-title {
  font-size: var(--fs-h3);
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

/* 
   25. FORMULÁRIO DE CONTATO
    */
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form__row--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form__group { display: flex; flex-direction: column; gap: 0.375rem; }

.form__label {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-secondary);
}

.form__label span { color: #EF4444; }

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: var(--color-white);
  border: 2px solid rgba(21, 101, 192, 0.2);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  font-size: var(--fs-body);
  color: var(--color-dark);
  transition: all var(--transition-base);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--color-gray-light); }

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}

.form__input--error  { border-color: #EF4444 !important; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important; }
.form__input--valid  { border-color: #28C840 !important; }

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__textarea { resize: vertical; min-height: 120px; }

.form__error {
  font-size: var(--fs-xs);
  color: #EF4444;
  font-weight: 500;
  min-height: 1rem;
  display: block;
}

.form__group--checkbox { gap: 0.5rem; }

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--fs-small);
  color: var(--color-gray);
  cursor: pointer;
  line-height: 1.5;
}

.form__checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-secondary);
}

.form__link { color: var(--color-secondary); text-decoration: underline; }

.form__privacy-note { font-size: var(--fs-xs); color: var(--color-gray); text-align: center; }

.form__success {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: rgba(40, 200, 64, 0.08);
  border: 1px solid rgba(40, 200, 64, 0.25);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  color: #16A34A;
  font-size: var(--fs-small);
}

.form__success p { color: #16A34A; font-size: var(--fs-small); }

/* 
   26. CONTACT INFO
    */
.contact-info { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-lg); }

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid rgba(21, 101, 192, 0.1);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-info__item:hover {
  border-color: rgba(21, 101, 192, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-info__icon {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.08), rgba(0, 229, 255, 0.06));
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: var(--fs-small);
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info__value--whatsapp { color: #16A34A; }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  color: var(--color-white);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  margin-bottom: var(--space-md);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn__icon   { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }
.whatsapp-btn__text   { display: flex; flex-direction: column; gap: 0.125rem; }
.whatsapp-btn__text strong { font-size: var(--fs-body); font-weight: 700; }
.whatsapp-btn__text small  { font-size: var(--fs-xs); opacity: 0.85; }

.contact-product-highlight {
  background: rgba(21, 101, 192, 0.06);
  border: 1px solid rgba(21, 101, 192, 0.2);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
}

.contact-product-highlight__title {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}

.contact-product-highlight__name { font-size: var(--fs-small); font-weight: 600; color: var(--color-dark); }

/* 
   27. ANIMAÇÕES GLOBAIS
    */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50%       { box-shadow: var(--shadow-glow-intense); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 6px #28C840; }
  50%       { box-shadow: 0 0 12px #28C840; }
}

/* 
   28. RESPONSIVIDADE — TABLET (max 1024px)
    */
@media (max-width: 1024px) {

  :root {
    --container-padding: 2.5rem;
    --fs-h1: 3rem;
    --fs-h2: 2.125rem;
  }

  .hero__container { grid-template-columns: 1fr; text-align: center; gap: var(--space-2xl); }
  .hero__content   { align-items: center; }
  .hero__subtitle  { max-width: 100%; }
  .hero__trust     { justify-content: center; }
  .hero__visual { max-width: 480px; margin: 0.25rem auto 0; }

  .about-intro__container,
  .about-history__container   { grid-template-columns: 1fr; gap: var(--space-2xl); }

  .products__grid             { grid-template-columns: repeat(2, 1fr); }
  .differentials__grid,
  .why__grid                  { grid-template-columns: repeat(2, 1fr); }
  .sectors__grid              { grid-template-columns: repeat(5, 1fr); }
  .numbers__grid              { grid-template-columns: repeat(2, 1fr); }
  .how-it-works__steps        { grid-template-columns: repeat(2, 1fr); }
  .features__grid             { grid-template-columns: repeat(2, 1fr); }
  .mvv__grid                  { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .innodev__grid              { grid-template-columns: repeat(2, 1fr); }

  .product-two-col            { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .product-two-col--reversed  { direction: ltr; }

  .contact__container         { grid-template-columns: 1fr; gap: var(--space-2xl); }

  .footer__container          { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer__links              { grid-template-columns: repeat(3, 1fr); }
}

/* 
   29. RESPONSIVIDADE — MOBILE (max 768px)
    */
@media (max-width: 768px) {

  :root {
    --container-padding: 1.25rem;
    --fs-h1: 2.25rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.375rem;
    --fs-body-lg: 1rem;
    --space-section: 4rem;
  }

  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    padding: var(--space-lg) var(--container-padding);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: 999;
  }

  .header__nav--open { transform: translateY(0); opacity: 1; pointer-events: all; }

  .nav__list         { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .nav__link         { font-size: var(--fs-body); padding: 0.5rem 0; }
  .header__cta       { display: none; }
  .header__menu-toggle { display: flex; }

  .hero__container { padding-top: clamp(1rem, 3vh, var(--space-lg)); padding-bottom: calc(clamp(1rem, 3vh, var(--space-lg)) + 64px); }
  .hero__ctas      { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .hero__trust     { flex-direction: column; gap: var(--space-xs); }
  .hero__dashboard { max-width: 100%; }

  .products__grid       { grid-template-columns: 1fr; }
  .differentials__grid,
  .why__grid            { grid-template-columns: 1fr; }
  .sectors__grid        { grid-template-columns: repeat(3, 1fr); }
  .numbers__grid        { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  .how-it-works__steps  { grid-template-columns: 1fr; }
  .features__grid       { grid-template-columns: 1fr; }
  .form__row--two-col   { grid-template-columns: 1fr; }
  .footer__links        { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .footer__bottom-container { flex-direction: column; text-align: center; }

  .page-hero__title    { font-size: 1.875rem; }
  .products__nav       { gap: 0.5rem; }
  .products__nav-link  { font-size: var(--fs-xs); padding: 0.375rem 0.875rem; }

  .about-intro__grid   { grid-template-columns: 1fr 1fr; }
  .mvv__grid           { grid-template-columns: 1fr; max-width: 100%; }
  .innodev__grid       { grid-template-columns: 1fr; }
  .sector-item__label  { font-size: 0.6rem; }
  .cta-final__title    { font-size: 1.5rem; }
  .contact-info__item  { transform: none !important; }
}

/* 
   30. MOBILE PEQUENO (max 480px)
    */
@media (max-width: 480px) {
  .sectors__grid  { grid-template-columns: repeat(3, 1fr); }
  .numbers__grid  { grid-template-columns: 1fr; }
  .footer__links  { grid-template-columns: 1fr; }
  .hero__badge    { font-size: 0.7rem; }
  .btn--large     { padding: 0.875rem 1.5rem; font-size: var(--fs-body); }
}

/* 
   31. LOGOMARCA REAL — logo-innobrax.png
    */
.header__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--transition-base);
}

.header__logo-img:hover { opacity: 0.8; }

.footer__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}

.logo__icon,
.logo__text,
.logo__accent { display: none; }

@media (max-width: 768px) {
  .header__logo-img { height: 32px; }
  .footer__logo-img { height: 40px; }
}

@media (max-width: 480px) {
  .header__logo-img { height: 28px; }
}

/*
   FIM DO style.css — INNOBRAX © 2026
*/

/* InnoTemp — ajustes finos (card menor + CTA abaixo + menos espaço no topo) */
#innotemp.product-detail--compact { padding: clamp(1.25rem, 2.5vh, 2.25rem) 0; }
#innotemp .product-detail__header { margin-bottom: clamp(0.75rem, 1.6vh, 1.1rem); }
#innotemp .product-detail__title { font-size: clamp(1.7rem, 2.4vw, 2.25rem); line-height: 1.15; }
#innotemp .product-detail__subtitle { font-size: 1.05rem; margin-top: 0.35rem; }

#innotemp .product-two-col { gap: clamp(0.9rem, 1.6vw, 1.4rem); }
#innotemp .product-two-col__text { padding-top: 0; }
#innotemp .feature-list { margin-bottom: 0.6rem; }

#innotemp .product-two-col__visual { margin-top: 0; }
#innotemp .product-visual-card { padding: 0; border-radius: var(--border-radius-xl); overflow: hidden; max-width: 294px; margin: 0 auto; }
#innotemp .innotemp-card-img { width: 100%; height: auto; display: block; border-radius: 18px; max-height: 224px; object-fit: contain; }

#innotemp .innotemp-cta-below { margin-top: 0.75rem; display: flex; justify-content: center; }
#innotemp .innotemp-cta-below .btn { width: 100%; max-width: 294px; padding: 0.7rem 1rem; border-radius: 12px; font-size: var(--fs-small); }

@media (max-width: 1024px) {
  #innotemp .product-detail__title { font-size: clamp(1.6rem, 4vw, 2.1rem); }
  #innotemp .innotemp-card-img { max-height: 196px; }
}
@media (max-width: 640px) {
  #innotemp .product-visual-card, #innotemp .innotemp-cta-below .btn { max-width: 100%; }
}


/* InnoSauna — compact + card imagem + CTA abaixo */
#innosauna.product-detail--compact { padding: clamp(1.25rem, 2.5vh, 2.25rem) 0; }
#innosauna .product-detail__header { margin-bottom: clamp(0.75rem, 1.6vh, 1.1rem); }
#innosauna .product-detail__title { font-size: clamp(1.7rem, 2.4vw, 2.25rem); line-height: 1.15; }
#innosauna .product-detail__subtitle { font-size: 1.05rem; margin-top: 0.35rem; }

#innosauna .product-two-col { gap: clamp(0.9rem, 1.6vw, 1.4rem); align-items: start; }
#innosauna .feature-list { gap: 0.5rem; margin-bottom: 0.6rem; }
#innosauna .feature-list__item { line-height: 1.35; }

#innosauna .product-two-col__visual { margin-top: 0; }
#innosauna .product-visual-card { padding: 0; border-radius: var(--border-radius-xl); overflow: hidden; max-width: 320px; margin: 0 auto; }
#innosauna .innosauna-card-img { width: 100%; height: auto; display: block; border-radius: 18px; max-height: 250px; object-fit: contain; }

#innosauna .innosauna-cta-below { margin-top: 0.75rem; display: flex; justify-content: center; }
#innosauna .innosauna-cta-below .btn { width: 100%; max-width: 320px; padding: 0.7rem 1rem; border-radius: 12px; font-size: var(--fs-small); }

@media (max-width: 1024px) {
  #innosauna .innosauna-card-img { max-height: 220px; }
}
@media (max-width: 640px) {
  #innosauna .product-visual-card, #innosauna .innosauna-cta-below .btn { max-width: 100%; }
}


/* Fix alinhamento InnoSauna: manter texto no topo mesmo com CTA abaixo do card */
#innosauna .product-two-col,
#innosauna .product-two-col.product-two-col--reversed {
  align-items: start !important;
}

#innosauna .product-two-col__text {
  align-self: start;
}

#innosauna .product-two-col__visual {
  align-self: start;
}


/* FIX FORTE — InnoSauna: impedir centralização vertical do grid */
#innosauna .product-two-col {
  align-items: start !important;
  justify-items: stretch;
}

#innosauna .product-two-col > * {
  align-self: start !important;
}

#innosauna .product-two-col__text,
#innosauna .product-two-col__visual {
  margin-top: 0 !important;
}


/* InnoSauna — correções de alinhamento + espaçamento do CTA + remover efeito do rtl */
#innosauna .product-two-col--reversed { direction: ltr !important; }

/* manter visual à direita sem usar rtl */
#innosauna .product-two-col--reversed > .product-two-col__visual { grid-column: 2; }
#innosauna .product-two-col--reversed > .product-two-col__text   { grid-column: 1; }

/* garantir ordem e alinhamento dos itens da lista */
#innosauna .feature-list__item { direction: ltr; }

/* afastar botão da imagem */
#innosauna .innosauna-cta-below { margin-top: 1.15rem; }

/* dar mais respiro inferior agora que removemos a wave */
#innosauna.product-detail--compact { padding-bottom: clamp(2.25rem, 4vh, 3.25rem); }


/* InnoSauna — layout robusto (sem reversed/rtl): texto à esquerda, card à direita */
#innosauna .product-two-col {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start !important;
}

#innosauna .product-two-col__visual {
  justify-self: end;
}

@media (max-width: 1024px) {
  #innosauna .product-two-col {
    grid-template-columns: 1fr;
  }
  #innosauna .product-two-col__visual {
    justify-self: center;
  }
}
