/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dark:   #9a7230;
  --cream:       #f5f0e8;
  --cream-dark:  #ede5d5;
  --cream-cta:   #e5cba3;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --white:       #ffffff;
  --gray-light:  #f9f7f4;
  --gray-mid:    #888880;
  --text-dark:   #1c1c1c;
  --text-vine:   #6b0000;
  --text-light:  rgba(255,255,255,0.85);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  /* ✅ FIX: variável central para padding lateral das seções */
  --section-px: clamp(20px, 5vw, 80px);
}

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

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  /* cursor: none; */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* =============================================
   CURSOR
============================================= */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 300ms var(--ease-out),
              height 300ms var(--ease-out),
              background 300ms;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 200ms var(--ease-out);
}

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  /* ✅ FIX: padding simétrico via variável */
  padding: 28px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 500ms var(--ease-out),
              padding 400ms var(--ease-out);
}

.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  padding: 18px var(--section-px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cream);
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  border-radius: 16px;
  border: 1px solid rgba(154, 114, 108, 0.24);
  background: rgba(154, 114, 108, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 300ms;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 400ms var(--ease-out);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 26px;
  border-radius: 2px;
  transition: background 300ms, color 300ms;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

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

.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform 300ms, opacity 300ms;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =============================================
   FLOAT CTA
============================================= */
.float-cta {
  position: fixed;
  bottom: 36px; right: 40px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms, transform 400ms var(--ease-out);
  pointer-events: none;
}

.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(201,168,76,0.35);
  transition: background 300ms, transform 200ms;
}

.float-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.float-cta svg {
  width: 14px;
  height: 14px;
  transform: translateX(5px);
}

/* =============================================
   [01] HERO
============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.45)),
              url("../images/bg-chopp.jpg") no-repeat center center;
  background-size: cover;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.1) 100%
  );
}

.hero-image-wrap {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 46vw;
  max-width: 680px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 90%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 0 80px rgba(201,168,76,0.18));
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1.2s var(--ease-out), opacity 1s;
}

.hero-image.loaded {
  transform: translateY(0);
  opacity: 0.92;
}

/* ✅ FIX PRINCIPAL: hero-content centralizado com padding simétrico */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  /* padding lateral simétrico — remove o padding fixo de 60px de antes */
  padding: 0 var(--section-px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-size: 1.0rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 640px;
  opacity: 0;
  transform: translateY(24px);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  z-index: 3;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(201,168,76,0.8), transparent);
  animation: scrollLine 2s 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; }
}

.hero-badge {
  position: absolute;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  z-index: 3;
  width: 150px; height: 150px;
  opacity: 0;
}

.hero-badge svg {
  width: 100%; height: 100%;
  animation: rotateBadge 12s linear infinite;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =============================================
   BOTÕES GLOBAIS
============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 300ms, transform 200ms, box-shadow 300ms;
  box-shadow: 0 4px 30px rgba(201,168,76,0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.4);
}

.btn-ghost {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 300ms;
}

.btn-ghost:hover { color: var(--gold); }

.btn-ghost-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 300ms;
}

.btn-ghost:hover .btn-ghost-icon { border-color: var(--gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 6px;
  transition: gap 300ms, border-color 300ms, color 300ms;
}


/* =============================================
   REVEALS
============================================= */
.reveal       { opacity: 0; transform: translateY(40px); }
.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(0.94); }

.section-label {
  font-size: 0.80rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}

/* =============================================
   [02] BRAND
============================================= */
/* ✅ FIX: padding via variável, sem valor fixo */
.brand {
  padding: 160px var(--section-px);
  background: var(--cream);
  overflow: hidden;
}

.brand-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.brand-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.brand-headline em {
  font-style: italic;
  color: var(--gold-dark);
}

.brand-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #555;
  font-weight: 300;
  max-width: 440px;
}

.brand-metrics {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}

.brand-right { position: relative; }

.brand-visual {
  width: 100%;
  aspect-ratio: 3/4;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.2) 0%, transparent 60%),
    linear-gradient(160deg, #1a1510 0%, #2a1f0e 100%);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.brand-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.15) 0%, transparent 70%);
  z-index: 1;
}

.brand-tag {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  padding: 20px 28px;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

/* =============================================
   [03] PRODUTOS
   ✅ FIX COMPLETO desta seção
============================================= */
.products {
  padding: 160px var(--section-px);
  background: var(--dark);
  overflow: hidden;
}

/* ✅ FIX: header centralizado e simétrico */
.products-header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.products-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  max-width: 480px;
}

.products-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.products-intro {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 300px;
  font-weight: 300;
}

/* ✅ FIX: product-item centralizado com grid simétrico */
.product-item {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.product-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.product-item.reverse .product-visual { order: 2; }
.product-item.reverse .product-info  { order: 1; }

/* ✅ FIX: visual do produto centralizado sem posição absoluta solta */
.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.product-visual img {
    display: block;
    max-width: 85%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 2;

    filter:
        drop-shadow(0 35px 60px rgba(0,0,0,.45))
        drop-shadow(0 0 35px rgba(201,168,76,.12));

    transition:
        transform .6s ease,
        filter .6s ease;
}
.product-visual::after{
    content: '';

    position: absolute;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    width: 220px;
    height: 40px;

    background:
        radial-gradient(
            ellipse,
            rgba(0,0,0,.55) 0%,
            rgba(0,0,0,.25) 50%,
            transparent 80%
        );

    filter: blur(18px);

    z-index: 0;

    pointer-events: none;
}

.product-visual:hover img { transform: scale(1.04); }

.product-visual-glow{
    position:absolute;

    left:50%;
    bottom:50px;

    transform:translateX(-50%);

    width:500px;
    height:500px;

    background:
        radial-gradient(
            circle,
            rgba(201,168,76,.22) 0%,
            rgba(201,168,76,.10) 40%,
            transparent 75%
        );

    filter:blur(40px);

    opacity:.9;

    pointer-events:none;

    z-index:1;
}

.product-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  z-index: 4;
}

/* ✅ FIX: info do produto não vaza para fora */
.product-info {
  width: 100%;
  max-width: 100%;
}

.product-number {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(201,168,76,0.4);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.product-name img {
  width: auto;
  display: block;
}

.product-name em {
  font-style: italic;
  color: var(--gold-light);
}

.product-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 100%;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
  min-height: 150px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.feature-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes growlerFloatLeft{
    0%{
        transform: translateY(0px) rotate(-2deg);
    }

    50%{
        transform: translateY(-12px) rotate(-2deg);
    }

    100%{
        transform: translateY(0px) rotate(-2deg);
    }
}

@keyframes growlerFloatRight{
    0%{
        transform: translateY(0px) rotate(2deg);
    }

    50%{
        transform: translateY(-12px) rotate(2deg);
    }

    100%{
        transform: translateY(0px) rotate(2deg);
    }
}
.product-item:not(.reverse) .product-visual img{
    animation: growlerFloatLeft 7s ease-in-out infinite;
}

.product-item.reverse .product-visual img{
    animation: growlerFloatRight 7s ease-in-out infinite;
}
.product-item:hover .product-visual img{
    filter:
        drop-shadow(0 45px 80px rgba(0,0,0,.55))
        drop-shadow(0 0 50px rgba(201,168,76,.18));
}

/* =============================================
   [04] DIFERENCIAIS
============================================= */
.diferenciais {
  padding: 120px var(--section-px);
  background: var(--cream);
  background-image: url(../images/gravura.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  overflow: hidden;
}

.diferenciais-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.diferenciais-header {
  text-align: center;
  margin-bottom: 100px;
}

.diferenciais-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  max-width: 600px;
  margin: 0 auto 20px;
}

.diferenciais-headline em {
  font-style: italic;
  color: var(--gold-dark);
}

.diferenciais-sub {
  font-size: 0.9rem;
  color: #888;
  font-weight: 300;
  letter-spacing: 0.03em;
}

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

.diff-item {
  padding: 56px 44px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: background 400ms;
}

.diff-item:nth-child(even) { background: var(--white); }
.diff-item:hover { background: var(--white); }

.diff-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 500ms var(--ease-out);
}

.diff-item:hover::after { width: 100%; }

.diff-icon {
  width: 48px; height: 48px;
  margin-bottom: 28px;
  color: var(--gold-dark);
}

.diff-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.diff-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: #777;
  font-weight: 300;
}

.diff-number {
  position: absolute;
  top: 24px; right: 30px;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  user-select: none;
}

/* =============================================
   [05] IMERSIVA
============================================= */
/* =============================================
   SEÇÃO IMERSIVA
============================================= */
.immersive {
  position: relative;
  width: 100%;
  min-height: 80vh; /* Altura mínima para a seção */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark); /* Fundo padrão */
  color: var(--cream);
  padding: 80px 0; /* Padding vertical */
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 0; /* Fica no fundo */
  /* Adicione aqui os estilos para suas partículas, se houver */
}

.immersive-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-width); /* Limita a largura do conteúdo */
  width: 100%;
  padding: 0 var(--section-px);
  gap: 60px; /* Espaçamento entre as colunas */
  position: relative;
  z-index: 1; /* Conteúdo acima das partículas */
}

.immersive-content {
  flex: 1; /* Ocupa o espaço disponível */
  max-width: 600px; /* Limita a largura do texto */
  text-align: left;
}

.immersive-line {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 20px;
}

.section-label {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  display: block;
}

.immersive-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--cream);
}

.immersive-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.immersive-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 35px;
}

.immersive-visual {
  flex: 1; /* Ocupa o espaço disponível */
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px; /* Limita a largura da imagem */
}

.immersive-product-img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); /* Sombra para efeito 3D */
}

/* Responsividade */
@media (max-width: 992px) {
  .immersive-container {
    flex-direction: column; /* Empilha as colunas no mobile */
    text-align: center;
    gap: 40px;
  }

  .immersive-content {
    max-width: 100%; /* Ocupa a largura total */
  }

  .immersive-line {
    margin: 0 auto 20px; /* Centraliza a linha */
  }

  .immersive-visual {
    max-width: 80%; /* Reduz o tamanho da imagem no mobile */
  }
}

/* =============================================
   [06] GALERIA
============================================= */
.gallery {
  padding: 160px var(--section-px);
  background: var(--dark-2);
  overflow: hidden;
}

.gallery-header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 80px;
}

.gallery-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}

.gallery-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.gallery-grid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark-3);
}

.gallery-item:nth-child(1) { grid-column: 1 / 6;  grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9;  grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 6 / 9;  grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 1 / 5;  grid-row: 3 / 4; }
.gallery-item:nth-child(7) { grid-column: 5 / 9;  grid-row: 3 / 4; }
.gallery-item:nth-child(8) { grid-column: 9 / 13; grid-row: 3 / 4; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 400ms;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(10,10,10,0.5);
}

.gallery-expand {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 300ms, transform 300ms var(--ease-out);
  color: var(--cream);
}

.gallery-item:hover .gallery-expand {
  opacity: 1;
  transform: scale(1);
}

.gallery-expand svg { width: 28px; height: 28px; }

/* =============================================
   [07] PROVA SOCIAL
============================================= */
.social-proof {
  padding: 160px var(--section-px);
  background: var(--cream);
  overflow: hidden;
}

.social-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.social-header {
  text-align: center;
  margin-bottom: 100px;
}

.social-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
  max-width: 480px;
  margin: 0 auto 16px;
}

.social-headline em {
  font-style: italic;
  color: var(--gold-dark);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 80px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}

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

.testi-card {
  padding: 40px 36px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
  position: relative;
  transition: transform 400ms var(--ease-out), box-shadow 400ms;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}

.testi-quote {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  user-select: none;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testi-stars svg { width: 14px; height: 14px; fill: var(--gold); }

.testi-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  display: block;
}

.testi-role {
  font-size: 0.72rem;
  color: #999;
  font-weight: 300;
}

/* =============================================
   [08] CTA FINAL
============================================= */
.cta-final {
  padding: 120px var(--section-px);
  background: var(--cream-cta);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 50% 50%,
    rgba(201,168,76,0.08) 0%,
    transparent 70%
  );
}

.cta-final-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.cta-headline em {
  font-style: italic;
  color: var(--text-vine);
}

.cta-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 56px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 80px auto 0;
}

/* =============================================
   [09] FOOTER
============================================= */
.footer {
  background: var(--dark);
  padding: 80px var(--section-px) 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 20px;
  display: block;
}

.footer-logo span { color: var(--gold); }

.footer-brand-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 28px;
}

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

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: border-color 300ms, color 300ms;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  transition: color 300ms;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  opacity: 0.7;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.footer-copy span { color: rgba(201,168,76,0.5); }

/* =============================================
   LIGHTBOX
============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,5,5,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms;
  backdrop-filter: blur(20px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  color: var(--cream);
  transition: border-color 300ms, color 300ms;
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-close svg { width: 18px; height: 18px; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

/* =============================================
   MOBILE MENU
============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color 300ms;
}

.mobile-menu-links a:hover { color: var(--gold); }

/* =============================================
   VOLUMES / FORMATOS
============================================= */
.volumes {
  position: relative;
  padding: 160px var(--section-px);
  background: var(--dark);
  overflow: hidden;
}

.volumes-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(201,168,76,0.04) 0%, transparent 55%);
}

.volumes-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.volumes-header {
  max-width: 540px;
  margin-bottom: 80px;
}

.volumes-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.volumes-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.volumes-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  max-width: 420px;
}

.volumes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  width: 100%;
}

.volume-card {
  position: relative;
  padding: 48px 24px 36px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 400ms var(--ease-out),
              border-color 400ms var(--ease-out),
              transform 400ms var(--ease-out);
  cursor: default;
}

.volume-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-6px);
  z-index: 2;
}

.volume-card.featured {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.3);
}

.volume-card.featured:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
}

.volume-badge-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  white-space: nowrap;
}

.volume-icon-wrap {
  position: relative;
  /* width: 80px;
  height: 90px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.volume-icon {
  width: 100%;
  height: 100%;
  color: rgba(201,168,76,0.55);
  transition: color 400ms;
}

.volume-card:hover .volume-icon,
.volume-card.featured .volume-icon {
  color: var(--gold);
}

.volume-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.2) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms;
}

.volume-card:hover .volume-glow,
.volume-card.featured .volume-glow {
  opacity: 1;
}

.volume-liters {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.volume-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.volume-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}

.volume-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px;
  border-radius: 2px;
  white-space: nowrap;
  transition: border-color 400ms, background 400ms;
}

.volume-card:hover .volume-tag,
.volume-card.featured .volume-tag {
  border-color: rgba(201,168,76,0.6);
  background: rgba(201,168,76,0.08);
}

.volumes-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  background: rgba(255,255,255,0.02);
}

.volumes-cta-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  :root {
    --section-px: 30px;
  }

  .nav-links,
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-image-wrap { width: 55vw; }

  .brand-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .brand-tag { left: 0; bottom: -16px; }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 60px;
  }

  .product-item {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .product-item.reverse .product-visual,
  .product-item.reverse .product-info {
    order: unset;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

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

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

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

@media (max-width: 640px) {
  :root {
    --section-px: 20px;
  }

  .hero-headline { font-size: clamp(2.6rem, 10vw, 3.5rem); }
  .hero-image-wrap { display: none; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 100%);
  }

  .brand-metrics { grid-template-columns: 1fr 1fr; }

  .diff-grid { grid-template-columns: 1fr; }
  .diff-item { padding: 40px 28px; }

  .stats-bar { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-grid .gallery-item { aspect-ratio: 16/9; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .float-cta { right: 20px; bottom: 24px; }

  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cta-actions { flex-direction: column; }

  .volumes-grid { grid-template-columns: repeat(2, 1fr); }
  .volume-card[data-volume="growler"] { grid-column: 1 / -1; }

  .volumes-cta {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 32px 24px;
  }

   /* Embalagem do produto reduzida 50% */
  .product-visual img {
    max-width: 50%;
    margin: 0 auto;
  }

  /* Info do produto — texto alinhado à esquerda */
  .product-info {
    text-align: left;
  }

  /* Logo da linha (img dentro do product-name) — centralizada */
  .product-name {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .product-name img {
    max-height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
    align-self: center;
  }

  /* Garante que a visual do produto também centralize */
  .product-visual {
    justify-content: center;
  }

  /* Features e desc permanecem à esquerda */
  .product-desc,
  .product-features {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.palazzo-counters{
    /* max-width:1200px; */
    background-image: url(../images/bg-chopp-palazzo.jpg);
    background-size:cover;
    background-position:center;
    /* margin:120px auto; */
    padding:80px 50px;
}

.counter-intro{
    text-align:center;
    margin-bottom:80px;
}

.counter-kicker{
    display:inline-block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.85rem;
    margin-bottom:20px;
}

.counter-intro h2{
    font-size:clamp(2.5rem,5vw,4rem);
    font-family:var(--font-serif);
    font-weight:300;
    margin-bottom:20px;
    color:var(--black);
}

.counter-intro h2 span{
    color:var(--text-vine);
    font-style:italic;
}

.counter-intro p{
    max-width:700px;
    margin:0 auto;
    opacity:.75;
    line-height:1.8;
    color:#000000
}

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

.counter-card{
    text-align:center;
    padding:50px 35px;
    border:1px solid rgba(201,168,76,.15);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    transition:.4s ease;
}

.counter-card:hover{
    transform:translateY(-10px);
    border-color:rgba(201,168,76,.35);
}

.counter-number{
    font-size:4.5rem;
    font-family:var(--font-serif);
    color:var(--text-vine);
    margin-bottom:20px;
    line-height:1;
}

.counter-card h3{
    font-size:1.4rem;
    margin-bottom:15px;
    color:#000000
}

.counter-card p{
    opacity:.7;
    line-height:1.8;
    font-size:.95rem;
    color:#000000
}

@media(max-width:768px){

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

    .counter-card{
        padding:40px 30px;
    }

}
.counter-number{
    transition: transform .3s ease;
}

.counter-card:hover .counter-number{
    transform: scale(1.05);
}
.palazzo-marquee{
    width:100%;
    overflow:hidden;

    background:linear-gradient(
        90deg,
        #9a6c2f,
        #c9a84c,
        #9a6c2f
    );

    padding:22px 0;

    position:relative;
}

.marquee-track{
    display:flex;
    align-items:center;
    gap:50px;

    width:max-content;

    animation: marqueeMove 35s linear infinite;
}

.marquee-track span{

    color:#111;

    font-size:.95rem;

    font-weight:700;

    letter-spacing:.18em;

    white-space:nowrap;

    text-transform:uppercase;
}

.marquee-track span:nth-child(even){
    color:rgba(0,0,0,.35);
}
.marquee-track{
    display:flex;
    align-items:center;
    gap:50px;
    width:max-content;

    animation: marqueeMove 25s linear infinite;
}

@keyframes marqueeMove{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}
.palazzo-marquee{
    border-top:1px solid rgba(201,168,76,.15);
    border-bottom:1px solid rgba(201,168,76,.15);
}
.volumes-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: .18;
}

.volumes-overlay{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5,5,5,.32),
            rgba(5,5,5,.38),
            rgba(5,5,5,.30)
        );

    z-index: 2;
}
/* =============================================
   HERO CARROSSEL
============================================= */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh; /* Ocupa a altura total da viewport */
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Conteúdo alinhado à esquerda */
  color: var(--cream);
  position: relative;
}

.swiper-slide::before { /* Overlay escuro para melhor legibilidade do texto */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 0 var(--section-px);
  text-align: left;
}

.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: block;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

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

/* Estilos para os botões (se ainda não tiver) */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Estilos do Swiper (paginação e navegação) */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold);
  --swiper-navigation-size: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }
  .swiper-slide::before {
    background: rgba(0,0,0,0.7); /* Overlay mais escuro no mobile */
  }
  .hero-actions {
    justify-content: center;
  }
}
.swiper-slide::before { /* Overlay escuro para melhor legibilidade do texto */
  content: '';
  position: absolute;
  inset: 0;
  /* Aumentamos a opacidade do preto para 0.7 na esquerda e 0.4 no meio */
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

/* No mobile, podemos deixar ainda mais escuro se necessário */
@media (max-width: 768px) {
  .swiper-slide::before {
    background: #000000cc; /* Overlay mais escuro no mobile */
  }
}
/* =============================================
   SEÇÃO LINHA DE PRODUTOS (NOVA ESTRUTURA)
============================================= */
.products-grid-section {
  padding: 120px 0;
  background: var(--dark);
  color: var(--cream);
}

.products-header {
  text-align: center;
  max-width: 1000px; /* Aumentei a largura para o header */
  margin: 0 auto 80px;
  padding: 0 var(--section-px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-header-content {
  max-width: 600px; /* Limita a largura do título e label */
  margin-bottom: 10px;
}

.section-label {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.products-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--cream);
}

.products-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.products-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 700px; /* Limita a largura do parágrafo introdutório */
}

.products-grid-container {
  max-width: var(--max-width); /* Use sua variável de largura máxima */
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.product-pair-row {
  display: flex;
  justify-content: center; /* Centraliza os itens se houver menos de 2 */
  gap: 40px; /* Espaçamento entre os produtos na mesma linha */
  margin-bottom: 80px; /* Espaçamento entre as linhas de produtos */
}

.product-item {
  flex: 1; /* Faz com que cada produto ocupe o espaço disponível */
  min-width: 45%; /* Garante que não fiquem muito pequenos */
  display: flex;
  align-items: center;
  gap: 40px; /* Espaçamento entre visual e info dentro do item */
  padding: 40px;
  background: rgba(255,255,255,0.03); /* Fundo sutil para cada card de produto */
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Estilos para o item que ocupa a largura total (se for ímpar) */
.product-item.full-width-item {
  flex: 0 0 80%; /* Ocupa 80% da largura do container */
  max-width: 800px; /* Limita a largura máxima */
}


.product-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 2;
}

.product-visual img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4)); /* Sombra mais pronunciada */
  z-index: 1;
}

.product-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-item:hover .product-visual-glow {
  opacity: 1;
}

.product-info {
  flex: 1;
  text-align: left;
}

.product-number {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.product-name img { /* Para as imagens dos nomes dos produtos */
  max-width: 180px; /* Ajuste conforme o tamanho das suas imagens de nome */
  height: auto;
  margin-bottom: 15px;
}

.product-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.feature-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transition: transform 0.3s ease;
}

.btn-outline svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: margin-left 0.3s ease, transform 0.3s ease;
}

.btn-outline:hover svg {
  margin-left: 12px; /* Aumenta o espaçamento, "separando" o ícone */
  transform: translateX(0); /* Garante que não haja outra translação interferindo */
}

/* Ajustes para o item da direita (imagem à direita, texto à esquerda) */
.product-item-right {
  flex-direction: row-reverse; /* Inverte a ordem para imagem à direita */
}

.product-item-right .product-info {
  text-align: right;
}

.product-item-right .product-features li {
  justify-content: flex-end;
}

.product-item-right .feature-dot {
  margin-left: 10px;
  margin-right: 0;
}

/* Responsividade */
@media (max-width: 1200px) {
  .product-pair-row {
    flex-direction: column; /* Empilha os pares em telas menores */
    gap: 80px; /* Espaçamento entre os produtos empilhados */
  }
  .product-item {
    flex-direction: column; /* Empilha visual e info dentro do item */
    text-align: center;
    max-width: 600px; /* Limita a largura do item empilhado */
    margin: 0 auto; /* Centraliza o item */
  }
  .product-item-right {
    flex-direction: column; /* Reseta a direção para empilhar */
  }
  .product-item-right .product-info {
    text-align: center; /* Centraliza o texto */
  }
  .product-item-right .product-features li {
    justify-content: left; /* Centraliza as features */
  }
  .product-item-right .feature-dot {
    margin-left: 0;
    margin-right: 10px;
  }
  .product-visual {
    margin-bottom: 30px;
  }
  .product-item.full-width-item {
    flex: 0 0 100%; /* Ocupa 100% da largura em telas menores */
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .products-grid-section {
    padding: 80px 0;
  }
  .products-header {
    margin-bottom: 60px;
  }
  .product-pair-row {
    margin-bottom: 60px;
  }
  .product-item {
    padding: 30px;
    gap: 30px;
  }
  .product-name img {
    max-width: 150px;
  }
}
//* =============================================
   BRAND VIDEO
============================================= *//
.brand-visual-placeholder{
    position: relative;
    width: 100%;
    max-width: 550px;   /* ajuste conforme desejar */
    height: 750px;      /* altura do vídeo */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}
.lightning-video-bg{
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* =============================================
   SEÇÃO PRODUTOS (SEM IMAGENS GROWLER)
============================================= */
.products-grid-section {
  padding: 120px 0;
  background: var(--dark);
  color: var(--cream);
}

.products-header {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 var(--section-px);
  display: flex;
  justify-content: space-between;
  /* align-items: flex-end; */
  gap: 40px;
}

.products-header-content {
  flex-shrink: 0;
}

.products-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.products-headline em {
  font-style: italic;
  color: var(--gold-light, #d4af37);
}

.products-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.products-grid-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Linha com dois produtos lado a lado */
.product-pair-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Último produto sozinho, centralizado */
.product-pair-centered {
  grid-template-columns: 1fr;
  max-width: calc(50% - 15px); /* Mesma largura de um card do par */
}

/* =============================================
   CARD DE PRODUTO
============================================= */
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Linha dourada no topo do card ao hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.4s ease;
}

.product-card:hover::before {
  width: 100%;
}

.product-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Cabeçalho do card (número + marca + divisor + tag) */
.product-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.product-number {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  align-self: flex-start; /* Número alinhado à esquerda */
}

.product-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px; /* Altura mínima para alinhar as marcas entre os cards */
  margin-bottom: 20px;
}

.product-brand img {
  max-width: 200px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.product-card-divider {
  width: 40px;
  height: 1px;
  background: var(--gold, #c9a84c);
  margin-bottom: 15px;
  opacity: 0.6;
}

.product-tag-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.4;
}

/* Corpo do card (descrição + features + botão) */
.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1; /* Ocupa o espaço restante para alinhar os botões */
  text-align: left;
}

.product-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1; /* Empurra o botão para o final do card */
}

.product-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
}

.feature-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold, #c9a84c);
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Botão Solicitar */
.btn-outline {
  display: inline-flex;
  align-items: center;
  align-self: flex-start; /* Botão alinhado à esquerda */
  padding: 10px 22px;
  border: 1px solid var(--gold, #c9a84c);
  color: var(--gold, #c9a84c);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  stroke: currentColor;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); /* Ease com bounce */
}

.btn-outline:hover {
  background: var(--gold, #c9a84c);
  color: var(--dark, #0a0a0a);
}

.btn-outline:hover svg {
  transform: translateX(5px);
}

/* =============================================
   RESPONSIVIDADE
============================================= */
@media (max-width: 1024px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-intro {
    text-align: left;
    max-width: 100%;
  }
  .product-pair-centered {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .products-grid-section {
    padding: 80px 0;
  }
  .product-pair-row {
    grid-template-columns: 1fr; /* Empilha os cards no mobile */
  }
  .product-card {
    padding: 30px;
  }
  .product-brand img {
    max-width: 160px;
  }
}

/* =============================================
   SEÇÃO LINHAS DE CHOPP INTERATIVAS
============================================= */
.interactive-chopp-lines {
  padding: 120px 0;
  background-color: var(--dark);
  color: var(--cream);
  text-align: center;
}

.chopp-lines-header {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 var(--section-px);
}

.chopp-lines-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.chopp-lines-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.chopp-lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 3 colunas no desktop, ajusta no mobile */
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.chopp-item {
  background: rgba(255,244,212,0.9);
  /* background: rgba(255,255,255,0.04); */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  margin: 0 0 25px 0;
}

.chopp-item:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.chopp-visual-wrapper {
  position: relative;
  width: 180px; /* Largura do container visual */
  height: 150px; /* Altura do container visual */
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chopp-logo,
.chopp-glass {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.chopp-logo {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.chopp-glass {
  opacity: 0;
  transform: scale(0.8); /* Começa um pouco menor */
  z-index: 1;
}

/* Efeito de hover: esconde a logo, mostra o copo */
.chopp-item:hover .chopp-logo {
  opacity: 0;
  transform: scale(1.8); /* Logo sai um pouco maior */
}

.chopp-item:hover .chopp-glass {
  opacity: 1;
  transform: scale(1.8); /* Copo aparece no tamanho normal */
}

.chopp-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--gold);
}

.chopp-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  flex: 1; /* Para que o texto ocupe o espaço e alinhe os itens */
}

/* Responsividade */
@media (max-width: 768px) {
  .chopp-lines-grid {
    grid-template-columns: 1fr; /* Uma coluna no mobile */
  }
  .chopp-lines-header {
    margin-bottom: 50px;
  }
}
#sub-footer {
  background: linear-gradient(135deg, #c9a84c, #c9a84c);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

#sub-footer i{
  font-size: 28px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background .3s, transform .3s, box-shadow .3s;
}

.social-link:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: #080706;

    transition:
        opacity .7s ease,
        visibility .7s ease;
}

.age-gate-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(8,7,6,.78),
            rgba(8,7,6,.92)
        ),
        url("assets/images/banner-fabrica.jpg")
        center / cover;

    filter: saturate(.8);
}

.age-gate-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 520px;

    text-align: center;

    padding: 55px 45px;

    background:
        rgba(18,17,15,.88);

    border: 1px solid rgba(201,168,76,.25);

    box-shadow:
        0 40px 100px rgba(0,0,0,.55);

    backdrop-filter: blur(18px);

    border-radius: 4px;

    animation: ageGateIn .8s ease forwards;
}

.age-gate-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.age-gate-label {
    display: block;

    font-size: .65rem;
    letter-spacing: .3em;

    color: var(--gold);

    margin-bottom: 25px;
}

.age-gate-content h2 {
    margin: 0 0 20px;

    color: var(--cream);

    font-family: var(--font-serif);

    font-size: clamp(2.8rem, 6vw, 4.5rem);

    font-weight: 300;

    line-height: .95;
}

.age-gate-content h2 em {
    color: var(--gold-light);
}

.age-gate-content p {
    color: rgba(255,255,255,.55);

    font-size: .9rem;

    line-height: 1.7;

    max-width: 360px;

    margin: 0 auto 25px;
}

.age-gate-content strong {
    display: block;

    color: var(--cream);

    font-size: .85rem;

    font-weight: 400;

    margin-bottom: 28px;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.age-btn-primary {
    border: none;

    background: var(--gold);

    color: #111;

    padding: 16px 25px;

    font-size: .75rem;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    cursor: pointer;

    transition: .3s ease;
}

.age-btn-primary:hover {
    transform: translateY(-2px);

    background: var(--gold-light);

    box-shadow:
        0 12px 30px rgba(201,168,76,.2);
}

.age-btn-secondary {
    border: none;

    background: transparent;

    color: rgba(255,255,255,.4);

    padding: 10px;

    cursor: pointer;

    font-size: .7rem;
}

.age-btn-secondary:hover {
    color: var(--cream);
}

.age-gate-content small {
    display: block;

    margin-top: 28px;

    color: rgba(255,255,255,.25);

    font-size: .65rem;

    letter-spacing: .08em;
}

.age-gate.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.age-gate-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.age-gate-logo img {
    width: 130px;
    height: auto;
    display: block;
}

@keyframes ageGateIn {

    from {
        opacity: 0;
        transform: translateY(25px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}