/* ============================================
   SIGNATURE GASTRONOMIA — STYLE.CSS
   Identidade: buffet premium com autor · Portugal
   Paleta: off-white quente, bronze, preto
   ============================================ */

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Manrope', sans-serif; background: #F1ECE7; color: #000000; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----- TIPOGRAFIA ----- */
.display-font { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; font-weight: 400; }
.serif-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; color: #000000; }
h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4.8vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

.eyebrow { font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: #B28253; }

p { font-size: 1.02rem; line-height: 1.75; color: #2A2A2A; }
.lead { font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.6; color: #000000; font-weight: 300; }

/* ----- CONTAINER ----- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 640px) { .container, .container-narrow { padding: 0 1.5rem; } }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.5rem 0; background: rgba(241, 236, 231, 0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: padding 0.3s ease, background 0.3s ease; }
.site-header.scrolled { padding: 1rem 0; background: rgba(241, 236, 231, 0.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: #000000; letter-spacing: 0.02em; line-height: 1; font-weight: 500; }
.logo em { font-style: italic; color: #B28253; }
.logo small { font-family: 'Manrope', sans-serif; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; display: block; margin-top: 0.25rem; font-weight: 500; color: #6B6B6B; }

.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav a { font-size: 0.88rem; font-weight: 400; color: #000000; position: relative; padding: 0.3rem 0; transition: color 0.2s ease; }
.nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: #B28253; transition: width 0.3s ease; }
.nav a:hover { color: #B28253; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: #B28253; }

/* Seletor idioma */
.lang-switch { display: flex; align-items: center; gap: 0.4rem; padding-left: 1.5rem; border-left: 1px solid rgba(0, 0, 0, 0.15); }
.lang-switch button { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.5rem; color: #6B6B6B; transition: color 0.2s ease; font-weight: 500; }
.lang-switch button:hover { color: #000000; }
.lang-switch button.active { color: #B28253; }

/* Mobile menu */
.menu-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { width: 22px; height: 1.5px; background: #000000; transition: all 0.3s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav { position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px; height: 100vh; background: #F1ECE7; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2rem; padding: 2rem 3rem; transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1); box-shadow: -20px 0 40px rgba(0, 0, 0, 0.08); }
  .nav.open { right: 0; }
  .nav a { font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; }
  .lang-switch { border-left: none; border-top: 1px solid rgba(0, 0, 0, 0.15); padding: 1.5rem 0 0 0; margin-top: 1rem; }
}

/* ============================================
   BOTÕES
   ============================================ */
.btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2.2rem; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid #000000; background: #000000; color: #F1ECE7; transition: all 0.3s ease; cursor: pointer; }
.btn:hover { background: #B28253; border-color: #B28253; color: #000000; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #000000; }
.btn-outline:hover { background: #000000; color: #F1ECE7; transform: translateY(-2px); }
.btn-arrow { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; text-transform: none; letter-spacing: 0; padding: 0; border: none; background: none; color: #000000; gap: 0.6rem; position: relative; display: inline-flex; align-items: center; transition: color 0.3s ease; }
.btn-arrow::after { content: '→'; transition: transform 0.3s ease; display: inline-block; }
.btn-arrow:hover { color: #B28253; }
.btn-arrow:hover::after { transform: translateX(8px); }

/* ============================================
   HERO
   ============================================ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 8rem 0 4rem; overflow: hidden; }
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero .eyebrow { margin-bottom: 1.5rem; display: block; opacity: 0; animation: fadeUp 0.9s ease 0.2s forwards; }
.hero h1 { margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s ease 0.4s forwards; }
.hero h1 em { color: #B28253; font-style: italic; }
.hero .lead { max-width: 620px; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 1s ease 0.6s forwards; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s ease 0.8s forwards; }

/* Hero ornament — arte gastronômica sutil */
.hero-ornament { position: absolute; right: -4rem; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; opacity: 0.12; pointer-events: none; z-index: 1; }
.hero-ornament svg { width: 100%; height: 100%; }
@media (max-width: 900px) {
  .hero-ornament { right: -10rem; width: 380px; height: 380px; opacity: 0.08; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   SEÇÕES
   ============================================ */
section { padding: 7rem 0; position: relative; }
@media (max-width: 640px) { section { padding: 4.5rem 0; } }

.section-header { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 5rem; align-items: end; }
.section-header .eyebrow { margin-bottom: 1rem; display: block; }
@media (max-width: 880px) { .section-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; } }

/* Divisor decorativo */
.divider { display: flex; align-items: center; gap: 0.6rem; margin: 2rem 0; color: #000000; }
.divider::before { content: ''; width: 8px; height: 8px; border: 1px solid #B28253; border-radius: 50%; }
.divider::after { content: ''; flex: 1; height: 1px; background: #B28253; max-width: 100px; opacity: 0.4; }

/* ============================================
   FILOSOFIA / APROXIMAÇÃO
   ============================================ */
.philosophy { background: #F1ECE7; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.philosophy-grid h2 em { font-style: italic; color: #B28253; }
.philosophy-grid .lead { margin-bottom: 1.5rem; }
@media (max-width: 880px) { .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================
   BRIGADA (a força coletiva sem nomes)
   ============================================ */
.brigade { background: #000000; color: #F1ECE7; }
.brigade h2, .brigade h3 { color: #F1ECE7; }
.brigade h2 em { color: #B28253; font-style: italic; }
.brigade .eyebrow { color: #B28253; }
.brigade p { color: rgba(241, 236, 231, 0.75); }

.brigade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 3rem; }
.brigade-card { padding: 3rem 2.5rem; border-right: 1px solid rgba(241, 236, 231, 0.12); position: relative; transition: background 0.3s ease; }
.brigade-card:last-child { border-right: none; }
.brigade-card:hover { background: rgba(178, 130, 83, 0.05); }
.brigade-number { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.5rem; color: #B28253; margin-bottom: 1.5rem; }
.brigade-card h3 { margin-bottom: 1rem; }

@media (max-width: 880px) {
  .brigade-grid { grid-template-columns: 1fr; gap: 0; }
  .brigade-card { border-right: none; border-bottom: 1px solid rgba(241, 236, 231, 0.12); }
  .brigade-card:last-child { border-bottom: none; }
}

/* ============================================
   TIERS (Essenza / Live / Table)
   ============================================ */
.tiers { background: #F1ECE7; }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 900px) { .tiers-grid { grid-template-columns: 1fr; } }

.tier-card { background: #FFFFFF; padding: 2.5rem 2rem; border: 1px solid rgba(0, 0, 0, 0.08); transition: all 0.3s ease; position: relative; }
.tier-card:hover { border-color: #B28253; transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06); }
.tier-eyebrow { font-family: 'Manrope', sans-serif; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: #B28253; margin-bottom: 1rem; font-weight: 600; }
.tier-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 0.5rem; font-weight: 400; }
.tier-name em { font-style: italic; color: #B28253; }
.tier-desc { font-size: 0.95rem; color: #6B6B6B; margin-bottom: 1.5rem; line-height: 1.55; }
.tier-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #000000; margin: 1rem 0 1.5rem; font-weight: 400; }
.tier-price small { font-size: 0.75rem; font-family: 'Manrope', sans-serif; color: #6B6B6B; letter-spacing: 0.1em; text-transform: uppercase; margin-left: 0.4rem; font-weight: 500; }
.tier-list { list-style: none; padding: 0; margin: 1rem 0 0; border-top: 1px solid rgba(0, 0, 0, 0.08); padding-top: 1.5rem; }
.tier-list li { padding: 0.5rem 0; font-size: 0.9rem; color: #2A2A2A; display: flex; gap: 0.6rem; align-items: baseline; }
.tier-list li::before { content: '·'; color: #B28253; font-weight: 700; font-size: 1.2rem; line-height: 1; }

/* ============================================
   EVENTOS (nichos que atendem)
   ============================================ */
.events { background: #F1ECE7; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 900px) { .events-grid { grid-template-columns: 1fr; } }

.event-card { padding: 2.5rem; background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.08); transition: all 0.3s ease; }
.event-card:hover { border-color: #B28253; transform: translateY(-3px); }
.event-icon { width: 40px; height: 3px; background: #B28253; margin-bottom: 1.5rem; }
.event-card h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.event-card p { font-size: 0.95rem; line-height: 1.6; color: #4A4A4A; }

/* ============================================
   PROCESSO (etapas)
   ============================================ */
.process { background: #F1ECE7; }
.process-step { display: grid; grid-template-columns: 100px 1fr; gap: 3rem; padding: 3rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.process-step:last-child { border-bottom: none; }
.process-step:first-child { padding-top: 0; }
.process-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-style: italic; color: #B28253; line-height: 1; }
.process-content h3 { margin-bottom: 0.8rem; }
.process-content p { max-width: 580px; }
@media (max-width: 640px) {
  .process-step { grid-template-columns: 1fr; gap: 0.8rem; padding: 2.5rem 0; }
  .process-number { font-size: 2.5rem; }
}

/* ============================================
   CHEF MARIO (destaque no Sobre)
   ============================================ */
.chef-hero { background: #F1ECE7; padding: 12rem 0 6rem; }
.chef-hero h1 { max-width: 900px; margin-bottom: 2rem; }
.chef-hero h1 em { color: #B28253; font-style: italic; }

.chef-detail { background: #F1ECE7; padding: 4rem 0 6rem; }
.chef-detail-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
@media (max-width: 880px) { .chef-detail-grid { grid-template-columns: 1fr; gap: 2rem; } }

.chef-photo { position: relative; aspect-ratio: 4 / 5; background: #E8E0D0; overflow: hidden; }
.chef-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chef-photo.placeholder { display: flex; align-items: center; justify-content: center; }
.chef-photo.placeholder::before { content: ''; position: absolute; inset: 1rem; border: 1px solid rgba(0, 0, 0, 0.15); }
.chef-photo.placeholder span { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 4rem; color: #000000; opacity: 0.35; z-index: 1; }

.chef-info { padding-top: 0.5rem; }
.chef-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 0.3rem; line-height: 1.1; }
.chef-role { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: #B28253; margin-bottom: 1.5rem; font-weight: 600; }
.chef-info p { margin-bottom: 1rem; font-size: 1rem; }

.chef-credentials { list-style: none; padding: 0; margin: 2rem 0 0; border-top: 1px solid rgba(0, 0, 0, 0.1); padding-top: 1.5rem; }
.chef-credentials li { padding: 0.6rem 0; font-size: 0.92rem; color: #2A2A2A; display: flex; gap: 0.8rem; align-items: baseline; }
.chef-credentials li::before { content: '—'; color: #B28253; font-weight: 700; }

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto { background: #000000; color: #F1ECE7; padding: 8rem 0; text-align: center; }
.manifesto h2 { color: #F1ECE7; max-width: 900px; margin: 0 auto; font-weight: 400; }
.manifesto h2 em { color: #B28253; font-style: italic; }
.manifesto .eyebrow { color: #B28253; margin-bottom: 1.5rem; }

/* ============================================
   CTA
   ============================================ */
.cta { background: #B28253; color: #F1ECE7; padding: 7rem 0; text-align: center; position: relative; overflow: hidden; }
.cta h2 { color: #F1ECE7; max-width: 800px; margin: 0 auto 2rem; }
.cta h2 em { font-style: italic; color: #F1ECE7; opacity: 0.9; }
.cta .eyebrow { color: #F1ECE7; opacity: 0.85; margin-bottom: 1.5rem; }
.cta p { color: rgba(241, 236, 231, 0.85); max-width: 620px; margin: 0 auto 2.5rem; }
.cta .btn { background: #000000; color: #F1ECE7; border-color: #000000; }
.cta .btn:hover { background: #F1ECE7; color: #000000; border-color: #F1ECE7; }

/* ============================================
   CONTATO
   ============================================ */
.contact-hero { padding: 12rem 0 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; padding-bottom: 6rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info p { margin-bottom: 1rem; }
.contact-method { padding: 1.5rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
.contact-method:last-child { border-bottom: none; }
.contact-method .label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: #B28253; margin-bottom: 0.5rem; font-weight: 600; }
.contact-method .value { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.contact-method a:hover { color: #B28253; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; background: #FFFFFF; padding: 2.5rem; border: 1px solid rgba(0, 0, 0, 0.08); }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: #000000; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { padding: 0.85rem 0.9rem; border: 1px solid rgba(0, 0, 0, 0.15); background: #F1ECE7; font-family: 'Manrope', sans-serif; font-size: 1rem; color: #000000; transition: border-color 0.2s ease, background 0.2s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #B28253; background: #FFFFFF; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .hint { font-size: 0.78rem; color: #6B6B6B; font-weight: 400; text-transform: none; letter-spacing: 0; margin-top: 0.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #000000; color: #F1ECE7; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(241, 236, 231, 0.15); }
.footer-brand h3 { color: #F1ECE7; font-family: 'Cormorant Garamond', serif; margin-bottom: 0.3rem; font-weight: 500; }
.footer-brand h3 em { color: #B28253; font-style: italic; }
.footer-brand small { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.7; }
.footer-brand p { color: rgba(241, 236, 231, 0.65); margin-top: 1.5rem; max-width: 320px; font-size: 0.92rem; }
.footer-col h4 { color: #B28253; font-family: 'Manrope', sans-serif; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 0.9rem; color: rgba(241, 236, 231, 0.7); transition: color 0.2s ease; }
.footer-col a:hover { color: #B28253; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(241, 236, 231, 0.5); font-size: 0.8rem; }
.footer-credit { color: rgba(241, 236, 231, 0.5); font-size: 0.72rem; letter-spacing: 0.05em; }
.footer-credit a { color: rgba(241, 236, 231, 0.65); transition: color 0.2s ease; }
.footer-credit a:hover { color: #B28253; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMAÇÕES SCROLL
   ============================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   UTILS
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
[hidden] { display: none !important; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #F1ECE7; }
::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.25); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.5); }

::selection { background: #B28253; color: #F1ECE7; }

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px; background: #25D366; color: #FFFFFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 99; box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4); transition: transform 0.2s ease; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }
