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

:root {
  --black: #0a0a0a;
  --black-rich: #111111;
  --black-soft: #1a1a1a;
  --red: #b91c1c;
  --red-bright: #dc2626;
  --red-dark: #7f1d1d;
  --red-glow: rgba(185, 28, 28, 0.3);
  --gold: #c9a96e;
  --gold-light: #dfc090;
  --white: #f5f5f5;
  --white-muted: #a3a3a3;
  --gray: #525252;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--black);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

::selection { background: var(--red); color: var(--white); }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader .logo-loader {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--red); position: relative;
}
#loader .loader-line {
  width: 120px; height: 1px; background: var(--gray); margin-top: 2rem; position: relative; overflow: hidden;
}
#loader .loader-line::after {
  content: ''; position: absolute; left: -120px; top: 0; width: 120px; height: 100%;
  background: var(--red);
  animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderSlide { to { left: 120px; } }
.loader-icon {
  width: 80px; height: 80px; object-fit: contain;
  margin-bottom: 1.5rem;
  animation: loaderPulse 2s ease infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ─── HEADER / NAV ─── */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(185, 28, 28, 0.15);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--red); text-decoration: none;
  transition: opacity 0.3s;
}

nav ul {
  list-style: none; display: flex; gap: 2.5rem; align-items: center;
}
nav ul li a {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-muted); text-decoration: none;
  position: relative; transition: color 0.3s;
}
nav ul li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
nav ul li a:hover { color: var(--white); }
nav ul li a:hover::after { width: 100%; }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--red) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.6rem !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile Menu */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 1001; background: none; border: none; padding: 5px;
}
.menu-toggle span {
  width: 28px; height: 1.5px; background: var(--white);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.5s ease;
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav ul {
  list-style: none; text-align: center; display: flex; flex-direction: column; gap: 2rem;
}
.mobile-nav ul li a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; letter-spacing: 0.15em;
  color: var(--white-muted); text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav ul li a:hover { color: var(--red); }

/* ─── HERO ─── */
#hero {
  position: relative; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 2rem;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--red-bright);
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1.2s ease 0.7s forwards;
}
.hero-title em {
  font-style: italic; color: var(--red);
  display: inline-block;
}
.hero-divider {
  width: 80px; height: 1px;
  background: var(--red);
  margin: 2rem auto;
  opacity: 0; transform: scaleX(0);
  animation: scaleIn 0.8s ease 1.2s forwards;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 300;
  letter-spacing: 0.15em; color: var(--white-muted);
  max-width: 500px; margin: 0 auto;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s ease 1.4s forwards;
}
.hero-bull-icon {
  width: 90px; height: 90px; object-fit: contain;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px) scale(0.8);
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-address {
  font-family: var(--font-body);
  font-size: 1.1rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-top: 1.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(185, 28, 28, 0.4);
  display: inline-block; text-decoration: none;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s ease 1.6s forwards;
  transition: border-color 0.3s, color 0.3s;
}
.hero-address:hover { border-color: var(--red); color: var(--red); }
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white-muted); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px; background: var(--gray); position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -50px; left: 0;
  width: 1px; height: 50px; background: var(--red);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown { to { top: 50px; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { to { opacity: 1; transform: scaleX(1); } }

/* ─── SECTIONS COMMON ─── */
section { padding: 8rem 4rem; position: relative; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-desc {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: var(--white-muted); max-width: 550px;
}
.section-divider {
  width: 50px; height: 1px; background: var(--red); margin: 1.5rem 0;
}

/* ─── ABOUT ─── */
#sobre {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  background: var(--black);
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: brightness(0.9) saturate(0.85);
}
.about-img-frame {
  position: absolute; top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 1px solid var(--red);
  pointer-events: none;
}
.about-stats {
  display: flex; gap: 3rem; margin-top: 3rem;
}
.stat { text-align: left; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300; color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white-muted);
  margin-top: 0.3rem;
}

/* ─── EXPERIENCE / CARDS ─── */
#experiencia { background: var(--black-rich); text-align: center; }
.experience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4rem;
}
.exp-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 2rem; position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.exp-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.exp-card:hover { border-color: rgba(185, 28, 28, 0.2); transform: translateY(-5px); }
.exp-card:hover::before { transform: scaleX(1); }
.exp-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  margin-bottom: 2rem; filter: brightness(0.8);
  transition: filter 0.5s;
}
.exp-card:hover img { filter: brightness(1); }
.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400; margin-bottom: 1rem;
}
.exp-card p {
  font-size: 0.85rem; font-weight: 300; line-height: 1.7;
  color: var(--white-muted);
}

/* ─── MENU SECTION ─── */
#cardapio { background: var(--black); }
.menu-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.menu-categories { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 3rem; }
.menu-cat-btn {
  background: none; border: 1px solid rgba(255,255,255,0.08);
  color: var(--white-muted); padding: 0.8rem 1.5rem;
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-align: left;
}
.menu-cat-btn:hover, .menu-cat-btn.active {
  border-color: var(--red); color: var(--white);
  background: rgba(185, 28, 28, 0.08);
}
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.menu-item:hover { padding-left: 1rem; border-color: var(--red); }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400; color: var(--white);
}
.menu-item-desc {
  font-size: 0.78rem; color: var(--white-muted); margin-top: 0.3rem;
  font-weight: 300;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--red);
  white-space: nowrap; margin-left: 2rem;
}
.menu-img-col { position: relative; }
.menu-img-col img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: brightness(0.85);
}
.menu-img-label {
  position: absolute; bottom: 2rem; left: 2rem;
  font-family: var(--font-display);
  font-size: 1.2rem; font-style: italic;
  color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* ─── GALLERY STRIP ─── */
#galeria { padding: 6rem 0; background: var(--black-rich); overflow: hidden; }
.gallery-header { text-align: center; margin-bottom: 4rem; padding: 0 4rem; }
.gallery-strip {
  display: flex; gap: 1rem;
  animation: galleryScroll 40s linear infinite;
  width: max-content;
}
.gallery-strip img {
  height: 350px; width: auto; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
  transition: all 0.5s;
}
.gallery-strip img:hover { filter: brightness(1) saturate(1); transform: scale(1.02); }
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── TESTIMONIALS ─── */
#depoimentos { background: var(--black); text-align: center; }
.testimonial-slider { position: relative; max-width: 700px; margin: 4rem auto 0; }
.testimonial {
  display: none; flex-direction: column; align-items: center;
  animation: fadeIn 0.6s ease;
}
.testimonial.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 300; font-style: italic;
  line-height: 1.7; color: var(--white);
  position: relative; padding: 0 2rem;
}
.testimonial-quote::before {
  content: '\201C'; position: absolute; top: -1.5rem; left: -0.5rem;
  font-size: 5rem; color: var(--red); opacity: 0.3;
  font-family: var(--font-display); line-height: 1;
}
.testimonial-author {
  margin-top: 2rem; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white-muted);
}
.testimonial-dots {
  display: flex; gap: 0.8rem; justify-content: center; margin-top: 2.5rem;
}
.testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--white-muted); background: transparent;
  cursor: pointer; transition: all 0.3s;
}
.testimonial-dots button.active {
  background: var(--red); border-color: var(--red);
  transform: scale(1.2);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 5rem 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; position: relative;
}
.cta-band p {
  font-size: 0.9rem; color: rgba(255,255,255,0.8);
  margin: 1.5rem auto; max-width: 500px;
  font-weight: 300; position: relative;
}
.btn-primary {
  display: inline-block; background: var(--white);
  color: var(--red-dark); padding: 1rem 2.5rem;
  font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s; position: relative;
}
.btn-primary:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.cta-address {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500; font-style: italic;
  color: var(--white); letter-spacing: 0.03em;
  margin: 0.5rem auto 2rem; position: relative;
}

/* ─── MAP ─── */
.map-section {
  padding: 0; width: 100%; position: relative;
  filter: grayscale(0.8) brightness(0.7) contrast(1.1);
  transition: filter 0.5s;
}
.map-section:hover { filter: grayscale(0) brightness(0.9) contrast(1); }
.map-section iframe { display: block; width: 100%; height: 450px; }

/* ─── FOOTER ─── */
footer {
  background: var(--black-rich);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem 4rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-brand .nav-logo { font-size: 1.4rem; display: inline-block; margin-bottom: 1.5rem; }
.footer-brand p {
  font-size: 0.85rem; color: var(--white-muted); line-height: 1.7;
  font-weight: 300; max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.85rem; color: var(--white-muted); text-decoration: none;
  transition: color 0.3s; font-weight: 300;
}
.footer-col ul li a:hover { color: var(--red); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-muted); text-decoration: none;
  transition: all 0.3s; font-size: 1rem;
}
.footer-social a:hover {
  border-color: var(--red); color: var(--red);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem; color: var(--gray); font-weight: 300;
}
.footer-bottom a.footer-dev-link {
  color: var(--red); text-decoration: none; transition: color 0.3s;
}
.footer-bottom a.footer-dev-link:hover { color: var(--red-bright); }
.footer-dev {
  text-align: center; padding-top: 1.5rem; margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.footer-dev p {
  font-size: 0.7rem; color: var(--gray); font-weight: 300;
}
.footer-dev a {
  color: var(--red); text-decoration: none; transition: color 0.3s;
}
.footer-dev a:hover { color: var(--red-bright); }

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
  position: fixed; bottom: 5rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s; text-decoration: none;
  animation: fabPulse 2s ease infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── RESERVATION MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-overlay.active .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal {
  background: var(--black-soft);
  border: 1px solid rgba(185, 28, 28, 0.2);
  width: 90%; max-width: 480px;
  padding: 3rem; position: relative;
  transform: translateY(30px) scale(0.97); opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; color: var(--white-muted);
  font-size: 1.5rem; cursor: pointer; transition: color 0.3s;
  line-height: 1;
}
.modal-close:hover { color: var(--red); }
.modal-label {
  font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; color: var(--white);
  margin-bottom: 0.5rem;
}
.modal-subtitle {
  font-size: 0.8rem; color: var(--white-muted); font-weight: 300;
  margin-bottom: 2rem; line-height: 1.6;
}
.modal-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white-muted);
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 300; outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder { color: var(--gray); }
.form-group input[type="date"] { color-scheme: dark; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option {
  background: var(--black-soft); color: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  background: var(--red); color: var(--white);
  border: none; padding: 1rem;
  font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--red-bright); transform: translateY(-2px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  section { padding: 5rem 2rem; }
  header { padding: 1.2rem 2rem; }
  header.scrolled { padding: 0.8rem 2rem; }
  #sobre { grid-template-columns: 1fr; gap: 3rem; }
  .experience-grid { grid-template-columns: 1fr; }
  .menu-layout { grid-template-columns: 1fr; gap: 3rem; }
  .menu-img-col { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* Nav */
  nav ul { display: none; }
  .menu-toggle { display: flex; }
  header { padding: 1rem 1.2rem; }
  header.scrolled { padding: 0.8rem 1.2rem; }
  .nav-logo { font-size: 1.3rem; }

  /* Sections */
  section { padding: 3.5rem 1.2rem; }

  /* Hero */
  .hero-bull-icon { width: 60px; height: 60px; margin-bottom: 1rem; }
  .hero-tag { font-size: 0.55rem; letter-spacing: 0.3em; margin-bottom: 1.2rem; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .hero-divider { margin: 1.2rem auto; }
  .hero-address {
    font-size: 0.7rem; letter-spacing: 0.1em;
    padding: 0.5rem 1rem; margin-top: 1rem;
  }
  .hero-scroll { bottom: 1rem; }
  .hero-scroll span { font-size: 0.5rem; }
  .scroll-line { height: 30px; }

  /* About */
  .about-img-frame { display: none; }
  .about-stats {
    flex-direction: row; gap: 1.5rem;
    justify-content: space-between;
  }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.6rem; }
  .section-title { font-size: clamp(2rem, 7vw, 3rem); }
  .section-desc { font-size: 0.88rem; line-height: 1.7; }

  /* Experience cards */
  .experience-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .exp-card { padding: 2rem 1.5rem; }
  .exp-card h3 { font-size: 1.4rem; }

  /* Menu */
  .menu-categories { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
  .menu-cat-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.65rem;
    min-height: 44px;
    display: flex; align-items: center;
  }
  .menu-item { padding: 1.2rem 0; }
  .menu-item-name { font-size: 1.1rem; }

  /* Gallery */
  #galeria { padding: 3rem 0; }
  .gallery-header { padding: 0 1.2rem; margin-bottom: 2rem; }
  .gallery-strip img { height: 200px; }

  /* Testimonials */
  .testimonial-quote { font-size: 1.2rem; padding: 0 1rem; }
  .testimonial-quote::before { font-size: 3.5rem; top: -1rem; left: -0.3rem; }
  .testimonial-author { font-size: 0.65rem; }

  /* CTA */
  .cta-band { padding: 3rem 1.2rem; }
  .cta-band h2 { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .cta-address { font-size: 0.9rem; letter-spacing: 0.05em; }
  .btn-primary {
    padding: 0.9rem 2rem;
    min-height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* Map */
  .map-section iframe { height: 300px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom {
    flex-direction: column; gap: 0.8rem; text-align: center;
  }
  footer { padding: 3rem 1.2rem 1.5rem; }

  /* Modal */
  .modal { padding: 2rem 1.5rem; width: 95%; }
  .modal-title { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    min-height: 48px;
  }
  .btn-submit {
    min-height: 48px;
    font-size: 0.75rem;
  }

  /* Mobile nav links - touch friendly */
  .mobile-nav ul { gap: 1.5rem; }
  .mobile-nav ul li a {
    font-size: 1.6rem;
    padding: 0.5rem 0;
    display: inline-block;
    min-height: 44px;
  }

  /* WhatsApp FAB */
  .whatsapp-fab {
    width: 52px; height: 52px;
    bottom: 4rem; right: 1rem;
  }
  .whatsapp-fab svg { width: 24px; height: 24px; }

  /* Loader */
  .loader-icon { width: 60px; height: 60px; }
  #loader .logo-loader { font-size: 2rem; }
}

/* Extra small screens */
@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .hero-address { font-size: 0.6rem; padding: 0.4rem 0.8rem; }
  .about-stats { flex-direction: column; gap: 1rem; }
  .stat { text-align: center; }
  .section-title { font-size: 1.8rem; }
  .exp-card { padding: 1.5rem 1rem; }
  .modal { padding: 1.5rem 1rem; }
}
