/* ============================================
   Nhá Dita - Cachaça Artesanal
   Custom Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --color-bg-dark: #0f0e0c;
  --color-bg-section: #1a1814;
  --color-bg-card: #231f1a;
  --color-bg-card-hover: #2e2820;
  --color-amber-100: #fef3c7;
  --color-amber-200: #fde68a;
  --color-amber-300: #fcd34d;
  --color-amber-400: #d4a337;
  --color-amber-500: #b8860b;
  --color-gold: #c9a84c;
  --color-gold-light: #e0c97a;
  --color-text-primary: #f5f0e8;
  --color-text-secondary: #b5a899;
  --color-text-muted: #8a7e72;
  --color-border: #3a332b;
  --color-overlay: rgba(10, 9, 7, 0.85);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

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

body.no-scroll {
  overflow: hidden;
}

/* ---------- Age Verification Modal ---------- */
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-dark);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.age-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-modal__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.age-modal__leaves-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(15, 14, 12, 0.9), transparent);
  pointer-events: none;
}

.age-modal__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease;
}

.age-modal__logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.age-modal__tagline {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: 1px;
}

.age-modal__question {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}

.age-modal__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.age-modal__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2.5rem;
  border: 1.5px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.age-modal__btn:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

.age-modal__btn svg {
  width: 18px;
  height: 18px;
}

.age-modal__disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ---------- Sidebar / Menu Lateral ---------- */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--color-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  z-index: 999;
  background: var(--color-bg-dark);
  border-right: 1px solid var(--color-border);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar__header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

.sidebar__close {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

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

.sidebar__best-sellers {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.sidebar__best-sellers h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.sidebar__best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.sidebar__best-sellers-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.sidebar__best-sellers-grid img:hover {
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.sidebar__nav {
  padding: 1.5rem;
  flex: 1;
}

.sidebar__nav-item {
  display: block;
  padding: 0.65rem 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  border-bottom: 1px solid rgba(58, 51, 43, 0.3);
}

.sidebar__nav-item:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

.sidebar__nav-sub {
  padding-left: 1rem;
}

.sidebar__nav-sub .sidebar__nav-item {
  font-size: 0.8rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--color-text-muted);
  border-bottom: none;
  padding: 0.4rem 0;
}

.sidebar__nav-sub .sidebar__nav-item:hover {
  color: var(--color-gold-light);
}

.sidebar__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.sidebar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.85rem;
}

.sidebar__social:hover {
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
}

/* ---------- Header ---------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 14, 12, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 51, 43, 0.3);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background: rgba(15, 14, 12, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hamburger-btn {
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: color 0.3s ease;
}

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

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: var(--transition-smooth);
}

.header-logo {
  text-decoration: none;
}

/* ---------- Search Overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  width: 90vw;
  max-width: 620px;
  transform: translateY(-16px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

.search-overlay.active .search-overlay__inner {
  transform: translateY(0) scale(1);
}

.search-overlay__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 14px 20px;
  transition: border-color 0.3s ease;
}

.search-overlay__bar:focus-within {
  border-color: var(--color-gold);
}

.search-overlay__icon {
  flex-shrink: 0;
  color: var(--color-gold);
  opacity: 0.5;
}

.search-overlay__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  caret-color: var(--color-gold);
}

.search-overlay__input::placeholder {
  color: rgba(254,243,199,0.25);
}

.search-overlay__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: rgba(254,243,199,0.35);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
}

.search-overlay__close:hover {
  color: var(--color-gold);
}

.search-overlay__results {
  margin-top: 4px;
  max-height: 55vh;
  overflow-y: auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-top: none;
}

.search-overlay__results:empty {
  display: none;
}

.search-overlay__hint {
  padding: 20px 24px;
  font-size: 0.85rem;
  color: rgba(254,243,199,0.35);
  text-align: center;
}

.search-overlay__hint strong {
  color: var(--color-gold);
}

.search-overlay__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(58,51,43,0.4);
  transition: background 0.25s ease;
}

.search-overlay__item:last-child {
  border-bottom: none;
}

.search-overlay__item:hover {
  background: var(--color-bg-card-hover);
}

.search-overlay__item-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-bg-section);
}

.search-overlay__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-overlay__item-info {
  flex: 1;
  min-width: 0;
}

.search-overlay__item-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.6;
  margin-bottom: 2px;
}

.search-overlay__item-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.search-overlay__item-desc {
  font-size: 0.75rem;
  color: rgba(254,243,199,0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.search-overlay__item-arrow {
  flex-shrink: 0;
  color: rgba(254,243,199,0.15);
  transition: color 0.3s ease, transform 0.3s ease;
}

.search-overlay__item:hover .search-overlay__item-arrow {
  color: var(--color-gold);
  transform: translateX(3px);
}

.search-overlay__highlight {
  background: rgba(201,168,76,0.25);
  color: var(--color-gold);
  border-radius: 2px;
  padding: 0 2px;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1d1610 50%, #1a140e 100%);
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(184, 134, 11, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero__subtitle-top {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.hero__cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.hero__bottle {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0.15;
  object-fit: cover;
  object-position: right;
  pointer-events: none;
  filter: sepia(0.3) brightness(0.8);
}

@media (min-width: 1024px) {
  .hero__bottle {
    opacity: 0.25;
    right: 0;
  }
}

/* ---------- Section Common Styles ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 1.5rem 0;
}

/* ---------- Product Cards ---------- */
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  group: true;
}

.product-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(15, 14, 12, 0.95) 0%, rgba(15, 14, 12, 0.7) 60%, transparent 100%);
}

.product-card__category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ---------- Info Cards (Diferenciais) ---------- */
.info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.info-card:hover {
  border-color: var(--color-gold);
  background: var(--color-bg-card-hover);
  transform: translateY(-4px);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--color-gold);
}

.info-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.info-card__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ---------- Premiações Section ---------- */
.premiacoes-section {
  position: relative;
  padding: 3rem 0;
  /* background: linear-gradient(180deg, var(--color-bg-dark) 0%, #13110e 50%, var(--color-bg-section) 100%); */
  overflow: hidden;
}

.premiacoes-section__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 20% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 80% 50%, rgba(192, 192, 210, 0.035) 0%, transparent 70%);
  pointer-events: none;
}

.premiacoes-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

/* --- Cada medalha + texto ao lado --- */
.premiacao-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.premiacao-item__medal {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premiacao-item:hover .premiacao-item__medal {
  transform: scale(1.1);
}

.premiacao-item__medal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.premiacao-item__medal--gold {
  box-shadow:
    0 0 20px rgba(201, 168, 76, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.35);
}

.premiacao-item:hover .premiacao-item__medal--gold {
  box-shadow:
    0 0 30px rgba(201, 168, 76, 0.5),
    0 6px 28px rgba(0, 0, 0, 0.4);
}

.premiacao-item__medal--silver {
  box-shadow:
    0 0 20px rgba(192, 192, 210, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.35);
}

.premiacao-item:hover .premiacao-item__medal--silver {
  box-shadow:
    0 0 30px rgba(192, 192, 210, 0.35),
    0 6px 28px rgba(0, 0, 0, 0.4);
}

.premiacao-item__info {
  white-space: nowrap;
}

.premiacao-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.premiacao-item__title--gold { color: #d4af37; }
.premiacao-item__title--silver { color: #c0c0d2; }

.premiacao-item__product {
  font-size: 0.8rem;
  color: rgba(245, 230, 200, 0.65);
  font-weight: 400;
}

/* --- Centro (texto) --- */
.premiacoes-center {
  text-align: center;
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.premiacoes-center__label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.premiacoes-center__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5e6c8;
  margin-bottom: 0.5rem;
}

.premiacoes-center__line {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 0.5rem;
}

.premiacoes-center__event {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.45);
  font-weight: 600;
}

/* --- Mobile: empilha --- */
@media (max-width: 768px) {
  .premiacoes-strip {
    flex-direction: column;
    gap: 1.5rem;
  }

  .premiacoes-center {
    order: -1;
    padding: 0;
  }

  .premiacao-item__medal {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .premiacao-item__medal {
    width: 120px;
    height: 120px;
  }

  .premiacoes-strip {
    gap: 3.5rem;
  }

  .premiacoes-center__title {
    font-size: 1.75rem;
  }
}

/* ---------- Story Section ---------- */
.story-section {
  background: var(--color-bg-section);
}

.story-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  filter: sepia(0.15) brightness(0.9);
  transition: filter 0.5s ease;
}

.story-image:hover {
  filter: sepia(0) brightness(1);
}

/* ---------- Recipe Cards ---------- */
.recipe-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  transition: var(--transition-smooth);
}

.recipe-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.recipe-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-card__image {
  transform: scale(1.08);
}

.recipe-card__content {
  padding: 1.25rem;
}

.recipe-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.recipe-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ---------- Recipe Detail — Ingredient Strikethrough ---------- */
.ingrediente-item.checked span {
  text-decoration: line-through;
  opacity: 0.4;
  transition: opacity 0.3s ease, text-decoration 0.3s ease;
}

.ingrediente-item.checked strong {
  text-decoration: line-through;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, #1d1610 0%, var(--color-bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- Rabo de Galo Showcase ---------- */
.showcase-rabo {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0806;
}

.showcase-rabo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  pointer-events: none;
}

@media (min-width: 768px) {
  .showcase-rabo__bg {
    object-position: 30% center;
  }
}

.showcase-rabo__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,8,6,0.92) 0%, rgba(10,8,6,0.65) 40%, rgba(10,8,6,0.15) 70%, transparent 100%);
  pointer-events: none;
}

/* Mobile: heavier overlay so text is readable over the centered bottle */
@media (max-width: 767px) {
  .showcase-rabo {
    min-height: 100vh;
    align-items: flex-end;
  }
  .showcase-rabo__overlay {
    background:
      linear-gradient(to top, rgba(10,8,6,0.97) 0%, rgba(10,8,6,0.85) 50%, rgba(10,8,6,0.2) 100%);
  }
}

.showcase-rabo__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .showcase-rabo__content {
    padding: 6rem 3rem 6rem 5vw;
    max-width: 6000px;
  }
}

@media (min-width: 1280px) {
  .showcase-rabo__content {
    max-width: 850px;
    padding-left: max(5vw, calc((100vw - 1400px) / 2 + 2rem));
  }
}

.showcase-rabo__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 18px;
  margin-bottom: 1.75rem;
}

.showcase-rabo__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: #fef3c7;
  margin-bottom: 0.5rem;
}

.showcase-rabo__title em {
  font-style: italic;
  color: var(--color-gold);
}

.showcase-rabo__tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gold-light);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.showcase-rabo__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(254,243,199,0.55);
  margin-bottom: 2rem;
}

.showcase-rabo__notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.showcase-rabo__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.showcase-rabo__note-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
  opacity: 0.6;
}

.showcase-rabo__note strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2px;
}

.showcase-rabo__note span {
  font-size: 0.78rem;
  color: rgba(254,243,199,0.45);
  line-height: 1.4;
}

.showcase-rabo__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--color-gold);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
}

.showcase-rabo__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: -1;
}

.showcase-rabo__cta:hover {
  color: #1a1814;
  border-color: var(--color-gold);
}

.showcase-rabo__cta:hover::before {
  transform: scaleX(1);
}

.showcase-rabo__cta svg {
  transition: transform 0.3s ease;
}

.showcase-rabo__cta:hover svg {
  transform: translateX(4px);
}

/* ---------- Adega / Video Section ---------- */
.adega-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0806;
}

.adega-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.adega-section__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,8,6,0.45) 0%, rgba(10,8,6,0.75) 70%),
    linear-gradient(to top, rgba(10,8,6,0.9) 0%, transparent 40%);
  pointer-events: none;
}

.adega-section__content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
  max-width: 650px;
}

.adega-section__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.adega-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fef3c7;
  margin-bottom: 1.5rem;
}

.adega-section__title em {
  font-style: italic;
  color: var(--color-gold);
}

.adega-section__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgb(254,243,199);
  max-width: 520px;
  margin: 0 auto 3rem;
}

/* ---- Play Button with pulse rings ---- */
.adega-section__play {
  position: relative;
  width: 90px;
  height: 90px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.adega-section__play-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.adega-section__play-icon svg {
  margin-left: 3px;
}

.adega-section__play:hover .adega-section__play-icon {
  background: var(--color-gold);
  color: #1a1814;
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(201,168,76,0.4);
}

.adega-section__play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  opacity: 0;
  animation: adegaPulse 2.5s cubic-bezier(0.25,0.46,0.45,0.94) infinite;
}

.adega-section__play-ring--delay {
  animation-delay: 0.8s;
}

@keyframes adegaPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.adega-section__play-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(254,243,199,0.4);
  margin-top: 1.25rem;
}

/* ---- Video Modal ---- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
}

.video-modal__wrapper {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 960px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.video-modal.active .video-modal__wrapper {
  transform: scale(1) translateY(0);
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-modal__close:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: rotate(90deg);
}

.video-modal__container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-modal__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------- Footer ---------- */
.main-footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
}

.footer-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ---------- Utility ---------- */
.text-gold { color: var(--color-gold); }
.bg-dark-section { background: var(--color-bg-section); }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }
.border-subtle { border-color: var(--color-border); }

/* produtos */
.product-showcase {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 1.5rem 2.5rem;
      transition: transform 0.5s ease;
    }
    .product-showcase:hover { transform: translateY(-8px); }
    .product-showcase__img-wrap {
      position: relative;
      height: 340px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    @media (min-width: 640px) { .product-showcase__img-wrap { height: 380px; } }
    .product-showcase__img-wrap img {
      max-height: 100%;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
      transition: transform 0.6s ease, filter 0.6s ease;
    }
    .product-showcase:hover .product-showcase__img-wrap img {
      transform: scale(1.08);
      filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
    }
    .product-showcase__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      border: 1px solid rgba(201,168,76,0.3);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 1rem;
    }
    .product-showcase__badge svg { opacity: 0.6; }
    .product-showcase__name {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: #fef3c7;
      line-height: 1.2;
      margin-bottom: 0.4rem;
    }
    .product-showcase__volume {
      font-size: 0.75rem;
      color: rgba(254,243,199,0.35);
      margin-bottom: 0.75rem;
    }
    .product-showcase__desc {
      font-size: 0.8rem;
      color: rgba(254,243,199,0.45);
      line-height: 1.6;
      max-width: 260px;
      margin: 0 auto 1.25rem;
    }
    .product-showcase__price {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--color-gold);
      margin-bottom: 1.25rem;
    }
    .product-showcase__btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      background: var(--color-gold);
      color: #1c1917;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    .product-showcase__btn:hover { background: #fcd34d; }
    .product-showcase__btn svg { transition: transform 0.3s ease; }
    .product-showcase__btn:hover svg { transform: translateX(3px); }

/* ---------- Legal Content Pages ---------- */
.legal-content {
  font-family: var(--font-body);
  color: rgba(245, 230, 200, 0.7);
  line-height: 1.8;
}

.legal-content__updated {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.5;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-content strong {
  color: rgba(245, 230, 200, 0.9);
  font-weight: 600;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #f5e6c8;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.25rem;
}

.legal-content ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.5;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #fcd34d;
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 1rem 1rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease;
  pointer-events: none;
}

.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  background: rgba(26, 24, 20, 0.97);
  border: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.cookie-banner__icon {
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.cookie-banner__text p {
  font-size: 0.8rem;
  color: rgba(245, 230, 200, 0.6);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.cookie-banner__text a:hover {
  color: #fcd34d;
}

.cookie-banner__btn {
  flex-shrink: 0;
  padding: 0.5rem 1.5rem;
  background: var(--color-gold);
  color: #1c1917;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  background: #fcd34d;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }

  .cookie-banner__text {
    justify-content: center;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__btn {
    width: 100%;
    padding: 0.65rem;
  }
}