/* =============================================
   ÁGUA MINERAL LIFE — FLOW STATE
   Hotsite Premium — style.css
   ============================================= */

/* ── Variáveis CSS ── */
:root {
  /* Paleta principal */
  --color-bg: #F0F8FF;
  --color-bg-2: #E8F4FD;
  --color-bg-dark: #D6EDF9;
  --color-primary: #0A9ED6;
  --color-primary-dark: #0880B0;
  --color-primary-light: #4DC3EC;
  --color-accent: #00D4FF;
  --color-text: #1A2E3B;
  --color-text-mid: #3D5A6E;
  --color-text-light: #7A9EB0;
  --color-white: #FFFFFF;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.3);
  /* Menos opaco, mais transparente */
  --glass-border: rgba(255, 255, 255, 0.5);
  /* Borda mais suave */
  --glass-shadow: rgba(10, 158, 214, 0.18);
  /* Sombra um pouco mais presente */
  --glass-blur-sm: 18px;
  /* Novo: blur menor para botões */
  --glass-blur-md: 28px;
  /* Novo: blur médio para cards */
  --glass-blur-lg: 36px;
  /* Novo: blur maior para blocos sensoriais */

  /* Gradientes */
  --grad-primary: linear-gradient(135deg, #0A9ED6 0%, #00D4FF 100%);
  --grad-bg: linear-gradient(180deg, #F0F8FF 0%, #E8F4FD 50%, #D6EDF9 100%);
  --grad-dark: linear-gradient(180deg, #1A2E3B 0%, #0D1E2A 100%);
  --grad-comgas: linear-gradient(135deg, #0A9ED6 0%, #00BFFF 50%, #87CEEB 100%);

  /* Tipografia */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;


  /* Tamanhos */
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-lg: 1.125rem;
  --size-xl: 1.25rem;
  --size-2xl: 1.5rem;
  --size-3xl: 2rem;
  --size-4xl: 2.5rem;
  --size-5xl: 3.5rem;
  --size-6xl: 5rem;
  --size-hero: clamp(3rem, 7vw, 4.5rem);
  /* Ajustado conforme sua última definição */

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Transições */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.4s var(--ease-smooth);
  --transition-slow: 0.8s var(--ease-out-expo);

  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 4px 20px rgba(10, 158, 214, 0.08);
  --shadow-md: 0 8px 40px rgba(10, 158, 214, 0.15);
  --shadow-lg: 0 20px 80px rgba(10, 158, 214, 0.2);
  --shadow-glow: 0 0 40px rgba(10, 158, 214, 0.35);

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);

  /* Z-index */
  --z-bg: -2;
  --z-canvas: -1;
  --z-base: 1;
  --z-overlay: 10;
  --z-nav: 100;
  --z-cursor: 9999;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: var(--grad-bg);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ── Canvas de Partículas ── */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-canvas);
  opacity: 0.5;
}

/* ── Cursor Personalizado ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: opacity var(--transition-fast);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-primary);
  opacity: 0.5;
  transition: width 0.3s var(--ease-spring),
    height 0.3s var(--ease-spring),
    opacity 0.3s ease,
    transform 0.08s linear;
}

.cursor-ring.is-hovered {
  width: 56px;
  height: 56px;
  opacity: 0.3;
  border-color: var(--color-accent);
}

@media (hover: none) {
  .cursor-dot, .cursor-ring {
    display: none;
  }
}

/* ── Utilitários de Layout ── */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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

.section-eyebrow {
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-sm);
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  /* Ajustado para Plus Jakarta Sans */
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.04em;
  /* Ajustado para Plus Jakarta Sans */
}

.section-title em {
  font-style: italic;
  font-weight: 700;
  /* Ajustado para Plus Jakarta Sans */
  color: var(--color-primary);
}

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

.section-subtitle {
  font-size: var(--size-lg);
  color: var(--color-text-mid);
  max-width: 560px;
  margin: var(--space-md) auto 0;
  line-height: 1.7;
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--size-base);
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s var(--ease-out-expo);
}

.btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

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

.btn-primary .btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.btn-primary:hover .btn-icon {
  transform: translateY(3px);
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--color-text);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur-sm));
  /* Usando a nova variável */
  -webkit-backdrop-filter: blur(var(--glass-blur-sm));
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  /* Um pouco mais sólido no hover */
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Animações de Reveal ── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-hero {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-hero.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.25rem 0;
  transition: background var(--transition-base),
    box-shadow var(--transition-base),
    padding var(--transition-base);
}

.site-header.is-scrolled {
  background: rgba(240, 248, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 0 rgba(10, 158, 214, 0.1), var(--shadow-sm);
  padding: 0.875rem 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo a {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast),
    transform var(--transition-base);
  filter: drop-shadow(0 2px 8px rgba(10, 158, 214, 0.15));
}

.nav-logo-img:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

/* Quando o header rola — logo levemente menor */
.site-header.is-scrolled .nav-logo-img {
  height: 36px;
  transition: height var(--transition-base);
}

/* REMOVIDOS: Estilos antigos do logo em texto */
/* .logo-text { ... } */
/* .logo-dot  { ... } */
/* .logo-sub  { ... } */

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

.nav-link {
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--color-text-mid);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-link.nav-cta {
  background: var(--grad-primary);
  color: var(--color-white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.nav-link.nav-cta::after {
  display: none;
}

.nav-link.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ── [1] HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--grad-bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
}

.hero-media-fallback {
  position: absolute;
  inset: 0;
  /* Substituir pela imagem de fundo */
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(240, 248, 255, 0.85) 100%);
}

/* Floaters decorativos */
.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floater {
  position: absolute;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  opacity: 0.06;
  animation: floatAnim linear infinite;
}

.floater-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
  animation-duration: 20s;
  animation-delay: 0s;
}

.floater-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -80px;
  animation-duration: 15s;
  animation-delay: -5s;
}

.floater-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 10%;
  animation-duration: 18s;
  animation-delay: -8s;
}

.floater-4 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 20%;
  animation-duration: 12s;
  animation-delay: -3s;
  opacity: 0.04;
}

.floater-5 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 35%;
  animation-duration: 10s;
  animation-delay: -7s;
  opacity: 0.08;
}

@keyframes floatAnim {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  33% {
    transform: translateY(-30px) rotate(5deg) scale(1.05);
  }

  66% {
    transform: translateY(20px) rotate(-3deg) scale(0.97);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

.hero-waves-top,
.hero-waves-bottom {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.hero-waves-top {
  top: 0;
}

.hero-waves-bottom {
  bottom: -1px;
  line-height: 0;
}

.hero-waves-top svg,
.hero-waves-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
  padding: 120px var(--container-pad) var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

/* Garrafas Hero */
.hero-bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.bottle-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform var(--transition-slow);
}

.bottle-wrap:hover {
  transform: translateY(-12px) scale(1.03);
}

/* Placeholder visual da garrafa (substituir por imagem real) */
.bottle-placeholder {
  position: relative;
  width: 380px;
  /* height: 280px; */
  /* Removido para permitir que a imagem real defina a altura */
}

.bottle-shape {
  width: 100%;
  height: 100%;
  border-radius: 40px 40px 30px 30px;
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(200, 235, 255, 0.65) 40%,
      rgba(10, 158, 214, 0.25) 100%);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 2px 0 8px rgba(255, 255, 255, 0.6),
    inset -2px 0 8px rgba(10, 158, 214, 0.15),
    0 20px 60px rgba(10, 158, 214, 0.2),
    0 4px 20px rgba(10, 158, 214, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.bottle-shape--comgas {
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(180, 225, 255, 0.7) 40%,
      rgba(0, 212, 255, 0.3) 100%);
  box-shadow:
    inset 2px 0 8px rgba(255, 255, 255, 0.7),
    inset -2px 0 8px rgba(0, 212, 255, 0.2),
    0 20px 60px rgba(0, 212, 255, 0.25),
    0 4px 20px rgba(0, 212, 255, 0.15);
}

.bottle-label {
  font-family: var(--font-display);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.05em;
  z-index: 1;
}

.bottle-volume {
  font-size: var(--size-xs);
  font-weight: 500;
  color: var(--color-text-mid);
  letter-spacing: 0.1em;
  z-index: 1;
}

.bottle-shine {
  position: absolute;
  top: 8%;
  left: 15%;
  width: 22%;
  height: 55%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0) 100%);
  border-radius: var(--radius-full);
  filter: blur(3px);
}

.bottle-condensation {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.8) 1.5px, transparent 1.5px),
    radial-gradient(circle at 50% 65%, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.9) 0.8px, transparent 0.8px),
    radial-gradient(circle at 80% 55%, rgba(255, 255, 255, 0.8) 1.2px, transparent 1.2px);
  animation: condensDrop 4s ease-in-out infinite alternate;
}

@keyframes condensDrop {
  0% {
    opacity: 0.4;
    transform: translateY(0);
  }

  100% {
    opacity: 0.8;
    transform: translateY(3px);
  }
}

/* Bolhas da versão com gás */
.bottle-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bottle-bubbles span {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  animation: bubbleRise 2s ease-in infinite;
}

.bottle-bubbles span:nth-child(1) {
  left: 25%;
  animation-delay: 0s;
  animation-duration: 1.8s;
}

.bottle-bubbles span:nth-child(2) {
  left: 45%;
  animation-delay: 0.3s;
  animation-duration: 2.2s;
}

.bottle-bubbles span:nth-child(3) {
  left: 65%;
  animation-delay: 0.6s;
  animation-duration: 1.6s;
}

.bottle-bubbles span:nth-child(4) {
  left: 35%;
  animation-delay: 0.9s;
  animation-duration: 2s;
}

.bottle-bubbles span:nth-child(5) {
  left: 55%;
  animation-delay: 1.2s;
  animation-duration: 1.9s;
}

.bottle-bubbles span:nth-child(6) {
  left: 20%;
  animation-delay: 1.5s;
  animation-duration: 2.3s;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }

  80% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-260px) scale(0.5);
    opacity: 0;
  }
}

.bottle-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 30px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.5;
  transition: opacity var(--transition-base), width var(--transition-base);
}

.bottle-glow--semgas {
  background: var(--color-primary);
}

.bottle-glow--comgas {
  background: var(--color-accent);
}

.bottle-wrap:hover .bottle-glow {
  opacity: 0.85;
  width: 110px;
}

/* Texto Hero */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero-eyebrow {
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--size-hero);
  font-weight: 800;
  /* Ajustado para Plus Jakarta Sans */
  line-height: 1.1;
  letter-spacing: -0.04em;
  /* Ajustado para Plus Jakarta Sans */
  color: var(--color-text);
}

.hero-headline em {
  font-style: italic;
  font-weight: 700;
  /* Ajustado para Plus Jakarta Sans */
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: var(--size-lg);
  color: var(--color-text-mid);
  line-height: 1.7;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-xs);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollFade 2.5s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: var(--size-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-mid);
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes scrollFade {
  0%, 100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.9;
  }
}

/* ── [2] PRODUTOS ── */
.products-section {
  padding: var(--space-3xl) 0;
  position: relative;
  background: var(--color-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Agora 2 colunas para 4 itens */
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid transparent;
  background: var(--glass-border) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  transition: opacity var(--transition-base);
}

.product-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity var(--transition-slow);
}

.product-card--semgas .product-card__bg {
  background: linear-gradient(135deg,
      rgba(232, 244, 253, 0.9) 0%,
      rgba(214, 237, 249, 0.95) 50%,
      rgba(190, 225, 245, 0.9) 100%);
}

.product-card--comgas .product-card__bg {
  background: linear-gradient(135deg,
      rgba(214, 244, 255, 0.9) 0%,
      rgba(180, 232, 255, 0.95) 50%,
      rgba(135, 206, 235, 0.85) 100%);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.product-card__image,
.product-card__info {
  position: relative;
  z-index: 1;
}

.product-card__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 260px;
}

/* Mockup de produto */
.product-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pm-bottle {
  width: 100px;
  height: 260px;
  border-radius: 38px 38px 28px 28px;
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(210, 238, 255, 0.7) 45%,
      rgba(10, 158, 214, 0.3) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 3px 0 10px rgba(255, 255, 255, 0.7),
    inset -2px 0 8px rgba(10, 158, 214, 0.1),
    0 25px 70px rgba(10, 158, 214, 0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform var(--transition-slow),
    box-shadow var(--transition-slow);
}

.pm-bottle--comgas {
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(185, 230, 255, 0.72) 45%,
      rgba(0, 212, 255, 0.35) 100%);
  box-shadow:
    inset 3px 0 10px rgba(255, 255, 255, 0.75),
    inset -2px 0 8px rgba(0, 212, 255, 0.15),
    0 25px 70px rgba(0, 212, 255, 0.3);
}

.product-card:hover .pm-bottle {
  transform: translateY(-8px) scale(1.04);
  box-shadow:
    inset 3px 0 12px rgba(255, 255, 255, 0.8),
    inset -2px 0 10px rgba(10, 158, 214, 0.15),
    0 35px 90px rgba(10, 158, 214, 0.35);
}

.pm-label {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.08em;
  z-index: 1;
}

.pm-sublabel {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  z-index: 1;
}

.pm-volume {
  /* Adicionado para o volume dentro do mockup */
  font-size: var(--size-xs);
  font-weight: 500;
  color: var(--color-text-mid);
  letter-spacing: 0.1em;
  z-index: 1;
}

.pm-shine {
  position: absolute;
  top: 6%;
  left: 12%;
  width: 20%;
  height: 50%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0) 100%);
  border-radius: var(--radius-full);
  filter: blur(4px);
}

.pm-water-level {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg,
      rgba(10, 158, 214, 0.1) 0%,
      rgba(10, 158, 214, 0.22) 100%);
  border-radius: 0 0 26px 26px;
  animation: waterWave 3s ease-in-out infinite;
}

@keyframes waterWave {
  0%, 100% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(1.02) skewX(-1deg);
  }
}

.pm-bubbles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pm-bubble {
  position: absolute;
  bottom: -8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  animation: bubbleUp 2.5s ease-in infinite;
}

.pm-bubble:nth-child(1) {
  width: 5px;
  height: 5px;
  left: 20%;
  animation-delay: 0s;
}

.pm-bubble:nth-child(2) {
  width: 3px;
  height: 3px;
  left: 45%;
  animation-delay: 0.5s;
}

.pm-bubble:nth-child(3) {
  width: 4px;
  height: 4px;
  left: 65%;
  animation-delay: 1s;
}

.pm-bubble:nth-child(4) {
  width: 3px;
  height: 3px;
  left: 35%;
  animation-delay: 1.5s;
}

.pm-bubble:nth-child(5) {
  width: 5px;
  height: 5px;
  left: 55%;
  animation-delay: 2s;
}

@keyframes bubbleUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-250px) scale(0.3);
    opacity: 0;
  }
}

.pm-shadow {
  width: 70px;
  height: 14px;
  background: radial-gradient(ellipse, rgba(10, 158, 214, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: 8px;
  filter: blur(6px);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.product-card:hover .pm-shadow {
  transform: scaleX(1.3);
  opacity: 0.6;
}

.pm-reflection {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(180deg,
      rgba(10, 158, 214, 0.15) 0%,
      transparent 100%);
  filter: blur(4px);
  transform: scaleY(-0.4);
  opacity: 0.5;
}

/* Info do produto */
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-primary);
  color: var(--color-white);
  width: fit-content;
}

.product-badge--comgas {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  /* Ajustado para Plus Jakarta Sans */
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.04em;
  /* Ajustado para Plus Jakarta Sans */
}

.product-volume-text {
  /* Renomeado para evitar conflito com .pm-volume */
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-features li {
  font-size: var(--size-sm);
  color: var(--color-text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--color-primary);
  flex-shrink: 0;
  border-radius: 2px;
}

.product-desc {
  font-size: var(--size-base);
  color: var(--color-text-mid);
  line-height: 1.7;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--size-sm);
  font-weight: 600;
  color: var(--color-primary);
  padding: 0;
  transition: gap var(--transition-base), color var(--transition-fast);
}

.product-cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-base);
}

.product-cta:hover {
  gap: 14px;
  color: var(--color-primary-dark);
}

.product-cta:hover svg {
  transform: translateX(4px);
}

.product-cta--comgas {
  color: var(--color-primary-dark);
}

/* Ajustes para o mockup de 1L */
.product-mockup--1l .pm-bottle {
  width: 120px;
  /* Um pouco mais largo */
  height: 300px;
  /* Um pouco mais alto */
  border-radius: 45px 45px 35px 35px;
}

.product-mockup--1l .pm-label {
  font-size: var(--size-2xl);
  /* Texto maior para garrafa maior */
}

.product-mockup--1l .pm-sublabel {
  font-size: var(--size-sm);
}

.product-mockup--1l .pm-volume {
  font-size: var(--size-base);
}

/* Ajustes para o pm-water-level e pm-bubbles-container dentro da garrafa de 1L */
.product-mockup--1l .pm-water-level {
  border-radius: 0 0 33px 33px;
  /* Ajustar raio da borda inferior */
}

/* ── [3] SENSORIAL ── */
.sensorial-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: var(--grad-dark);
}

.sensorial-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sensorial-wave {
  position: absolute;
  left: -10%;
  right: -10%;
  height: 300px;
  border-radius: 50%;
  opacity: 0.06;
}

.sensorial-wave-1 {
  top: -80px;
  background: var(--color-primary);
  animation: waveFloat 8s ease-in-out infinite;
}

.sensorial-wave-2 {
  top: 20%;
  background: var(--color-accent);
  animation: waveFloat 10s ease-in-out infinite reverse;
  opacity: 0.04;
}

.sensorial-wave-3 {
  bottom: -60px;
  background: var(--color-primary-light);
  animation: waveFloat 12s ease-in-out infinite;
  opacity: 0.05;
}

@keyframes waveFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

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

.sensorial-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.sensorial-block {
  background: rgba(255, 255, 255, 0.08);
  /* Um pouco mais de opacidade base */
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* Borda mais visível */
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(var(--glass-blur-lg));
  /* Usando a nova variável */
  -webkit-backdrop-filter: blur(var(--glass-blur-lg));
  transition: background var(--transition-base), transform var(--transition-slow), border-color var(--transition-base);
}

.sensorial-block:hover {
  background: rgba(255, 255, 255, 0.15);
  /* Mais opaco no hover */
  transform: translateY(-6px);
  border-color: var(--color-primary-light);
  /* Borda mais visível no hover */
}

.sensorial-icon {
  width: 60px;
  height: 60px;
  color: var(--color-primary-light);
}

.sensorial-icon svg {
  width: 100%;
  height: 100%;
}

.sensorial-number {
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

.sensorial-title {
  font-family: var(--font-display);
  font-size: var(--size-3xl);
  font-weight: 800;
  /* Ajustado para Plus Jakarta Sans */
  color: var(--color-white);
  letter-spacing: -0.04em;
  /* Ajustado para Plus Jakarta Sans */
}

.sensorial-desc {
  font-size: var(--size-base);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  flex: 1;
}

.sensorial-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.sensorial-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-primary);
  border-radius: var(--radius-full);
  transition: width 1.4s var(--ease-out-expo);
}

.sensorial-bar-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* ── [4] DIFERENCIAIS ── */
.diferenciais-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.diferencial-card {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(var(--glass-blur-md));
  /* Usando a nova variável */
  -webkit-backdrop-filter: blur(var(--glass-blur-md));
  transition: transform var(--transition-slow),
    box-shadow var(--transition-slow),
    border-color var(--transition-base),
    background var(--transition-base);
  /* Adicionado background para hover */
  cursor: default;
}

.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
  /* Borda mais visível no hover */
  background: rgba(255, 255, 255, 0.4);
  /* Levemente mais opaco no hover */
}

.diferencial-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

.diferencial-card:hover .diferencial-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.diferencial-card__icon svg {
  width: 100%;
  height: 100%;
}

.diferencial-card__title {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.diferencial-card__desc {
  font-size: var(--size-sm);
  color: var(--color-text-mid);
  line-height: 1.7;
}

/* ── [5] LIFESTYLE ── */
.lifestyle-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.lifestyle-section .section-header {
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto var(--space-2xl);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.lifestyle-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.lifestyle-card--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.lifestyle-card__media {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease-out-expo);
}

.lifestyle-card:hover .lifestyle-card__media {
  transform: scale(1.06);
}

.lifestyle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholders de imagem (remover quando tiver as imagens reais) */
.lifestyle-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-placeholder span {
  font-size: var(--size-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.lifestyle-placeholder--sport {
  background: linear-gradient(135deg, #1A2E3B, #0A9ED6);
}

.lifestyle-placeholder--gastro {
  background: linear-gradient(135deg, #0D4A6E, #0A9ED6);
}

.lifestyle-placeholder--rotina {
  background: linear-gradient(135deg, #1A3A4A, #4DC3EC);
}

.lifestyle-placeholder--nature {
  background: linear-gradient(135deg, #0A2E3E, #00D4FF);
}

.lifestyle-placeholder--lifestyle {
  background: linear-gradient(135deg, #1A2E3B, #0880B0);
}

.lifestyle-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 30, 50, 0.85) 0%,
      rgba(10, 30, 50, 0.2) 50%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lifestyle-card:hover .lifestyle-card__overlay {
  opacity: 1;
}

.lifestyle-card__tag {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 6px;
}

.lifestyle-card__title {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
}

/* ── [6] CTA FINAL ── */
.cta-section {
  position: relative;
  padding: var(--space-3xl) var(--container-pad);
  overflow: hidden;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-wave {
  position: absolute;
  left: -20%;
  right: -20%;
  height: 400px;
  border-radius: 50%;
  opacity: 0.12;
}

.cta-wave-1 {
  top: -100px;
  background: rgba(255, 255, 255, 0.5);
  animation: waveFloat 10s ease-in-out infinite;
}

.cta-wave-2 {
  bottom: -100px;
  background: rgba(255, 255, 255, 0.3);
  animation: waveFloat 14s ease-in-out infinite reverse;
}

.cta-bottle-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 420px;
  opacity: 0.15;
  pointer-events: none;
}

.cta-bottle-inner {
  width: 100%;
  height: 100%;
  border-radius: 60px 60px 50px 50px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: ctaBottleFloat 5s ease-in-out infinite;
}

.cta-bottle-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(20px);
}

@keyframes ctaBottleFloat {
  0%, 100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  /* Ajustado para Plus Jakarta Sans */
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.04em;
  /* Ajustado para Plus Jakarta Sans */
  margin-bottom: var(--space-md);
}

.cta-headline em {
  font-style: italic;
  font-weight: 700;
  /* Ajustado para Plus Jakarta Sans */
  opacity: 0.85;
}

.cta-subtext {
  font-size: var(--size-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.btn-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  /* Menos opaco */
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  /* Borda mais suave */
  border-radius: var(--radius-xl);
  backdrop-filter: blur(var(--glass-blur-sm));
  /* Usando a nova variável */
  -webkit-backdrop-filter: blur(var(--glass-blur-sm));
  transition: all var(--transition-base);
}

.btn-product:hover {
  background: rgba(255, 255, 255, 0.2);
  /* Mais opaco no hover */
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  /* Borda mais visível no hover */
}

.btn-product__icon {
  width: 36px;
  height: 36px;
  color: var(--color-white);
  flex-shrink: 0;
}

.btn-product__icon svg {
  width: 100%;
  height: 100%;
}

.btn-product__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.btn-product__name {
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.btn-product__sub {
  font-size: var(--size-xs);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.cta-locator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--size-sm);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-locator:hover {
  color: var(--color-white);
}

.cta-locator svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  background: #19313f;
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem;
  border-top: 2px solid var(--color-primary);
}

.footer-container {
  width: min(100% - 3rem, 1280px);
  margin: 0 auto;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.footer-logo-img {
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-brand-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.social-link {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition-base);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  transform: translateY(-2px);
}

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

.footer-nav-title {
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: var(--size-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-primary-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--size-xs);
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: var(--size-xs);
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {

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

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

  .lifestyle-card--large {
    grid-column: span 2;
  }

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

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-height: calc(100vh - 70px);
    padding: 5rem 1.5rem 3rem;
    background: rgba(240, 248, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links .nav-link {
  font-size: 1.25rem;
  font-weight: 600;
}

  .nav-links .nav-link.nav-cta {
  padding: .7rem 1.5rem;
}

  .nav-links .nav-link {
    font-size: var(--size-xl);
    font-weight: 500;
  }

  .nav-toggle {
    display: flex;
    z-index: var(--z-nav);
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  .hero-bottles {
    flex-direction: row;
    gap: 1.5rem;
  }

  .bottle-placeholder {
    width: 80px;
    height: 200px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .products-grid {
    grid-template-columns: 1fr;
    /* 1 coluna em mobile */
  }

  .sensorial-blocks,
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

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

  .lifestyle-card--large {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

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

  .cta-bottle-deco {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  /* Ajustes para o mockup de 1L em mobile */
  .product-mockup .pm-bottle {
    width: 90px;
    height: 220px;
  }

  .product-mockup--1l .pm-bottle {
    width: 100px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 90px;
  }

  .hero-headline {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

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

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

/* ── Delay helpers para animações ── */
[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="150"] {
  transition-delay: 0.15s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

[data-delay="500"] {
  transition-delay: 0.5s;
}

/* ── Seleção de texto ── */
::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ── Scrollbar customizada ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* =========================================================
   ÁGUA LIFE — REDESIGN 2026
   Direção: editorial, leve, premium e orientada ao produto
   ========================================================= */

:root {
  --life-blue: #087fca;
  --life-blue-deep: #07588d;
  --life-cyan: #57d4ee;
  --life-ink: #102c3d;
  --life-soft: #f4faff;
  --life-line: rgba(16, 44, 61, .10);
  --life-white: #fff;
  --life-shadow: 0 24px 70px rgba(16, 55, 78, .12);
}

body {
  background: #f4faff;
  background-image: none;
}

/* ---------- Header ---------- */
.site-header {
  padding: 1rem 0;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(16, 44, 61, .06);
}

.site-header.is-scrolled {
  padding: .72rem 0;
  background: rgba(255, 255, 255, .9);
}

.nav-logo-img {
  height: 54px;
}

.site-header.is-scrolled .nav-logo-img {
  height: 40px;
}

.nav-link {
  color: #29495d;
}

.nav-link.nav-cta {
  background: #0a86c7;
}

/* ---------- HERO / SLIDER ---------- */
.hero-slider {
  min-height: 100svh;
  height: max(720px, 100svh);
  position: relative;
  overflow: hidden;
  background: #dff3fb;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .9s ease, transform 1.4s cubic-bezier(.16, 1, .3, 1), visibility 0s linear .9s;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.015);
}

.hero-slide.is-active .hero-slide__media {
  animation: heroKenBurns 9s ease-out both;
}

.hero-slide--one .hero-slide__media {
  background-image:
    linear-gradient(90deg, rgba(232, 248, 255, .97) 0%, rgba(232, 248, 255, .78) 38%, rgba(232, 248, 255, .18) 72%, rgba(232, 248, 255, .04) 100%),
    url('../images/banner-life1.jpg');
  background-position: center;
}

.hero-slide--two .hero-slide__media {
  background-image:
    linear-gradient(90deg, rgba(19, 114, 155, 0.97) 0%, rgba(0, 108, 155, 0.78) 38%, rgba(232, 248, 255, .18) 72%, rgba(232, 248, 255, .04) 100%),
    url('../images/banner-life2.jpg');
  background-position: center;
}

.hero-slide--three .hero-slide__media {
  background-image:
    linear-gradient(90deg, rgba(247, 252, 255, .98) 0%, rgba(247, 252, 255, .9) 42%, rgba(247, 252, 255, .18) 78%, rgba(247, 252, 255, .02) 100%),
    url('../images/banner-life3.jpg');
  background-position: 65% center;
  filter: saturate(.9);
}

.hero-slide--four .hero-slide__media {
  background-image:
    linear-gradient(90deg, rgba(19, 114, 155, 0.97) 0%, rgba(0, 108, 155, 0.78) 38%, rgba(232, 248, 255, .18) 72%, rgba(232, 248, 255, .04) 100%),
    url('../images/banner-life4.jpg');
  background-position: 65% center;
  filter: saturate(.9);
}

.hero-slide__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 25%, rgba(255, 255, 255, .32), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 62, 94, .06));
  pointer-events: none;
}

.hero-slide__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 49, 71, .02), rgba(7, 49, 71, .06));
}

.hero-slide--two .hero-slide__veil {
  background: linear-gradient(90deg, rgba(0, 32, 55, .28), rgba(0, 64, 93, .05) 70%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(620px, 100%);
  padding-top: 5rem;
  color: var(--life-ink);
}

.hero-copy--light {
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #267fa9;
}

.hero-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.hero-copy--light .hero-kicker {
  color: rgba(255, 255, 255, .78);
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 650px;
  font-size: clamp(3.2rem, 6.3vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 500;
  margin: 0;
}

.hero-copy h1 strong,
.hero-copy h2 strong {
  font-weight: 800;
  color: #067fc6;
}

.hero-copy--light h2 strong {
  color: #fe984a;
}

.hero-copy p {
  max-width: 510px;
  margin: 1.65rem 0 2rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  color: #395b6e;
}

.hero-copy--light p {
  color: rgba(255, 255, 255, .82);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .95rem;
  font-weight: 700;
  color: #087fca;
  border-bottom: 1px solid rgba(8, 127, 202, .38);
  padding-bottom: .45rem;
}

.hero-link span {
  transition: transform .35s ease;
}

.hero-link:hover span {
  transform: translate(4px, -3px);
}

.hero-copy--light .hero-link {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.hero-slider__controls {
  position: absolute;
  z-index: 5;
  left: max(1.5rem, calc((100% - 1280px) / 2));
  bottom: 2.6rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 44, 61, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .68);
  color: #12374a;
  cursor: pointer;
  font: inherit;
  backdrop-filter: blur(10px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(16, 44, 61, .25);
}

.hero-dot {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(16, 44, 61, .18);
  cursor: pointer;
  transition: width .35s ease, background .35s ease;
}

.hero-dot.is-active {
  width: 52px;
  background: #0a86c7;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.hero-progress {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(16, 44, 61, .08);
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #0a86c7;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1);
  }
}

/* ---------- PRODUTOS ---------- */
.products-modern {
  padding: 8rem 0 9rem;
  background: #fff;
}

.products-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .65fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 4rem;
}

.products-heading .section-title {
  margin: 0;
}

.products-heading>p {
  max-width: 470px;
  margin: 0 0 .2rem auto;
  color: #5b7180;
  font-size: 1.03rem;
  line-height: 1.8;
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-feature {
  position: relative;
  min-height: 680px;
  padding: 1.4rem 1.45rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(16, 44, 61, .08);
  box-shadow: var(--life-shadow);
  isolation: isolate;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s ease;
}

.product-feature:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 80px rgba(16, 55, 78, .17);
}

.product-feature--still {
  background: linear-gradient(160deg, #f6fbfe 0%, #e7f5fc 55%, #d4edf8 100%);
}

.product-feature--sparkling {
  background: linear-gradient(160deg, #0879be 0%, #0a9fda 52%, #7bdcf3 100%);
}

.product-feature__top,
.product-feature__bottom {
  position: relative;
  z-index: 2;
}

.product-feature__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.product-index {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(16, 44, 61, .44);
}

.product-type {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(16, 44, 61, .6);
}

.product-feature--sparkling .product-index,
.product-feature--sparkling .product-type {
  color: rgba(255, 255, 255, .72);
}

.product-feature__visual {
  position: relative;
  flex: 1;
  min-height: 410px;
  display: grid;
  place-items: center;
}

.product-feature__visual img {
  position: relative;
  z-index: 2;
  width: min(56%, 270px);
  max-height: 490px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(9, 52, 76, .17));
  transition: transform .65s cubic-bezier(.16, 1, .3, 1);
}

.product-feature:hover .product-feature__visual img {
  transform: translateY(-9px) scale(1.035);
}

.product-halo {
  position: absolute;
  width: min(72%, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .45) 42%, transparent 70%);
}

.product-feature--sparkling .product-halo {
  background: radial-gradient(circle, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, .18) 43%, transparent 70%);
}

.product-bubbles {
  position: absolute;
  inset: 15% 15%;
  z-index: 1;
  pointer-events: none;
}

.product-bubbles i {
  position: absolute;
  bottom: 18%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  animation: productBubble 4.2s ease-in infinite;
}

.product-bubbles i:nth-child(1) {
  left: 24%;
  animation-delay: .2s;
}

.product-bubbles i:nth-child(2) {
  left: 38%;
  width: 11px;
  height: 11px;
  animation-delay: 1.1s;
}

.product-bubbles i:nth-child(3) {
  left: 55%;
  animation-delay: 1.8s;
}

.product-bubbles i:nth-child(4) {
  left: 67%;
  width: 5px;
  height: 5px;
  animation-delay: .8s;
}

.product-bubbles i:nth-child(5) {
  left: 47%;
  width: 8px;
  height: 8px;
  animation-delay: 2.2s;
}

@keyframes productBubble {
  0% {
    transform: translateY(35px) scale(.8);
    opacity: 0;
  }

  15% {
    opacity: .8;
  }

  85% {
    opacity: .24;
  }

  100% {
    transform: translateY(-180px) scale(1.15);
    opacity: 0;
  }
}

.product-feature__bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(16, 44, 61, .11);
}

.product-feature--sparkling .product-feature__bottom {
  border-color: rgba(255, 255, 255, .22);
}

.product-feature__bottom h3 {
  margin: 0 0 .35rem;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 700;
  color: #102c3d;
}

.product-feature__bottom p {
  max-width: 410px;
  margin: 0;
  color: #577080;
  font-size: .96rem;
  line-height: 1.7;
}

.product-feature--sparkling .product-feature__bottom h3 {
  color: #fff;
}

.product-feature--sparkling .product-feature__bottom p {
  color: rgba(255, 255, 255, .78);
}

.product-feature__link {
  flex: 0 0 auto;
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  font-size: .83rem;
  font-weight: 800;
  color: #087fca;
  text-transform: uppercase;
  letter-spacing: .11em;
  white-space: nowrap;
}

.product-feature__link span {
  transition: transform .3s ease;
}

.product-feature__link:hover span {
  transform: translate(3px, -3px);
}

.product-feature--sparkling .product-feature__link {
  color: #fff;
}

/* ---------- ORIGEM ---------- */
.origin-section {
  position: relative;
  overflow: hidden;
  padding: 9rem 0;
  color: #fff;
  background: #092536;
}

.origin-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.origin-glow--one {
  width: 500px;
  height: 500px;
  top: -220px;
  right: -120px;
  background: rgba(32, 183, 229, .2);
}

.origin-glow--two {
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: -120px;
  background: rgba(10, 127, 202, .18);
}

.origin-intro {
  max-width: 770px;
}

.origin-title {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 500;
}

.origin-title em {
  font-style: normal;
  color: #61d5ee;
  font-weight: 800;
}

.origin-intro>p {
  max-width: 690px;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.06rem;
  line-height: 1.85;
}

.origin-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 6rem;
}

.origin-line {
  position: absolute;
  top: 25px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 218, 239, .55), transparent);
}

.origin-step {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.origin-step>span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: #092536;
  color: #62d7ef;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.origin-step small {
  display: block;
  margin-bottom: .45rem;
  color: rgba(255, 255, 255, .42);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .68rem;
  font-weight: 800;
}

.origin-step h3 {
  margin: 0 0 .5rem;
  font-size: 1.55rem;
  letter-spacing: -.03em;
}

.origin-step p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}

.origin-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 5rem;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .10);
}

.origin-fact {
  padding: 1.45rem 1.6rem;
  background: rgba(255, 255, 255, .025);
}

.origin-fact strong {
  display: block;
  font-size: 1rem;
  margin-bottom: .35rem;
}

.origin-fact span {
  color: rgba(255, 255, 255, .52);
  font-size: .88rem;
  line-height: 1.55;
}

/* ---------- DIFERENCIAIS ---------- */
.differentiials-modern {
  padding: 9rem 0;
  background: #f4faff;
}

.differentials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .55fr);
  column-gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}

.differentials-heading .section-eyebrow {
  grid-column: 1 / -1;
}

.differentials-heading .section-title {
  margin: 0;
}

.differentials-heading .section-subtitle {
  margin: 0;
  max-width: 440px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--life-line);
}

.differential-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 1rem;
  padding: 2.2rem 1rem 2.2rem 0;
  border-bottom: 1px solid var(--life-line);
}

.differential-item:nth-child(odd) {
  padding-right: 3rem;
  border-right: 1px solid var(--life-line);
}

.differential-item:nth-child(even) {
  padding-left: 3rem;
}

.differential-item>span {
  color: #61a6c6;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding-top: .25rem;
}

.differential-item h3 {
  margin: 0 0 .45rem;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.differential-item p {
  margin: 0;
  max-width: 420px;
  color: #607785;
  line-height: 1.7;
}

/* ---------- CTA ---------- */
.cta-modern {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background: linear-gradient(135deg, #0569aa 0%, #0c9bd4 55%, #45cfe8 100%);
}

.cta-modern::before,
.cta-modern::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
}

.cta-modern::before {
  width: 620px;
  height: 620px;
  right: -160px;
  top: -280px;
}

.cta-modern::after {
  width: 420px;
  height: 420px;
  left: -150px;
  bottom: -260px;
}

.cta-modern__shine {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 10%;
  bottom: -280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  filter: blur(20px);
}

.cta-modern__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-modern h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6.4vw, 4rem);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 500;
}

.cta-modern h2 em {
  font-style: normal;
  font-weight: 800;
}

.cta-modern p {
  margin: 1.4rem 0 2.2rem;
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
}

.cta-modern__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.cta-choice {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem 1.2rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.cta-choice span {
  transition: transform .3s ease;
}

.cta-choice:hover {
  background: rgba(255, 255, 255, .17);
}

.cta-choice:hover span {
  transform: translate(3px, -3px);
}

.cta-choice--light {
  background: #fff;
  color: #087fca;
  border-color: #fff;
}

.cta-choice--light:hover {
  background: #f1fbff;
}

/* ---------- REMOVE LEGACY EFFECTS FROM OLD BUILD ---------- */
#particleCanvas,
.cursor-dot,
.cursor-ring,
.hero-floaters,
.hero-waves-top,
.hero-waves-bottom,
.scroll-indicator {
  display: none !important;
}

/* ---------- ACCESSIBILITY / MOBILE ---------- */
@media (max-width: 900px) {
  .hero-slider {
    height: 760px;
    min-height: 760px;
  }

  .hero-copy {
    max-width: 610px;
    padding-top: 6rem;
  }

  .hero-copy h1, .hero-copy h2 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-slide--one .hero-slide__media,
  .hero-slide--three .hero-slide__media {
    background-position: 62% center;
  }

  .products-heading,
  .differentials-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-heading>p {
    margin-left: 0;
  }

  .product-feature {
    min-height: 620px;
  }

  .origin-journey {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .origin-line {
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(106, 218, 239, .55), transparent);
  }

  .origin-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1.2rem;
    padding-top: 0;
  }

  .origin-step>span {
    margin: 0;
  }

  .origin-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: .72rem 0;
  }

  .nav-logo-img {
    height: 44px;
  }

  .site-header.is-scrolled .nav-logo-img {
    height: 36px;
  }

  .hero-slider {
    height: 720px;
    min-height: 720px;
  }

  .hero-slide__content {
    align-items: flex-end;
    padding-bottom: 5.8rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1, .hero-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .hero-copy p {
    max-width: 390px;
    font-size: .96rem;
    line-height: 1.65;
  }

  .hero-slider__controls {
    left: 1.5rem;
    bottom: 1.45rem;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .products-modern,
  .differentiials-modern,
  .origin-section,
  .cta-modern {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

  .product-feature {
    min-height: 580px;
    padding: 1.1rem;
    border-radius: 26px;
  }

  .product-feature__visual {
    min-height: 350px;
  }

  .product-feature__visual img {
    width: min(64%, 245px);
    max-height: 390px;
  }

  .product-feature__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .differential-item,
  .differential-item:nth-child(odd),
  .differential-item:nth-child(even) {
    grid-template-columns: 45px 1fr;
    padding: 1.5rem 0;
    border-right: 0;
  }

  .origin-title {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .cta-modern h2 {
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* =========================================================
   MODAL — FALE CONOSCO
   ========================================================= */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.contact-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 27, 38, 0.72);
  backdrop-filter: blur(8px);
}

.contact-modal__box {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  padding: 2.8rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.contact-modal.is-open .contact-modal__box {
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f2f6f8;
  color: #19313f;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-modal__close:hover {
  background: #e5edf1;
}

.contact-modal__eyebrow {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-modal__box h2 {
  margin: 0;
  color: #19313f;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.15;
}

.contact-modal__box>p {
  margin: 0.9rem 0 1.8rem;
  color: #657680;
  line-height: 1.6;
}

.contact-modal__items {
  display: grid;
  gap: 0.8rem;
}

.contact-modal__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f5f9fb;
  border-radius: 14px;
}

.contact-modal__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 700;
}

.contact-modal__item span {
  display: block;
  margin-bottom: 0.2rem;
  color: #82919a;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-modal__item strong {
  display: block;
  color: #19313f;
  font-size: 0.95rem;
  font-weight: 600;
}

body.contact-modal-open {
  overflow: hidden;
}

@media (max-width: 480px) {

  .contact-modal__box {
    padding: 2.2rem 1.4rem;
    border-radius: 20px;
  }

}