/* ============================================================
   FORNERIA FIRENZE — Main Stylesheet
   Logo: vermelho + preto + borda dourada + script "Forneria" + caps "FIRENZE"
   Fontes: Dancing Script (cursivo) · Playfair Display (títulos) · Lato (corpo)
   Cores: Vermelho #C41230 · Preto #111 · Dourado #C9A84C
   ============================================================ */

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

/* ─── VARIÁVEIS ─────────────────────────────────────────── */
:root {
  --red:        #D7060C;
  --red-dark:   #A00008;
  --red-light:  #F02030;
  --black:      #0F0F0F;
  --dark:       #1A1A1A;
  --charcoal:   #272727;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --cream:      #F5EFE6;
  --cream-dark: #EDE5D8;
  --white:      #FDFAF5;
  --text:       #1C0A00;
  --text-mid:   #5C4033;
  --text-light: #8C7063;

  --font-script:  'Dancing Script', cursive;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.12);
  --shadow-md: 0 4px 24px rgba(0,0,0,.18);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.3);
  --radius: 4px;
  --trans:  all .3s ease;
  --container: 1140px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

/* ─── TIPOGRAFIA ─────────────────────────────────────────── */
.section-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--text); margin-bottom: 1rem;
}
.section-title-light { color: var(--white); }

.section-divider {
  width: 60px; height: 3px; background: var(--red); margin: 0 0 2.5rem;
}
.section-divider-gold   { background: var(--gold); }
.section-divider-center { margin: 0 auto 2.5rem; }
.section-header { text-align: center; }
.section-header .section-divider { margin: 0 auto 2.5rem; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.container { width: min(var(--container), 100% - 2rem); margin-inline: auto; }

/* ─── BOTÕES ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 700;
  font-size: .875rem; letter-spacing: .08em; text-transform: uppercase;
  transition: var(--trans); white-space: nowrap;
}
.btn-lg { padding: .95rem 2.25rem; font-size: .95rem; }
.btn-primary { background: var(--red); color: var(--white); border: 2px solid var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 4px 18px rgba(196,18,48,.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 18px rgba(201,168,76,.4); }

/* ─── HEADER / NAV ───────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: var(--trans); padding: .85rem 0;
}
.header.scrolled {
  background: rgba(10,10,10,.97); backdrop-filter: blur(14px);
  padding: .5rem 0; box-shadow: 0 2px 24px rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(201,168,76,.18);
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* ── Logo com imagem ── */
.logo { display: flex; align-items: center; gap: .5rem; z-index: 2; flex-shrink: 0; }
.logo-img {
  height: 58px; width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
  transition: var(--trans);
}
.logo:hover .logo-img { transform: scale(1.04); }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-link {
  color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  position: relative; transition: var(--trans);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 2; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--trans); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO PRINCIPAL ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; padding: 9rem 1rem 5rem;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.55) 0%,
      rgba(100,0,0,.38) 50%,
      rgba(0,0,0,.85) 100%),
    url('../assets/images/hero-pizzas.jpg') center/cover no-repeat;
  background-color: var(--black);
}
.hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

/* Logo grande centralizada no hero */
.hero-logo {
  width: min(520px, 80vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.7));
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}

.hero-description {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.78); margin-bottom: 2.5rem;
  font-weight: 300; line-height: 1.85;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-info {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  color: rgba(255,255,255,.6); font-size: .8rem; letter-spacing: .05em;
  border-top: 1px solid rgba(201,168,76,.2); padding-top: 1.5rem;
}
.hero-info-divider { color: rgba(201,168,76,.35); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── SEÇÕES ─────────────────────────────────────────────── */
.section       { padding: 6rem 1rem; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--dark); }
.section-black { background: var(--black); }
.section-red   { background: var(--red-dark); }
.section-cta   { text-align: center; margin-top: 3rem; }

/* ─── FEATURE CARDS ──────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.feature-card {
  background: var(--white); padding: 2.5rem 2rem; border-radius: var(--radius);
  text-align: center; border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon  { font-size: 2.2rem; margin-bottom: 1.25rem; }
.feature-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text); margin-bottom: .7rem; }
.feature-text  { font-size: .88rem; color: var(--text-mid); line-height: 1.75; }

/* ─── GALERIA DE FOTOS ───────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 270px 270px;
  gap: 6px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(139,0,0,0); transition: var(--trans);
}
.gallery-item:hover::after { background: rgba(139,0,0,.22); }

.gallery-item:nth-child(1) { grid-column: 1 / 5;  grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 5 / 8;  grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 8 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 1 / 4;  grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 8;  grid-row: 2 / 3; }

/* ─── CARROSSEL DE DESTAQUES ─────────────────────────────── */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.carousel-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  z-index: 2;
  cursor: pointer;
  border: none;
}
.carousel-btn:hover { background: var(--red); color: var(--white); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  padding: 0;
}
.carousel-dot.active { background: var(--red); transform: scale(1.3); }

/* ─── PRATOS EM DESTAQUE (cards com foto) ────────────────── */
.dish-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; flex: 0 0 calc(25% - .95rem); min-width: 220px; }
.dish-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dish-card:hover img { transform: scale(1.06); }

.dish-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
}
.dish-card-category {
  font-size: .66rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .35rem;
}
.dish-card-name  { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: .25rem; }
.dish-card-price { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.65); }

/* ─── MENU PREVIEW CARDS ─────────────────────────────────── */
.menu-preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }

.menu-card {
  padding: 2rem; border-radius: var(--radius);
  transition: var(--trans); position: relative; overflow: hidden;
}
.menu-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}
.menu-card-dark { background: var(--charcoal); border: 1px solid rgba(255,255,255,.05); }
.menu-card-dark:hover { transform: translateY(-4px); background: #2e2e2e; box-shadow: var(--shadow-lg); }

.menu-card-category {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
}
.menu-card-name { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); margin-bottom: .75rem; }
.menu-card-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 1.25rem; }
.menu-card-prices { display: flex; gap: .6rem; flex-wrap: wrap; }
.menu-card-prices span {
  font-size: .75rem; font-weight: 700; color: var(--gold);
  background: rgba(201,168,76,.1); padding: .3rem .7rem;
  border-radius: 100px; border: 1px solid rgba(201,168,76,.2);
}

/* ─── PROMOÇÃO ───────────────────────────────────────────── */
.promo-content { max-width: 720px; margin: 0 auto; }
.promo-desc { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; font-weight: 300; }
.promo-prices { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.promo-price-item {
  background: rgba(0,0,0,.3); border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius); padding: 1.25rem 2rem;
  text-align: center; flex: 1; min-width: 150px;
}
.promo-price-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .5rem;
}
.promo-price-value {
  display: block; font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 700; color: var(--white);
}
.promo-obs { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.promo-pizzas-title { font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: .5rem; font-size: .9rem; }
.promo-pizzas-list  { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.75; }

/* ─── HORÁRIOS ───────────────────────────────────────────── */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hours-list { margin-bottom: 1.5rem; }
.hours-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--cream-dark); gap: 1rem;
}
.hours-day  { font-weight: 700; font-size: .9rem; color: var(--text); }
.hours-time { font-size: .9rem; color: var(--red); font-weight: 700; }
.hours-note { font-size: .85rem; color: var(--text-mid); margin-bottom: .75rem; line-height: 1.6; }
.hours-phone { font-size: 1rem; font-weight: 700; color: var(--text); }

.hours-order {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow-md); border-top: 4px solid var(--gold);
}
.hours-order-title { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 1.5rem; }

.order-options { margin-bottom: 2rem; }
.order-option {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--cream-dark);
}
.order-option:last-child { border-bottom: none; }
.order-icon { font-size: 1.5rem; flex-shrink: 0; }
.order-option-title { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .25rem; }
.order-option-info  { font-size: .85rem; color: var(--text-mid); }
.app-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.app-link {
  font-size: .75rem; font-weight: 700; color: var(--white);
  background: var(--red); padding: .25rem .75rem;
  border-radius: 100px; transition: var(--trans);
}
.app-link:hover { background: var(--red-dark); }

.payment-methods { background: var(--cream); border-radius: var(--radius); padding: 1.25rem; }
.payment-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-mid); margin-bottom: .75rem;
}
.payment-list { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: .5rem; }
.payment-item {
  font-size: .82rem; font-weight: 700; background: var(--white);
  padding: .3rem .75rem; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.payment-note { font-size: .75rem; color: var(--red); font-weight: 700; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black); color: rgba(255,255,255,.65);
  padding: 4rem 1rem 2rem;
  border-top: 1px solid rgba(201,168,76,.2);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo-img { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-heading {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer ul { display: flex; flex-direction: column; gap: .6rem; }
.footer ul a { font-size: .88rem; color: rgba(255,255,255,.55); transition: var(--trans); }
.footer ul a:hover { color: var(--gold); }
.footer-contact p, .footer-link { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: .4rem; }
.footer-link { transition: var(--trans); display: block; }
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem; text-align: center;
  font-size: .78rem; color: rgba(255,255,255,.3);
}

/* ─── PAGE HERO (páginas internas) ───────────────────────── */
.page-hero {
  padding: 10rem 1rem 5rem;
  text-align: center; position: relative;
  background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.78)),
    url('../assets/images/pizza-close.jpg') center/cover no-repeat;
  background-color: var(--dark);
}
.page-hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--white); margin-bottom: 1rem; }
.page-hero-desc  { color: rgba(255,255,255,.68); font-size: 1.05rem; font-weight: 300; max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ─── MENU NAV (cardápio) ────────────────────────────────── */
.menu-nav { background: var(--dark); position: sticky; top: 62px; z-index: 100; border-bottom: 1px solid rgba(255,255,255,.06); }
.menu-nav-scroll { display: flex; overflow-x: auto; scrollbar-width: none; }
.menu-nav-scroll::-webkit-scrollbar { display: none; }
.menu-nav-btn {
  padding: 1rem 1.4rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); white-space: nowrap;
  border-bottom: 3px solid transparent; transition: var(--trans);
}
.menu-nav-btn:hover, .menu-nav-btn.active { color: var(--white); border-bottom-color: var(--gold); }

/* ─── CARDÁPIO SEÇÕES ────────────────────────────────────── */
.menu-section { padding: 5rem 1rem; border-bottom: 1px solid var(--cream-dark); }
.menu-section:nth-child(even) { background: var(--cream); }
.menu-section-title    { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.menu-section-subtitle { font-size: .85rem; color: var(--text-mid); margin-bottom: 2.5rem; font-style: italic; }

.menu-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.25rem; }

.menu-item {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--cream-dark); transition: var(--trans);
}
.menu-item:hover { border-color: rgba(201,168,76,.35); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.menu-item-name  { font-family: var(--font-heading); font-size: 1.12rem; color: var(--text); margin-bottom: .45rem; }
.menu-item-desc  { font-size: .855rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.menu-item-prices { display: flex; gap: .45rem; flex-wrap: wrap; }

.price-tag {
  font-size: .76rem; font-weight: 700; color: var(--red);
  background: rgba(196,18,48,.05); border: 1px solid rgba(196,18,48,.15);
  padding: .28rem .65rem; border-radius: 100px;
}
.price-tag span { font-size: .64rem; color: var(--text-mid); font-weight: 400; display: block; }
.menu-item-single-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--red); }
.menu-obs { font-size: .78rem; color: var(--red); margin-top: .5rem; font-style: italic; }

.size-legend {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
  padding: .9rem 1.25rem; background: var(--cream); border-radius: var(--radius);
  font-size: .8rem; color: var(--text-mid); align-items: center;
}
.size-legend strong { color: var(--text); }

.info-box {
  background: var(--cream); border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .875rem; color: var(--text-mid); margin-bottom: 2rem;
}
.info-box strong { color: var(--text); }

/* ─── VINHOS ─────────────────────────────────────────────── */
.wine-section { background: var(--dark); color: var(--white); }
.wine-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.wine-country { background: var(--charcoal); border-radius: var(--radius); padding: 1.75rem; border-top: 3px solid var(--gold); }
.wine-country-name { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.wine-entry { display: flex; justify-content: space-between; align-items: baseline; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.06); gap: .5rem; }
.wine-entry:last-child { border-bottom: none; }
.wine-name  { font-size: .875rem; color: rgba(255,255,255,.82); flex: 1; }
.wine-price { font-size: .875rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

.wine-glass-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.wine-glass-item { background: var(--charcoal); border-radius: var(--radius); padding: 1.5rem; border-top: 2px solid var(--gold); }
.wine-glass-name  { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); margin-bottom: .25rem; }
.wine-glass-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: .75rem; }
.wine-glass-desc  { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ─── CONTATO ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-block { margin-bottom: 2.5rem; }
.contact-block-title {
  font-family: var(--font-heading); font-size: 1.2rem; color: var(--text);
  margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem;
}
.contact-block-title::after { content: ''; flex: 1; height: 1px; background: var(--cream-dark); }
.contact-item { display: flex; align-items: center; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid var(--cream-dark); font-size: .9rem; color: var(--text-mid); }
.contact-item:last-child { border-bottom: none; }
.contact-item-label { font-weight: 700; color: var(--text); font-size: .8rem; min-width: 80px; }

/* ─── CHATBOT ────────────────────────────────────────────── */
.chatbot-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.chatbot-toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 24px rgba(196,18,48,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: var(--trans);
  border: 2px solid rgba(201,168,76,.4);
}
.chatbot-toggle:hover { background: var(--red-dark); transform: scale(1.08); }
.chatbot-toggle-close { display: none; font-size: 1.1rem; }
.chatbot-widget.open .chatbot-toggle-icon  { display: none; }
.chatbot-widget.open .chatbot-toggle-close { display: block; }

.chatbot-window {
  display: none; flex-direction: column;
  width: 340px; height: 480px;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--cream-dark);
}
.chatbot-widget.open .chatbot-window { display: flex; }

.chatbot-header {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem;
  border-bottom: 2px solid rgba(201,168,76,.3);
}
.chatbot-avatar { width: 38px; height: 38px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.chatbot-name   { font-weight: 700; color: var(--white); font-size: .9rem; }
.chatbot-status { font-size: .72rem; color: rgba(255,255,255,.72); }

.chatbot-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.chat-message  { display: flex; }
.bot-message   { justify-content: flex-start; }
.user-message  { justify-content: flex-end; }
.message-bubble { max-width: 80%; padding: .75rem 1rem; border-radius: 12px; font-size: .875rem; line-height: 1.55; }
.bot-message  .message-bubble { background: var(--cream); color: var(--text); border-bottom-left-radius: 2px; }
.user-message .message-bubble { background: var(--red); color: var(--white); border-bottom-right-radius: 2px; }

.chat-typing .message-bubble { display: flex; gap: 4px; align-items: center; padding: .875rem 1rem; }
.typing-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-mid); animation: typingBounce 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-8px); } }

.chatbot-input-area { display: flex; padding: .75rem 1rem; gap: .5rem; border-top: 1px solid var(--cream-dark); background: var(--white); }
.chatbot-input { flex: 1; border: 1.5px solid var(--cream-dark); border-radius: 100px; padding: .6rem 1rem; font-family: var(--font-body); font-size: .875rem; outline: none; color: var(--text); transition: var(--trans); }
.chatbot-input:focus { border-color: var(--red); }
.chatbot-send { width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: var(--white); font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--trans); flex-shrink: 0; }
.chatbot-send:hover { background: var(--red-dark); }

/* ─── LOCALIZAÇÃO / MAPA ─────────────────────────────────── */
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--cream-dark);
  height: 420px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }
.map-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
  height: fit-content;
}
.map-info-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text); margin-bottom: 1.25rem; }
.map-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: .9rem;
}
.map-detail:last-of-type { border-bottom: none; }
.map-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.map-detail-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mid); margin-bottom: .2rem; }
.map-detail-value { color: var(--text); font-weight: 600; }

/* ─── RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 220px 220px; }
  .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 2 / 3; }
}
@media (max-width: 900px) {
  .hours-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .localizacao-grid { grid-template-columns: 1fr; }
  .map-wrapper      { height: 300px; }
}
@media (max-width: 700px) {
  .nav-links {
    position: fixed; inset: 0; background: rgba(10,10,10,.98);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2.5rem; transform: translateX(100%); transition: transform .4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-link { font-size: 1.1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 1 / 3; grid-row: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .promo-prices { flex-direction: column; }
  .chatbot-window { width: calc(100vw - 2rem); }
}
@media (max-width: 480px) {
  .section { padding: 4rem 1rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-lg   { width: 100%; justify-content: center; }
  .dish-card { flex: 0 0 calc(100% - 0px); min-width: 0; }
}
