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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,.15);
  --dark: #0F0D0A;
  --dark-2: #1A1712;
  --dark-3: #252118;
  --text: #E8E0D0;
  --text-muted: #9A8F7E;
  --white: #FFFFFF;
  --radius: 12px;
  --ease: cubic-bezier(.4,0,.2,1);
  --transition: .35s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== CURSOR ===== */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2; color: var(--white); margin-bottom: 24px;
}
.center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-size: .9rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
  cursor: none; border: none;
}
.btn--primary { background: var(--gold); color: var(--dark); }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.4); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.nav__btns { display: flex; gap: 8px; align-items: center; }
.btn--nav { background: var(--gold); color: var(--dark); padding: 10px 22px; font-size: .85rem; }
.btn--nav:hover { background: var(--gold-light); }
.btn--nav-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); padding: 10px 22px; font-size: .85rem; }
.btn--nav-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 18px 40px; font-size: 1rem; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  transition: var(--transition);
  /* initial state — GSAP animates in */
  opacity: 0; transform: translateY(-20px);
}
.nav--scrolled {
  background: rgba(15,13,10,.95);
  backdrop-filter: blur(16px);
  padding: 16px 48px;
  box-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); letter-spacing: .05em;
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; gap: 36px; list-style: none; }
.nav__links a {
  color: var(--text-muted); text-decoration: none;
  font-size: .9rem; font-weight: 500;
  transition: color var(--transition); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: none; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -10%;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1800&q=90') center/cover no-repeat;
  will-change: transform;
  filter: contrast(1.1) saturate(1.1) brightness(0.95);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,13,10,.95) 0%, rgba(15,13,10,.65) 55%, rgba(15,13,10,.4) 100%);
  z-index: 1;
}

/* decorative lines */
.hero__line {
  position: absolute; z-index: 2; background: rgba(201,168,76,.2);
  transform-origin: left center;
}
.hero__line--v1 { width: 1px; height: 100%; left: 10%; top: 0; transform: scaleY(0); }
.hero__line--v2 { width: 1px; height: 60%; right: 15%; top: 20%; transform: scaleY(0); }
.hero__line--h  { height: 1px; width: 40%; left: 10%; bottom: 20%; transform: scaleX(0); }

.hero__content {
  position: relative; z-index: 3;
  max-width: 700px; padding: 0 48px;
}
.hero__tag {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; /* GSAP */
}
.hero__tag::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1; color: var(--white); margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line > * { display: block; }
.hero__title em { color: var(--gold); font-style: italic; }
.hero__sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 40px; opacity: 0; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; }

.hero__scroll {
  position: absolute; bottom: 40px; left: 48px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
}
.hero__scroll-label {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); writing-mode: vertical-rl;
}
.hero__scroll-line {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__deco-num {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(12rem, 20vw, 22rem);
  font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.08);
  line-height: 1; z-index: 2; pointer-events: none;
  opacity: 0;
}

/* ===== SOBRE ===== */
.sobre { padding: 140px 0; }
.sobre__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sobre__img-wrap { position: relative; height: 520px; }
.sobre__img {
  position: absolute; border-radius: var(--radius);
  background-size: cover; background-position: center;
  opacity: 0; /* GSAP */
  filter: contrast(1.08) saturate(1.12) brightness(1.03);
}
.sobre__img--1 {
  width: 75%; height: 75%; top: 0; left: 0;
  background-image: url('https://images.unsplash.com/photo-1579584425555-c3ce17fd4351?w=800&q=90');
  background-position: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.sobre__img--2 {
  width: 60%; height: 55%; bottom: 0; right: 0;
  background-image: url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?w=800&q=90');
  border: 4px solid var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.sobre__badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--gold); color: var(--dark); border-radius: 50%;
  width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; z-index: 2;
  box-shadow: 0 8px 30px rgba(201,168,76,.4);
  opacity: 0; scale: 0; /* GSAP */
}
.sobre__badge-num { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.sobre__badge-txt { font-size: .55rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.sobre__glow {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; border-radius: 50%;
}
.sobre__text { opacity: 0; transform: translateX(40px); } /* GSAP */
.sobre__text p { color: var(--text-muted); margin-bottom: 16px; }
.sobre__stats {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08);
}
.stat strong {
  display: inline;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--gold);
}
.stat { display: flex; flex-direction: column; }
.stat span { font-size: .8rem; color: var(--text-muted); }

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: 100px 0; position: relative; overflow: hidden;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.diferenciais__bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 15vw, 14rem); font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.05);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: .1em;
}
.diferenciais__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  position: relative; z-index: 1;
}
.diferencial {
  padding: 52px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: var(--transition); position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px); /* GSAP */
}
.diferencial::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.diferencial:hover::before { opacity: 1; }
.diferencial:last-child { border-right: none; }
.diferencial__icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.diferencial h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--white); margin-bottom: 10px;
}
.diferencial p { font-size: .875rem; color: var(--text-muted); }
.diferencial__line {
  width: 0; height: 2px; background: var(--gold);
  margin: 20px auto 0; transition: width .5s var(--ease);
}
.diferencial:hover .diferencial__line { width: 40px; }

/* ===== CARDÁPIO ===== */
.cardapio { padding: 140px 0; }
.cardapio__tabs {
  display: flex; gap: 8px; justify-content: center;
  margin: 48px 0 56px; flex-wrap: wrap;
}
.tab {
  padding: 10px 28px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.12);
  background: transparent; color: var(--text-muted);
  font-size: .875rem; font-weight: 500;
  cursor: none; transition: var(--transition);
}
.tab:hover { border-color: var(--gold); color: var(--gold); }
.tab.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 600; }
.cardapio__panel { display: none; }
.cardapio__panel.active { display: block; animation: panelIn .5s var(--ease); }
.menu-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 28px 32px; background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.05); border-radius: var(--radius);
  transition: var(--transition); position: relative; overflow: hidden;
}
.menu-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s var(--ease);
}
.menu-item:hover::before { transform: scaleY(1); }
.menu-item:hover { border-color: rgba(201,168,76,.2); background: var(--dark-3); padding-left: 36px; }
.menu-item h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); margin-bottom: 6px; }
.menu-item p { font-size: .825rem; color: var(--text-muted); }
.menu-item__price { font-size: 1rem; font-weight: 700; color: var(--gold); white-space: nowrap; flex-shrink: 0; }

/* ===== INSTAGRAM ===== */
.instagram { padding: 140px 0; }
.instagram__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.instagram__sub { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05rem; max-width: 480px; }
.instagram__btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 48px; border-radius: 50px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white); font-size: 1.1rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 8px 30px rgba(220,39,67,.3);
}
.instagram__btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(220,39,67,.45); }

/* ===== DEPOIMENTOS ===== */
.depoimentos { padding: 140px 0; background: var(--dark-2); }
.depoimentos__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.depoimento {
  padding: 40px 36px; background: var(--dark-3);
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition); position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px); /* GSAP */
}
.depoimento::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.depoimento:hover::after { transform: scaleX(1); }
.depoimento:hover { border-color: rgba(201,168,76,.2); transform: translateY(-6px); }
.depoimento__quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: .8;
  color: var(--gold-dim); margin-bottom: 8px;
}
.depoimento__stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.depoimento p { font-size: .9rem; color: var(--text-muted); font-style: italic; margin-bottom: 24px; }
.depoimento__autor { display: flex; align-items: center; gap: 12px; }
.depoimento__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.depoimento__autor strong { display: block; font-size: .875rem; color: var(--white); }
.depoimento__autor span { font-size: .75rem; color: var(--text-muted); }

/* ===== CTA ===== */
.cta { position: relative; padding: 160px 0; text-align: center; overflow: hidden; }
.cta__parallax-bg {
  position: absolute; inset: -15%;
  background: url('img/unnamed.webp') center/cover no-repeat;
  will-change: transform;
}
.cta__overlay { position: absolute; inset: 0; background: rgba(15,13,10,.82); }
.cta__content { position: relative; z-index: 1; }
.cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px;
  opacity: 0; /* GSAP */
}
.cta__content h2 em { color: var(--gold); }
.cta__content p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05rem; opacity: 0; }
.cta__content .btn { opacity: 0; }

/* ===== CONTATO ===== */
.contato { padding: 140px 0; }
.contato__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contato__info { opacity: 0; transform: translateX(-40px); } /* GSAP */
.contato__item { display: flex; gap: 16px; margin-bottom: 28px; }
.contato__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contato__item strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: 4px; }
.contato__item p { font-size: .875rem; color: var(--text-muted); }
.contato__social { display: flex; gap: 16px; margin-top: 32px; }
.contato__social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.contato__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.contato__mapa {
  height: 420px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: translateX(40px); /* GSAP */
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 0; text-align: center;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer__logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer__logo span { color: var(--gold); }
.footer p { font-size: .8rem; color: var(--text-muted); }
.footer__love { color: var(--text-muted); font-size: .75rem; }

/* ===== KEYFRAMES ===== */
@keyframes scrollPulse {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .diferenciais__grid { grid-template-columns: repeat(2,1fr); }
  .diferencial { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .diferencial:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
  .sobre__grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre__img-wrap { height: 380px; }
  .contato__grid { grid-template-columns: 1fr; gap: 40px; }
  .contato__mapa { height: 320px; }
  .depoimentos__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav--scrolled { padding: 14px 24px; }
  .nav__links { 
    display: none; 
    flex-direction: column; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: rgba(15,13,10,.98); 
    backdrop-filter: blur(16px);
    padding: 24px; 
    gap: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; text-align: center; }
  .nav__toggle { display: block; }
  .nav__btns { display: none; }
  .hero__content { padding: 0 24px; }
  .hero__scroll { left: 24px; }
  .hero__deco-num { display: none; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .menu-grid { grid-template-columns: 1fr; }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .sobre__stats { flex-direction: column; gap: 20px; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .diferencial { border-right: none; }
  .diferencial:nth-child(odd) { border-right: none; }
  .cta { padding: 100px 0; }
  .cta__btns { flex-direction: column; width: 100%; }
  .cta__btns .btn { width: 100%; justify-content: center; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .btn { cursor: pointer; }
  .tab { cursor: pointer; }
  .nav__toggle { cursor: pointer; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .menu-item { padding: 20px 16px; flex-direction: column; align-items: flex-start; }
  .menu-item__price { margin-top: 8px; }
  .depoimento { padding: 28px 20px; }
  .diferencial { padding: 36px 20px; }
  .sobre__img-wrap { height: 300px; }
  .contato__item { flex-direction: column; gap: 8px; }
  .cardapio__tabs { gap: 6px; }
  .tab { padding: 8px 18px; font-size: .8rem; }
  .nav__logo { font-size: 1.3rem; }
}
