/*
 * Sabores do Mundo - Folha de Estilo
 * Site estático, sem Tailwind, sem dependências externas
 * Google Fonts é a única exceção de recurso externo
 */

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

/* ===========================
   RESET MODERNO
   =========================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: 'Inter', sans-serif;
  color: #F5F3EE;
  background-color: #1A1A1A;
  line-height: 1.6;
}

/* Scrollbar dourada customizada */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B8941F;
}

/* Firefox scrollbar */
* {
  scrollbar-color: #D4AF37 #1A1A1A;
  scrollbar-width: thin;
}

/* ===========================
   DESIGN TOKENS :ROOT
   =========================== */

:root {
  /* Brand Colors */
  --gold: #D4AF37;
  --gold-light: #E8C547;
  --gold-dark: #B8941F;
  --dark: #1A1A1A;
  --cream: #F5F3EE;

  /* Secondary Colors */
  --burgundy: #800020;
  --forest: #2D4A3E;
  --terracotta: #C4704A;

  /* Shadows and Gradients */
  --shadow-gold: 0 8px 20px rgba(212, 175, 55, 0.3);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #B8941F);
  --gradient-dark: linear-gradient(180deg, #1A1A1A, #0D0D0D);

  /* Spacing */
  --radius: 1rem;

  /* Opacity helpers */
  --opacity-overlay-light: rgba(26, 26, 26, 0.7);
  --opacity-overlay-medium: rgba(26, 26, 26, 0.85);
  --opacity-overlay-dark: rgba(26, 26, 26, 0.95);

  /* Design system, papeis semanticos */
  --color-brand: var(--gold);
  --color-brand-hover: var(--gold-light);
  --color-brand-active: var(--gold-dark);
  --color-canvas: #090909;
  --color-surface: #11110f;
  --color-surface-raised: #191916;
  --color-surface-glass: rgba(255, 255, 255, 0.045);
  --color-text: var(--cream);
  --color-text-muted: rgba(245, 243, 238, 0.72);
  --color-text-subtle: rgba(245, 243, 238, 0.52);
  --color-border: rgba(212, 175, 55, 0.22);
  --color-border-strong: rgba(212, 175, 55, 0.52);
  --color-success: #79B797;
  --color-danger: #D98A82;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 0.55rem;
  --radius-md: 0.8rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 999px;

  --shadow-surface: 0 18px 50px rgba(0, 0, 0, 0.2);
  --shadow-floating: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-focus: 0 0 0 3px rgba(212, 175, 55, 0.28);
  --transition-fast: 180ms ease-out;
  --transition-base: 320ms cubic-bezier(.2,.8,.2,1);
  --transition-slow: 520ms cubic-bezier(.2,.8,.2,1);

  --content-wide: 87.5rem;
  --content-reading: 54rem;
  --header-height: 6rem;
}

/* ===========================
   TIPOGRAFIA
   =========================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

.font-accent {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

/* ===========================
   COMPONENTES PRINCIPAIS
   =========================== */

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* SECTION */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section__intro {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: rgba(245, 243, 238, 0.8);
  line-height: 1.8;
  max-width: 48rem;
}

/* ===========================
   NAVEGAÇÃO
   =========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background-color: transparent;
  transition: all 0.3s ease;
  height: 5rem;
}

@media (min-width: 1024px) {
  .nav {
    height: 6rem;
  }
}

.nav--scrolled {
  background-color: var(--opacity-overlay-dark);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .nav__container {
    padding: 0 2rem;
  }
}

.nav__logo {
  display: block;
  height: 4rem;
  width: auto;
  transition: transform 0.3s ease;
}

.nav__logo img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 8rem;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .nav__logo {
    height: 5rem;
  }
}

.nav__logo:hover {
  transform: scale(1.05);
}

.nav__desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav__desktop {
    display: flex;
  }
}

.nav__link {
  position: relative;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  width: 100%;
  height: 0.125rem;
  background-color: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

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

.nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__link--active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__button {
  display: none;
}

@media (min-width: 1024px) {
  .nav__button {
    display: block;
  }
}

.nav__mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.75rem;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .nav__mobile-toggle {
    display: none;
  }
}

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

/* Menu Mobile */
.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(12px);
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .nav__mobile {
    display: none !important;
  }
}

.nav__mobile--open {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.nav__mobile-item {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  transition: color 0.3s ease;
  cursor: pointer;
}

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

/* ===========================
   SELETOR DE IDIOMAS
   =========================== */

.lang {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.lang__button {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.lang__button:hover {
  opacity: 1;
}

.lang__button--active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--gold);
  background-color: rgba(212, 175, 55, 0.1);
}

.lang__svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.7),
    rgba(26, 26, 26, 0.5),
    rgba(26, 26, 26, 0.9)
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  text-align: center;
  animation: fade-in-up 0.8s ease-out;
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  display: block;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
}

.hero__intro {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: rgba(245, 243, 238, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--gold);
  cursor: pointer;
  animation: bounce 2s infinite;
}

.hero__scroll-indicator:hover {
  color: rgba(212, 175, 55, 0.8);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ===========================
   BOTÕES
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background-color: var(--gold-light);
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.4);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--outline {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.btn--outline:hover {
  background-color: var(--gold);
  color: var(--dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.btn--outline:active {
  transform: scale(0.98);
}

.btn--lg {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===========================
   CARDS
   =========================== */

.card {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.5s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.card--featured {
  border: 2px solid var(--gold);
}

.card--featured:hover {
  transform: scale(1.03);
}

.card__header {
  margin-bottom: 1.5rem;
}

.card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.card__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.card:hover .card__icon {
  transform: scale(1.1);
}

.card__description {
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.6;
}

/* ===========================
   GRID
   =========================== */

.grid {
  display: grid;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .grid {
    gap: 2.5rem;
  }
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===========================
   TABELAS
   =========================== */

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(0, 0, 0, 0.3);
}

.table__head {
  background-color: transparent;
}

.table__header-cell {
  color: var(--gold);
  font-weight: 600;
  text-align: left;
  padding: 1rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table__row {
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.table__row:hover {
  background-color: rgba(212, 175, 55, 0.05);
}

.table__row:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
}

.table__row--highlight {
  background-color: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold);
}

.table__cell {
  color: rgba(245, 243, 238, 0.8);
  padding: 1.25rem 1rem;
  font-size: 0.95rem;
}

.table__cell--header {
  color: var(--cream);
  font-weight: 600;
}

.table__cell--highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ===========================
   ACCORDION / FAQ
   =========================== */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.accordion__item {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion__item:hover {
  border-color: rgba(212, 175, 55, 0.6);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

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

.accordion__trigger::after {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.accordion__item--open .accordion__trigger::after {
  transform: rotate(180deg);
}

.accordion__content {
  overflow: hidden;
  transition: all 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.accordion__item--open .accordion__content {
  max-height: 1000px;
  opacity: 1;
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: rgba(245, 243, 238, 0.8);
  line-height: 1.7;
}

/* ===========================
   CHARTS
   =========================== */

.chart {
  width: 100%;
  height: auto;
  min-height: 300px;
}

.chart__container {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.chart__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.chart__caption {
  color: rgba(245, 243, 238, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ===========================
   TIMELINE / ROADMAP
   =========================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.timeline__item {
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.timeline__item:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: var(--shadow-gold);
}

.timeline__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.2);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.timeline__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.timeline__period {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline__content {
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

.timeline__content li {
  margin-bottom: 0.75rem;
  margin-left: 1.5rem;
}

.timeline__connector {
  display: none;
}

@media (min-width: 1024px) {
  .timeline__connector {
    display: block;
    position: absolute;
    top: 5rem;
    left: 50%;
    width: 2px;
    height: 3rem;
    background: linear-gradient(
      to bottom,
      var(--gold),
      rgba(212, 175, 55, 0.3)
    );
    transform: translateX(-50%);
  }

  .timeline__item:last-child .timeline__connector {
    display: none;
  }
}

/* ===========================
   FORMULÁRIO
   =========================== */

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

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

.form__label {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
}

.form__input,
.form__textarea {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.5rem;
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(245, 243, 238, 0.5);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form__input:focus-visible,
.form__textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form__textarea {
  resize: vertical;
  min-height: 6rem;
  font-family: 'Inter', sans-serif;
}

.form__submit {
  background-color: var(--gold);
  color: var(--dark);
  padding: 1rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  width: 100%;
}

.form__submit:hover {
  background-color: var(--gold-light);
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.4);
}

.form__submit:active {
  transform: scale(0.98);
}

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

.footer {
  background-color: rgba(26, 26, 26, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem 1rem;
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 2rem;
  }
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.footer__section-title {
  color: var(--cream);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer__logo {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer__description {
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: rgba(245, 243, 238, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.footer__hours {
  color: rgba(245, 243, 238, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer__divider {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.footer__copyright {
  color: rgba(245, 243, 238, 0.6);
  font-size: 0.875rem;
}

/* ===========================
   ANIMAÇÕES E TRANSIÇÕES
   =========================== */

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes accordion-down {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: var(--radix-accordion-content-height, auto);
    opacity: 1;
  }
}

@keyframes accordion-up {
  from {
    height: var(--radix-accordion-content-height, auto);
    opacity: 1;
  }
  to {
    height: 0;
    opacity: 0;
  }
}

/* REVEAL para animações de IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
  transition-delay: var(--delay, 0s);
}

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

.reveal--fade-in {
  animation: fade-in 0.6s ease-out;
}

.reveal--fade-in-up {
  animation: fade-in-up 0.8s ease-out;
}

.reveal--scale-in {
  animation: scale-in 0.5s ease-out;
}

/* ===========================
   ACESSIBILIDADE
   =========================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus visível para navegação com teclado */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===========================
   PREFERÊNCIA DE MOVIMENTO REDUZIDO
   =========================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: translateY(0);
  }

  .hero__scroll-indicator {
    animation: none;
  }
}

/* ========================================================================== 
   INVESTIDORES, NAVEGACAO PASSO A PASSO
   ========================================================================== */

body:not(.investor-deck-page) main #investidores,
body:not(.investor-deck-page) main #investidores ~ .section {
  display: none;
}

.investor-deck-page {
  height: 100svh;
  overflow: hidden;
  background: var(--color-canvas);
}

.investor-deck-page .nav {
  background: rgba(9, 9, 9, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  backdrop-filter: blur(18px);
}

.investor-deck-page > .investor-step {
  position: fixed;
  z-index: 1;
  inset: 6rem 0 5.5rem;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(3rem, 7vh, 6rem) 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(3rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow), visibility var(--transition-slow);
  background:
    radial-gradient(circle at 88% 8%, rgba(212,175,55,.11), transparent 28rem),
    radial-gradient(circle at 5% 92%, rgba(128,0,32,.12), transparent 25rem),
    linear-gradient(145deg, #141412, #0b0b0a);
}

.investor-deck-page > .investor-step:nth-of-type(even) {
  background:
    radial-gradient(circle at 12% 10%, rgba(45,74,62,.2), transparent 27rem),
    radial-gradient(circle at 90% 88%, rgba(212,175,55,.08), transparent 24rem),
    linear-gradient(145deg, #171714, #0a0a09);
}

.investor-deck-page > .investor-step--active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.investor-deck-page > .investor-step--before { transform: translateX(-3rem); }

.investor-deck-page > .investor-step.reveal,
.investor-deck-page > .investor-step.reveal--visible {
  opacity: 0;
}

.investor-deck-page > .investor-step--active.reveal,
.investor-deck-page > .investor-step--active.reveal--visible {
  opacity: 1;
  transform: none;
}

.investor-deck-page > .hero.investor-step {
  display: block;
  height: auto;
  padding-top: clamp(3rem, 7vh, 6rem);
}

.investor-deck-page > .investor-step .container {
  max-width: var(--content-wide);
}

.investor-deck-page > .investor-step .section__eyebrow,
.investor-deck-page > .investor-step .section__title,
.investor-deck-page > .investor-step .section__intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.investor-deck-page > .investor-step .section__intro { max-width: var(--content-reading); }

.investor-deck-page > .footer { display: none; }

.investor-deck-progress {
  position: fixed;
  z-index: 61;
  top: 6rem;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.055);
}

.investor-deck-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gradient-gold);
  box-shadow: 0 0 14px rgba(212,175,55,.7);
  transition: width var(--transition-slow);
}

.investor-deck-controls {
  position: fixed;
  z-index: 60;
  inset: auto 0 0;
  min-height: 5.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: .8rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(212,175,55,.15);
  background: rgba(9,9,9,.9);
  backdrop-filter: blur(18px);
}

.investor-deck-controls__group { display: flex; gap: .6rem; }
.investor-deck-chapter { justify-self:center; display:flex; align-items:center; gap:.8rem; color:var(--color-text-subtle); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; }
.investor-deck-chapter strong { color:var(--color-text); font-weight:600; letter-spacing:.04em; }
.investor-deck-dots { max-width: 19rem; }

@media (max-width: 1023px) {
  .investor-deck-page > .investor-step { inset: 5rem 0 5.5rem; }
  .investor-deck-progress { top: 5rem; }
}

@media (max-width: 760px) {
  .investor-deck-page > .investor-step { padding: 2.4rem 0 7rem; }
  .investor-deck-controls { grid-template-columns:1fr auto; gap:.75rem; }
  .investor-deck-chapter { justify-self:end; }
  .investor-deck-chapter strong, .investor-deck-dots { display:none; }
  .investor-deck-controls .presentation-control { padding:.7rem .9rem; font-size:.7rem; }
}

/* Header mobile: idioma compacto, CTA fora do topo e hamburger sempre visivel. */
@media (max-width: 1023px) {
  .nav__container {
    gap: .55rem;
  }

  .flex-header {
    margin-left: auto;
    gap: .5rem;
  }

  .nav__button {
    display: none !important;
  }

  .nav__mobile-toggle {
    position: relative;
    z-index: 51;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
    padding: 0;
    border: 1px solid rgba(212,175,55,.32);
    border-radius: var(--radius-md);
    background: rgba(9,9,9,.44);
  }

  .flex-header .lang { gap: .45rem; }
  .flex-header .lang__button { width: 2.4rem; height: 2.4rem; }
}

@media (max-width: 430px) {
  .nav__container { padding-inline: .75rem; }
  .nav__logo { height: 3.45rem; }
  .flex-header .lang__button { width: 2.25rem; height: 2.25rem; }
  .flex-header .lang { gap: .25rem; }
}

/* ===========================
   RESPONSIVIDADE MOBILE (375px)
   =========================== */

@media (max-width: 640px) {
  /* Navigation adjustments */
  .nav {
    height: 4rem;
  }

  .nav__logo {
    height: 3rem;
  }

  /* Hero adjustments */
  .hero {
    padding-top: 4rem;
    min-height: 90vh;
  }

  .hero__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .hero__subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  .hero__intro {
    font-size: 1rem;
  }

  /* Button adjustments */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .btn--lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  /* Card adjustments */
  .card {
    padding: 1.5rem;
  }

  /* Grid adjustments */
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  /* Table adjustments */
  .table__header-cell,
  .table__cell {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }

  /* Accordion adjustments */
  .accordion__trigger {
    padding: 1rem;
    font-size: 1rem;
  }

  .accordion__item--open .accordion__content {
    padding: 0 1rem 1rem 1rem;
  }

  /* Section spacing */
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }

  p {
    font-size: 0.95rem;
  }

  /* Footer adjustments */
  .footer {
    padding: 2rem 1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__section-title {
    font-size: 1rem;
  }

  .footer__logo {
    height: 3rem;
  }

  /* No horizontal scroll */
  .table-wrap {
    font-size: 0.85rem;
  }

  /* Timeline on mobile */
  @media (max-width: 768px) {
    .timeline {
      grid-template-columns: 1fr;
    }

    .timeline__connector {
      display: none !important;
    }
  }
}

/* ===========================
   STATES E VARIAÇÕES
   =========================== */

/* Loading shimmer */
.shimmer {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite linear;
}

/* Disabled states */
button:disabled,
input:disabled,
select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Focus within for form groups */
.form__group:focus-within .form__label {
  color: var(--gold);
}

/* Link hover states */
a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ===========================
   UTILITÁRIOS
   =========================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.pt-0 { padding-top: 0; }
.pt-4 { padding-top: 2rem; }

.pb-0 { padding-bottom: 0; }
.pb-4 { padding-bottom: 2rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-4 { gap: 2rem; }
.gap-8 { gap: 2rem; }

.w-full { width: 100%; }
.max-w-full { max-width: 100%; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.inline-block { display: inline-block; }
.block { display: block; }
.flex { display: flex; }
.hidden { display: none; }

/* ===========================
   TRAVA DE SCROLL
   Aplicada ao body pelo main.js enquanto o menu mobile esta aberto,
   para o conteudo de tras nao rolar junto.
   =========================== */
body.no-scroll {
  overflow: hidden;
}

/* ===========================
   CLASSES REFATORADAS DE INLINE STYLES
   =========================== */

/* Tipografia: Títulos e Cabeçalhos */
.menu__category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
}

.menu__item-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.menu__item-price {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.menu__item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

/* Tipografia: Rótulos e Pequenos Textos */
.event__schedule {
  color: var(--gold);
  font-weight: 600;
}

.contact__label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.contact__label--cream {
  color: var(--cream);
}

.contact__value {
  color: rgba(245, 243, 238, 0.8);
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat__label {
  color: rgba(245, 243, 238, 0.8);
}

.story__quote {
  font-size: 1.125rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.investor__metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.investor__metric-label {
  font-size: 0.95rem;
  color: var(--cream);
}

.investor__metric-caption {
  font-size: 0.85rem;
  color: rgba(245, 243, 238, 0.6);
  margin-top: 0.5rem;
}

.investor__section-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.investor__large-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Tipografia: Cores e Opacity */
.text-subtle {
  color: rgba(245, 243, 238, 0.7);
}

.text-muted {
  color: rgba(245, 243, 238, 0.8);
  line-height: 1.8;
}

.text-muted--italic {
  color: rgba(245, 243, 238, 0.8);
  line-height: 1.7;
}

.text-secondary {
  color: rgba(245, 243, 238, 0.6);
  margin-top: 0.5rem;
}

.text-secondary--bottom {
  color: rgba(245, 243, 238, 0.6);
  margin-bottom: 1rem;
}

/* Layout: Flexbox */
.flex-header {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.flex-socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Cards e Containers */
.card__social-link {
  padding: 0.5rem 1rem;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.disclaimer__box {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: rgba(212, 175, 55, 0.05);
}

.disclaimer__card {
  border-color: rgba(212, 175, 55, 0.4);
}

.disclaimer__card--highlight {
  border-color: var(--gold);
  background-color: rgba(212, 175, 55, 0.08);
  padding: 2rem;
  text-align: center;
}

/* Investor Page: Specific Styling */
.investor__bullet {
  position: absolute;
  left: 0;
  color: var(--gold);
}

.investor__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.investor__list-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.investor__card--boxed {
  border-color: rgba(212, 175, 55, 0.4);
  padding: 2.5rem;
}

.investor__card--spacing {
  margin-top: 3rem;
}

.investor__card--max-width {
  max-width: 100%;
  margin-top: 3rem;
}

.investor__intro {
  max-width: 48rem;
  margin: 2rem auto;
  border-color: rgba(212, 175, 55, 0.4);
}

.investor__content {
  margin-top: 2rem;
  max-width: 48rem;
}

.investor__content--centered {
  margin: 1.5rem auto;
  max-width: 48rem;
}

.investor__note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(245, 243, 238, 0.7);
}

.investor__section-spacing {
  margin-top: 2rem;
}

.investor__hidden {
  display: none;
}

.story__spacing {
  color: rgba(245, 243, 238, 0.8);
  line-height: 1.7;
}

.story__title-font {
  font-style: italic;
  margin-bottom: 2rem;
}

/* ===========================================================================
   SUBMENU DE INVESTIDORES
   O item "Investidores" do menu abre um submenu com as subsecoes da tese.
   No desktop abre no hover e tambem no foco por teclado, no mobile a lista
   fica sempre visivel, recuada abaixo do item pai.
   =========================================================================== */

.nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* seta indicando que o item abre submenu */
.nav__link--has-sub::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.4rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.nav__item--has-sub:hover .nav__link--has-sub::before,
.nav__item--has-sub:focus-within .nav__link--has-sub::before {
  transform: rotate(180deg);
}

.nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 60;
}

.nav__item--has-sub:hover .nav__submenu,
.nav__item--has-sub:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__submenu-link {
  padding: 0.6rem 0.9rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: calc(var(--radius) - 0.6rem);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav__submenu-link:hover,
.nav__submenu-link:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
}

/* submenu dentro do menu mobile */
.nav__mobile-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: -0.5rem;
  padding-left: 0;
}

.nav__mobile-subitem {
  color: rgba(245, 243, 238, 0.7);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.25s ease;
}

.nav__mobile-subitem:hover,
.nav__mobile-subitem:focus-visible {
  color: var(--gold);
}

/* ===========================================================================
   ABERTURA DA SECAO DE INVESTIDORES
   Era o hero da pagina separada, agora e o bloco de entrada da secao dentro
   da home, sem altura de viewport e sem video de fundo.
   =========================================================================== */

.investidores__abertura {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--gradient-dark);
  text-align: center;
}

.section__subtitle-gold {
  display: block;
  margin: 0.75rem auto 0;
  max-width: 60ch;
  color: var(--gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.4;
}

.investidores__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .investidores__ctas {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===========================================================================
   DOBRAS, ENCAIXE DE ROLAGEM
   Cada secao principal ocupa a tela inteira e a rolagem encaixa no topo dela.
   Secoes com tabela longa recebem .section--livre e rolam normalmente, senao
   o conteudo ficaria preso fora da area visivel.
   =========================================================================== */

html {
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--altura-header, 6rem);
}

.section--dobra {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-margin-top: 0;
}

/* secoes altas demais para caber numa tela, rolam livres */
.section--livre {
  min-height: auto;
  scroll-snap-align: start;
  scroll-margin-top: var(--altura-header, 6rem);
}

/* em telas baixas o encaixe atrapalha mais do que ajuda */
@media (max-height: 700px), (max-width: 768px) {
  html {
    scroll-snap-type: none;
  }
  .section--dobra {
    min-height: auto;
    scroll-margin-top: var(--altura-header, 5rem);
  }
}

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

/* ===========================================================================
   SUBMENU DE INVESTIDORES EM BARRA
   Abre como uma faixa logo abaixo do menu principal, ocupando a largura toda,
   em vez de flutuar sobre o conteudo.
   =========================================================================== */

.nav__submenu-bar {
  position: fixed;
  top: var(--altura-header, 6rem);
  left: 0;
  right: 0;
  z-index: 55;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.nav__submenu-bar--open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__submenu-bar .nav__submenu-link {
  padding: 0.45rem 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__submenu-bar .nav__submenu-link--ativo {
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
}

@media (max-width: 768px) {
  .nav__submenu-bar {
    display: none;
  }
}

/* ===========================================================================
   AOS, ajustes de integracao
   A biblioteca cuida da animacao, aqui so garantimos que nada fique invisivel
   quando o JS falha ou quando o usuario pede menos movimento.
   =========================================================================== */

[data-aos] {
  pointer-events: auto;
}

.no-js [data-aos],
html:not(.aos-initialized) [data-aos] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===========================================================================
   ICONES
   Sprite Lucide embutido no HTML, so com os icones realmente usados.
   Herdam a cor do texto, entao seguem o tema sem regra extra.
   =========================================================================== */

.icone {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.card__icon.icone,
.icone.card__icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

/* Sprite de icones: fica fora da tela sem usar display none,
   que em alguns navegadores impede o <use> de referenciar os simbolos. */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ========================================================================== 
   REFINAMENTO 2026, RESTAURANTE + INVESTIDORES
   O hero #inicio permanece intocado. As regras abaixo comecam depois dele.
   ========================================================================== */

main > .section:not(#inicio) {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background:
    radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.075), transparent 24rem),
    radial-gradient(circle at 5% 92%, rgba(128, 0, 32, 0.08), transparent 22rem),
    #11110f;
}

main > .section:not(#inicio):nth-of-type(odd) {
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 175, 55, 0.06), transparent 22rem),
    linear-gradient(145deg, #181816, #0d0d0c);
}

main > .section:not(#inicio)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(12rem, 40vw);
  height: 1px;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.55);
}

main > .section:not(#inicio) .container > .section__eyebrow,
main > .section:not(#inicio) .container > .section__title,
main > .section:not(#inicio) .container > .section__subtitle-gold,
main > .section:not(#inicio) .container > .section__intro {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

main > .section:not(#inicio) .container > .section__intro { max-width: 54rem; }

.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  margin: 0 0.75rem 0.25rem;
  background: currentColor;
  opacity: 0.65;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 50px rgba(0,0,0,0.18);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.58); }

#drinks .grid--3 > .card:nth-child(2),
#historia .grid--3 > .card:nth-child(2) {
  transform: translateY(-1.2rem);
  border-color: rgba(212,175,55,0.52);
}

#drinks .grid--3 > .card:nth-child(2):hover,
#historia .grid--3 > .card:nth-child(2):hover { transform: translateY(-1.55rem); }

#eventos .grid--4 > .card:nth-child(2),
#eventos .grid--4 > .card:nth-child(3) { margin-top: 1.5rem; }

#cardapio .menu__category,
.table-wrap,
.accordion__item,
.contact__form,
[disclaimer__card] {
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(255,255,255,0.025);
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
  border-radius: var(--radius);
}

/* Recupera classes que haviam sido exportadas como atributos booleanos. */
[mt-4] { margin-top: 2rem; }
[mb-12] { margin-bottom: 3rem; }
[gap-8] { gap: 2rem; }
[investor__card--spacing] { margin-top: 3rem; }
[investor__section-spacing] { margin-top: 3rem; }
[investor__content], [investor__intro] { max-width: 60rem; margin: 0 auto; text-align: center; }
[disclaimer__card] { padding: clamp(1.5rem, 4vw, 2.5rem); }
[investor__card--max-width] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 70rem;
  margin: 3rem auto 0;
}

[investor__card--max-width] > div {
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.035);
}

.nav__desktop { gap: clamp(0.65rem, 1.15vw, 1.35rem); }
.nav__link { font-size: 0.86rem; white-space: nowrap; }
.nav__link--presentation,
.nav__mobile-item--presentation { color: var(--gold); }

/* Metodo Empresa Inquebravel */
.method__heading { max-width: 58rem; margin: 0 auto 3.5rem; text-align: center; }
.method__heading .section__intro { margin-inline: auto; }
.method__flow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.method__step {
  min-height: 15rem;
  padding: 1.6rem 1.35rem;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
}
.method__step > span { display:block; color:var(--gold); font-size:0.72rem; font-weight:700; letter-spacing:0.2em; margin-bottom:2.5rem; }
.method__step h3, .method__step h4 { color:var(--cream); font-size:1.25rem; }
.method__step p { color:rgba(245,243,238,0.68); font-size:0.92rem; line-height:1.65; }
.method__step--focus { border-color:var(--gold); background:linear-gradient(145deg, rgba(212,175,55,0.18), rgba(212,175,55,0.035)); transform:translateY(-1rem); box-shadow:var(--shadow-gold); }
.method__insights { display:grid; grid-template-columns:1.25fr 1fr; gap:1.25rem; margin-top:3rem; }
.method__spotlight, .method__pillars { padding:clamp(1.5rem,4vw,2.5rem); border-radius:var(--radius); border:1px solid rgba(212,175,55,0.25); }
.method__spotlight { background:linear-gradient(135deg, rgba(128,0,32,0.32), rgba(128,0,32,0.09)); }
.method__pillars { background:linear-gradient(135deg, rgba(45,74,62,0.34), rgba(45,74,62,0.1)); }
.method__label { display:block; color:var(--gold); text-transform:uppercase; letter-spacing:0.16em; font-size:0.72rem; font-weight:700; margin-bottom:1rem; }
.method__spotlight h3, .method__spotlight h4, .method__pillars h3, .method__pillars h4 { font-size:clamp(1.35rem,2.4vw,2rem); }
.method__spotlight p, .method__pillars p { color:rgba(245,243,238,0.76); }
.method__pill-list { display:flex; flex-wrap:wrap; gap:0.6rem; margin:1.2rem 0; }
.method__pill-list span { padding:0.5rem 0.85rem; border:1px solid rgba(212,175,55,0.35); border-radius:999px; color:var(--cream); font-size:0.8rem; }

@media (max-width: 1100px) {
  .method__flow { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .method__step--focus { transform:none; }
  [investor__card--max-width] { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .section__eyebrow::before, .section__eyebrow::after { width:1rem; margin-inline:0.4rem; }
  #drinks .grid--3 > .card:nth-child(2), #historia .grid--3 > .card:nth-child(2) { transform:none; }
  #eventos .grid--4 > .card:nth-child(2), #eventos .grid--4 > .card:nth-child(3) { margin-top:0; }
  .method__flow, .method__insights, [investor__card--max-width] { grid-template-columns:1fr; }
}

/* ========================================================================== 
   APRESENTACAO WEB
   ========================================================================== */

.presentation-page { overflow:hidden; background:#090909; }
.presentation-shell { height:100svh; min-height:38rem; position:relative; overflow:hidden; background:#090909; }
.presentation-topbar { position:fixed; z-index:30; inset:0 0 auto; height:5rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:0 clamp(1rem,4vw,4rem); border-bottom:1px solid rgba(212,175,55,0.16); background:rgba(9,9,9,0.82); backdrop-filter:blur(18px); }
.presentation-brand { display:flex; align-items:center; gap:0.8rem; color:var(--cream); text-decoration:none; font:600 0.78rem/1 'Inter',sans-serif; letter-spacing:0.16em; text-transform:uppercase; }
.presentation-brand img { width:3.25rem; height:3.25rem; object-fit:contain; }
.presentation-back { color:rgba(245,243,238,0.72); font-size:0.8rem; text-decoration:none; transition:color .25s ease; }
.presentation-back:hover { color:var(--gold); }
.presentation-progress { position:fixed; z-index:31; top:5rem; left:0; right:0; height:2px; background:rgba(255,255,255,0.06); }
.presentation-progress__bar { display:block; width:0; height:100%; background:var(--gradient-gold); box-shadow:0 0 14px rgba(212,175,55,.7); transition:width .5s ease; }
.deck { height:100%; }
.deck__slide { position:absolute; inset:0; display:grid; align-items:center; padding:7.5rem clamp(1.25rem,7vw,7rem) 7rem; opacity:0; visibility:hidden; transform:translateX(4rem); transition:opacity .5s ease, transform .5s ease, visibility .5s; background:radial-gradient(circle at 88% 14%, rgba(212,175,55,.13), transparent 30%), radial-gradient(circle at 8% 90%, rgba(128,0,32,.16), transparent 28%), #0d0d0d; }
.deck__slide:nth-child(even) { background:radial-gradient(circle at 12% 12%, rgba(45,74,62,.2), transparent 30%), radial-gradient(circle at 90% 88%, rgba(212,175,55,.09), transparent 28%), linear-gradient(145deg,#171714,#0b0b0a); }
.deck__slide--active { opacity:1; visibility:visible; transform:none; z-index:2; }
.deck__slide--before { transform:translateX(-4rem); }
.deck__content { width:100%; max-width:86rem; margin:auto; }
.deck__eyebrow { display:block; color:var(--gold); text-transform:uppercase; letter-spacing:.2em; font-size:.75rem; font-weight:700; margin-bottom:1.1rem; }
.deck__title { max-width:65rem; color:var(--cream); font-size:clamp(2.3rem,5.2vw,5rem); font-weight:600; line-height:1.02; margin-bottom:1.4rem; }
.deck__title em { color:var(--gold); font-style:normal; }
.deck__lead { max-width:56rem; color:rgba(245,243,238,.72); font:500 clamp(1.1rem,2vw,1.5rem)/1.55 'Cormorant Garamond',serif; }
.deck__rule { width:5rem; height:2px; margin:1.8rem 0; background:var(--gradient-gold); }
.deck__grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin-top:2.5rem; }
.deck__grid--2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.deck__grid--4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.deck__card { min-height:10rem; padding:1.5rem; border:1px solid rgba(212,175,55,.25); border-radius:1rem; background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.018)); }
.deck__card--gold { border-color:var(--gold); background:linear-gradient(145deg,rgba(212,175,55,.18),rgba(212,175,55,.035)); }
.deck__card small { display:block; color:var(--gold); font-size:.68rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; margin-bottom:.7rem; }
.deck__card h3 { color:var(--cream); font-size:clamp(1.15rem,2vw,1.55rem); margin-bottom:.6rem; }
.deck__card p, .deck__card li { color:rgba(245,243,238,.7); font-size:clamp(.84rem,1.15vw,1rem); line-height:1.55; }
.deck__metric { color:var(--gold); font:600 clamp(2rem,4vw,4rem)/1 'Playfair Display',serif; }
.deck__metric-label { margin-top:.55rem; color:rgba(245,243,238,.66); font-size:.82rem; }
.deck__list { list-style:none; display:grid; gap:.75rem; }
.deck__list li { position:relative; padding-left:1.25rem; color:rgba(245,243,238,.75); }
.deck__list li::before { content:''; position:absolute; left:0; top:.7em; width:.38rem; height:.38rem; border-radius:50%; background:var(--gold); }
.deck__quote { max-width:70rem; color:var(--cream); font:500 clamp(2rem,5vw,4.7rem)/1.15 'Cormorant Garamond',serif; }
.deck__quote strong { color:var(--gold); }
.presentation-controls { position:fixed; z-index:30; inset:auto 0 0; min-height:5.3rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.8rem clamp(1rem,4vw,4rem); border-top:1px solid rgba(212,175,55,.15); background:rgba(9,9,9,.86); backdrop-filter:blur(18px); }
.presentation-controls__group { display:flex; gap:.6rem; }
.presentation-control { min-width:7rem; padding:.75rem 1rem; border:1px solid rgba(212,175,55,.35); border-radius:999px; background:transparent; color:var(--cream); cursor:pointer; font:600 .75rem/1 'Inter',sans-serif; letter-spacing:.06em; transition:.25s ease; }
.presentation-control:hover:not(:disabled) { color:#111; background:var(--gold); border-color:var(--gold); }
.presentation-control:disabled { opacity:.3; cursor:not-allowed; }
.presentation-counter { color:rgba(245,243,238,.65); font-size:.75rem; letter-spacing:.16em; }
.presentation-dots { display:flex; gap:.35rem; max-width:38vw; overflow:hidden; }
.presentation-dot { width:.42rem; height:.42rem; flex:0 0 auto; border:0; border-radius:50%; padding:0; background:rgba(245,243,238,.2); cursor:pointer; }
.presentation-dot--active { background:var(--gold); box-shadow:0 0 9px rgba(212,175,55,.65); }

@media (max-width:900px) {
  .deck__slide { align-items:start; overflow-y:auto; padding-top:7rem; }
  .deck__grid, .deck__grid--2, .deck__grid--4 { grid-template-columns:1fr 1fr; }
  .presentation-dots { display:none; }
}
@media (max-width:600px) {
  .presentation-topbar { height:4.5rem; }
  .presentation-progress { top:4.5rem; }
  .presentation-brand span { display:none; }
  .deck__slide { padding:6.2rem 1rem 6.8rem; }
  .deck__grid, .deck__grid--2, .deck__grid--4 { grid-template-columns:1fr; margin-top:1.5rem; }
  .deck__card { min-height:0; }
  .presentation-control { min-width:0; }
  .presentation-counter { display:none; }
}

/* Estados globais do design system */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  box-shadow: var(--shadow-focus);
}

.card {
  border-color: var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--shadow-surface);
  transition: transform var(--transition-base), border-color var(--transition-base), background-color var(--transition-base);
}

.btn,
.nav__link,
.footer__link,
.accordion__trigger,
.presentation-control {
  transition-duration: 320ms;
  transition-timing-function: cubic-bezier(.2,.8,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .card:hover,
  #drinks .grid--3 > .card:nth-child(2),
  #historia .grid--3 > .card:nth-child(2),
  .method__step--focus { transform: none !important; }
}
