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

:root {
  --gold: #C8922A;
  --gold-light: #E8B84B;
  --dark: #0F0A05;
  --dark-2: #1A1108;
  --dark-3: #241A0C;
  --cream: #F5EDD8;
  --cream-2: #EDE0C4;
  --text: #C8B89A;
  --white: #FAF6EE;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

a {
  color: var(--white);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 500;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(to bottom, rgba(15,10,5,0.97), transparent);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(15,10,5,0.98); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,10,5,0.98);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  z-index: 150;
}
.nav-links.open { display: flex; }
.nav-links a {
  color: var(--cream-2);
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 40%, rgba(200,146,42,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(139,69,19,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(200,146,42,0.1) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -10%;
  border-radius: 50%;
  background: rgba(200,146,42,0.15);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(-120vh) scale(0.3); opacity: 0; }
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 5rem 1.5rem 2rem;
  width: 100%;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: fadeUp 1.2s 0.2s ease both;
  opacity: 0;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeUp 1.2s 0.4s ease both;
  opacity: 0;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1rem;
  color: var(--cream-2);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 1.2s 0.6s ease both;
  opacity: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
  transition: background 0.25s;
  animation: fadeUp 1.2s 0.8s ease both;
  opacity: 0;
}
.btn-primary:hover, .btn-primary:active { background: var(--gold-light); }
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1.2s 1.2s ease both;
  opacity: 0;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── SECTION COMMONS ── */
section { padding: 4rem 1.25rem; }
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 7vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 1.5rem;
}

/* ── SOBRE NÓS ── */
.sobre {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.sobre::before {
  content: 'EVO';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(200,146,42,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.sobre-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.sobre-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
}
.sobre-text p strong { color: var(--cream); font-weight: 500; }
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.3rem;
}

/* ── SABORES ── */
.sabores {
  background: var(--dark);
  padding: 4rem 1.25rem;
}
.sabores-header {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.sabores-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(200,146,42,0.15);
}
.sabor-card {
  background: var(--dark-2);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.sabor-card:hover, .sabor-card:focus-within { background: var(--dark-3); }
.sabor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.sabor-card:hover::before { transform: scaleX(1); }
.sabor-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.sabor-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.sabor-slogan {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}
.sabor-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text);
}
.sabor-harmoniza {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200,146,42,0.2);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.sabor-harmoniza span {
  display: block;
  margin-top: 0.3rem;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ── BARRIL ── */
.barril {
  background: var(--dark-3);
  padding: 4rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.barril::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(200,146,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.barril-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.barril-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-top: 0.5rem;
}
.barril-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.barril-card {
  background: var(--dark-2);
  border: 1px solid rgba(200,146,42,0.2);
  padding: 2rem 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.barril-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.barril-card--destaque {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(200,146,42,0.07) 100%);
}
.barril-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.barril-vol {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.barril-vol span {
  font-size: 2rem;
  color: var(--gold);
  vertical-align: middle;
}
.barril-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-style: italic;
}
.barril-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.btn-barril {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-barril:hover, .btn-barril:active { background: var(--gold); color: var(--dark); }
.btn-barril--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-barril--gold:hover, .btn-barril--gold:active { background: var(--gold-light); }
.barril-cta {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(200,146,42,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  position: relative;
}
.barril-cta p {
  font-size: 0.95rem;
  color: var(--text);
}

/* ── DEPOIMENTOS ── */
.depoimentos {
  background: var(--dark-2);
  padding: 4rem 1.25rem;
}
.depoimentos-inner { max-width: 1100px; margin: 0 auto; }
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.depo-card {
  background: var(--dark-3);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(200,146,42,0.12);
}
.depo-quote {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}
.depo-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--cream-2);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.depo-author {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.depo-event { font-size: 0.72rem; color: var(--text); margin-top: 0.2rem; }

/* ── DICAS ── */
.dicas { background: var(--dark); padding: 4rem 1.25rem; }
.dicas-inner { max-width: 1100px; margin: 0 auto; }
.dicas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.dica-card {
  border: 1px solid rgba(200,146,42,0.2);
  padding: 2rem 1.5rem;
  transition: border-color 0.3s;
}
.dica-card:hover { border-color: var(--gold); }
.dica-icon { font-size: 2rem; margin-bottom: 1rem; }
.dica-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.dica-ideal {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.dica-desc { font-size: 0.88rem; line-height: 1.75; color: var(--text); }

/* ── CONTATO ── */
.contato {
  background: var(--dark-2);
  padding: 4rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(200,146,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.contato-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.form-input {
  background: rgba(200,146,42,0.05);
  border: 1px solid rgba(200,146,42,0.2);
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  width: 100%;
  min-height: 48px;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(200,184,154,0.4); }
.form-input:focus { border-color: var(--gold); background: rgba(200,146,42,0.08); }
textarea.form-input { resize: vertical; min-height: 120px; }
.contato-info { padding-top: 0; }
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.info-icon { font-size: 1.2rem; color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; }
.info-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.info-value { font-size: 0.93rem; color: var(--cream-2); line-height: 1.5; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(200,146,42,0.15);
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
}
.footer-text { font-size: 0.75rem; color: var(--cream); opacity: 1; }
.footer-social { display: flex; gap: 1rem; font-size: 20px; }
.social-link {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(250,246,238,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.25s, border-color 0.25s;
}
.social-link:hover, .social-link:active { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── TABLET (600px+) ── */
@media (min-width: 600px) {
  nav { padding: 1.2rem 2rem; }
  section { padding: 5rem 2rem; }
  .sabores { padding: 5rem 2rem; }
  .barril { padding: 5rem 2rem; }
  .sabores-grid { grid-template-columns: 1fr 1fr; }
  .barril-cards { grid-template-columns: 1fr 1fr; }
  .dicas-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .barril-cta { flex-direction: row; justify-content: space-between; text-align: left; padding: 2rem; }
  footer { flex-direction: row; justify-content: space-between; text-align: left; padding: 2.5rem 2rem; }
}

/* ── DESKTOP (960px+) ── */
@media (min-width: 960px) {
  nav { padding: 1.2rem 4rem; }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    flex-direction: row;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.12em;
    opacity: 0.8;
  }
  .nav-links a:hover { opacity: 1; color: var(--gold-light); }

  section { padding: 7rem 4rem; }
  .sabores { padding: 7rem 4rem; }
  .barril { padding: 7rem 4rem; }
  .depoimentos { padding: 7rem 4rem; }
  .dicas { padding: 7rem 4rem; }
  .contato { padding: 7rem 4rem; }

  .sobre::before { font-size: 20rem; }
  .sobre-inner { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .stat-num { font-size: 3rem; }

  .sabores-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
  .sabores-header { margin-bottom: 4rem; }

  .barril-inner { grid-template-columns: 1fr 1.4fr; gap: 6rem; }

  .depoimentos-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
  .dicas-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }

  .contato-inner { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
  .contato-info { padding-top: 6rem; }

  footer { padding: 3rem 4rem; }
  .hero-sub { font-size: 1.15rem; }
}

/* ── AGE VERIFICATION MODAL ── */
.age {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.overlay-verify {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9998;
}

.box {
  display: none;
  position: relative;
  z-index: 9999;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  max-width: 900px;
  width: calc(100% - 2rem);
  max-height: 90vh;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  margin: auto;
  flex-direction: column;
}

.box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.box-left {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
}

.box-left img {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.box-left p {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 1;
}

.box-right {
  padding: 3rem 2rem;
  text-align: center;
}

.box-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.box-right p {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.box-right .btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-alpha {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(200, 146, 42, 0.3);
}

.btn-alpha:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 146, 42, 0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

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

.btn-beta:hover {
  background: rgba(200, 184, 154, 0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.decor-line {
  position: relative;
  margin: 2rem 0;
  text-align: center;
  color: var(--text);
  opacity: 0.6;
  font-size: 0.85rem;
}

.decor-line::before,
.decor-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(200, 184, 154, 0.3);
}

.decor-line::before {
  left: 0;
}

.decor-line::after {
  right: 0;
}

.decor-line span {
  background: var(--dark-2);
  padding: 0 1rem;
  position: relative;
}

.box-right small {
  display: block;
  margin-top: 2rem;
  color: var(--text);
  opacity: 0.7;
  font-size: 0.85rem;
  font-style: italic;
}

/* Age Verification Mobile Responsive */
@media (min-width: 768px) {
  .box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    flex-direction: unset;
  }

  .box-left {
    border-bottom: none;
    border-right: 1px solid rgba(200, 146, 42, 0.2);
  }

  .box-left img {
    max-width: 250px;
  }

  .box-right {
    padding: 4rem 3rem;
  }

  .box-right h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .age {
    padding: 0.4rem;
  }

  .box {
    max-height: calc(100vh - 0.8rem);
    width: calc(100% - 0.4rem);
  }

  .box-left {
    padding: 0.9rem 0.7rem;
  }

  .box-left img {
    max-width: 110px;
    margin-bottom: 0.4rem;
  }

  .box-left p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .box-right {
    padding: 0.9rem 0.7rem;
  }

  .box-right h3 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
  }

  .box-right p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .box-right .btn {
    padding: 0.6rem 1.3rem;
    font-size: 0.75rem;
    width: 100%;
  }

  .decor-line {
    margin: 0.6rem 0;
    font-size: 0.65rem;
  }

  .box-right small {
    margin-top: 0.4rem;
    font-size: 0.65rem;
  }
}

/* Extra small screens (375px and below) */
@media (max-width: 375px) {
  .box {
    border-radius: 10px;
    max-height: calc(100vh - 0.8rem);
  }

  .box-left {
    padding: 0.75rem 0.6rem;
  }

  .box-left img {
    max-width: 90px;
    margin-bottom: 0.3rem;
  }

  .box-left p {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .box-right {
    padding: 0.75rem 0.6rem;
  }

  .box-right h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .box-right p {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
    line-height: 1.25;
  }

  .box-right .btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.7rem;
    width: 100%;
  }

  .decor-line {
    margin: 0.5rem 0;
    font-size: 0.6rem;
  }

  .box-right small {
    font-size: 0.6rem;
    margin-top: 0.3rem;
  }
}

/* Novidade popup */
#novidade-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9000;
}

#novidade-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9001;
  background: var(--dark-2);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 1rem;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

#novidade-popup img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
}

#novidade-close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
