/* ============================================================
   PADARIA AVIAPÃO — DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Montserrat:wght@300;400;600;700&display=swap');

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

:root {
  --bg-dark:    #282829;
  --bg-light:   #E6E7E8;
  --text-dark:  #373435;
  --text-light: #FFFFFF;
  --accent:     #C8A96E;       /* dourado aviação */
  --accent-dim: rgba(200,169,110,0.15);
  --glass-bg:   rgba(40,40,41,0.72);
  --glass-border: rgba(255,255,255,0.10);
  --metal-border: rgba(200,169,110,0.35);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Righteous', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --shadow-card:  0 8px 32px rgba(0,0,0,0.45);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.65);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.text-accent { color: var(--accent); }
.text-muted  { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.75rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition), background var(--transition);
}

#header.scrolled {
  padding: 0.4rem 2rem;
  background: rgba(40,40,41,0.92);
}

.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(200,169,110,0.4));
  transition: transform var(--transition);
}
.nav-logo:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(200,169,110,0.35);
}
.btn-primary:hover {
  background: #daba80;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,169,110,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* ── SECTION BASE ─────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 5rem 2rem;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent));
}
.section-divider::after {
  background: linear-gradient(to left, transparent, var(--accent));
}
.section-divider span {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

/* ── HERO SECTION ─────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(40,40,41,0.55) 0%,
    rgba(40,40,41,0.75) 60%,
    rgba(40,40,41,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 0 1rem;
}

.hero-logo {
  width: clamp(220px, 35vw, 420px);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(200,169,110,0.2));
  animation: floatLogo 4s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--metal-border);
  padding: 0.3rem 1.2rem;
  border-radius: 2px;
}

.hero-title {
  color: var(--text-light);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  max-width: 700px;
}

.hero-slogan {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll svg { width: 20px; }

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

/* ── NOSSA HISTÓRIA ───────────────────────────────────────── */
#historia {
  background: var(--bg-dark);
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.historia-text .label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.historia-text h2 {
  margin-bottom: 1.5rem;
}

.historia-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.historia-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid var(--metal-border);
  padding: 0.45rem 1.3rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.historia-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--metal-border);
  aspect-ratio: 4/3;
}

.historia-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.historia-image:hover img { transform: scale(1.04); }

.historia-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,110,0.2);
  pointer-events: none;
}

/* ── PILARES ──────────────────────────────────────────────── */
#pilares {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #202021 100%);
  padding: 5rem 2rem;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pilar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--metal-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-card);
}

.pilar-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200,169,110,0.55);
}

.pilar-card-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.pilar-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pilar-card:hover .pilar-card-img img { transform: scale(1.08); }

.pilar-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(40,40,41,0.85) 100%);
}

.pilar-card-body {
  padding: 1.25rem 1.1rem 1.5rem;
}

.pilar-number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
}

.pilar-card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.pilar-card-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.pilar-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  background: var(--accent-dim);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--metal-border);
}

.pilar-card.glass:not(:has(.pilar-card-img)) {
  padding: 1.5rem;
}

.team-banner {
  max-width: 1200px;
  margin: 6rem auto 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/5;
  border: 1px solid var(--metal-border);
  box-shadow: var(--shadow-card);
}

.team-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-banner-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--metal-border);
  padding: 0.5rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  white-space: nowrap;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  text-align: center;
  background: linear-gradient(180deg, #1a1a1b 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* ── CARDÁPIO GRID ────────────────────────────────────────── */
.cardapio-highlight {
  background: linear-gradient(135deg, rgba(200,169,110,0.12) 0%, rgba(40,40,41,0) 60%);
  border: 1px solid var(--metal-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.cardapio-highlight img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--metal-border);
  flex-shrink: 0;
}

.cardapio-highlight-text h2 {
  margin-bottom: 0.5rem;
}

.cardapio-highlight-text p {
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

.categoria-section {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.categoria-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.categoria-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--metal-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.categoria-header h2 {
  font-size: 1.5rem;
}

.categoria-bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--metal-border), transparent);
}

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

.produto-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
}

.produto-card:hover {
  transform: translateY(-5px);
  border-color: var(--metal-border);
  box-shadow: var(--shadow-hover);
}

.produto-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.produto-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.produto-card:hover .produto-card-img img { transform: scale(1.07); }

.produto-card-body {
  padding: 1rem;
}

.produto-card-body h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.produto-card-body p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.produto-price {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ── PADOCATEL ────────────────────────────────────────────── */
.padocatel-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 2rem;
}

.padocatel-intro p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 280px));
  justify-content: center;
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.kit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--metal-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
}

.kit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.6);
  box-shadow: var(--shadow-hover);
}

.kit-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.kit-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.kit-card:hover .kit-card-img img { transform: scale(1.06); }

.kit-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 10;
}

.kit-card-body {
  padding: 1.5rem;
}

.kit-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.kit-card-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.kit-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
}

/* ── AVULSOS TABLE ────────────────────────────────────────── */
.avulsos-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.avulsos-block {
  margin-bottom: 2.5rem;
}

.avulsos-block h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avulsos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
  justify-content: center;
  gap: 0.75rem;
}

.avulso-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 0.95rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.avulso-item:hover {
  border-color: var(--metal-border);
  background: rgba(200,169,110,0.07);
}

.avulso-name {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.avulso-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 0.75rem;
}

/* ── BEBIDAS ──────────────────────────────────────────────── */
.bebidas-section {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.bebidas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  justify-content: center;
  gap: 1.25rem;
}

.bebida-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bebida-card:hover {
  border-color: var(--metal-border);
  background: rgba(200,169,110,0.06);
}

.bebida-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.bebida-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.bebida-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent);
}

.vip-note {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(200,169,110,0.12), rgba(200,169,110,0.05));
  border: 1px solid var(--metal-border);
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.vip-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.vip-note p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.vip-note strong { color: var(--accent); }

/* ── LOCALIZAÇÃO ──────────────────────────────────────────── */
#localizacao {
  background: #202021;
  padding: 5rem 2rem;
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.horarios-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--metal-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.horarios-card h3 {
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.horario-row:last-child { border-bottom: none; }

.horario-dia {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.horario-horas {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: right;
}

.horario-tag {
  font-size: 0.7rem;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--metal-border);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-top: 0.2rem;
}

.endereco-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.endereco-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--metal-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.endereco-info h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.endereco-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mapa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,169,110,0.15);
  border: 1px solid var(--metal-border);
  color: var(--accent);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  transition: var(--transition);
}

.mapa-btn:hover {
  background: rgba(200,169,110,0.25);
  transform: translateY(-2px);
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: #1a1a1b;
  padding: 4rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 0;
  padding-bottom: 3rem;
}

/* Bloco de contato direto */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-contact-item:hover { color: var(--accent); }

.footer-contact-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.footer-contact-icon.wpp  { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.25); }
.footer-contact-icon.inst { background: rgba(200,169,110,0.12); border-color: var(--metal-border); }
.footer-contact-icon.addr { background: rgba(255,255,255,0.05); }
.footer-contact-icon.cnpj { background: rgba(255,255,255,0.05); }

.footer-contact-item:hover .footer-contact-icon.wpp  { background: rgba(37,211,102,0.22); }
.footer-contact-item:hover .footer-contact-icon.inst { background: rgba(200,169,110,0.22); }

.footer-contact-icon svg  { width: 17px; height: 17px; }
.footer-contact-icon.wpp  svg { fill: #25D366; }
.footer-contact-icon.inst svg { fill: var(--accent); }
.footer-contact-icon.addr svg,
.footer-contact-icon.cnpj svg { fill: rgba(255,255,255,0.45); }

.footer-contact-text strong {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1px;
  text-transform: uppercase;
}

.footer-brand .footer-logo {
  width: 140px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(200,169,110,0.2));
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(200,169,110,0.15);
  border-color: var(--metal-border);
  transform: translateY(-2px);
}

.social-link svg { width: 18px; height: 18px; fill: var(--text-light); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text-light); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-submit {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-submit:hover { background: #daba80; transform: translateY(-1px); }

.footer-balcao {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  opacity: 0.6;
  border-radius: var(--radius) var(--radius) 0 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
  backdrop-filter: blur(4px);
}

#lightbox.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

#lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  cursor: default;
}

#lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  background: none;
  border: none;
}
#lightbox-close:hover { color: var(--text-light); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  /* Usa will-change para que o browser crie layer GPU antes da animação */
  will-change: opacity, transform;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  /* Libera a layer GPU depois que já apareceu */
  will-change: auto;
}

/* Delays reduzidos: era 0.1/0.2/0.3/0.4s, agora são mais rápidos
   para não sobrepor com a animação de snap */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── SNAP SCROLL (Home) ───────────────────────────────────── */
.snap-container {
  height: 100vh;
  overflow-y: scroll;
  /* proximity: faz snap apenas quando o usuário para PERTO de uma
     seção. Ao contrário de 'mandatory', permite rolar livremente
     por seções maiores que 100vh (como Pilares) sem truncar. */
  scroll-snap-type: y proximity;
  overscroll-behavior: none;
}

.snap-section {
  scroll-snap-align: start;
  min-height: 100vh;
  /* contain removido: estava ocultando overflow em seções altas */
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── PAGE TRANSITIONS ─────────────────────────────────────── */
.page-fade-in {
  animation: fadeIn 0.5s ease;
}

/* ── MOBILE RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col-contact { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  #header { padding: 0.6rem 1.25rem; }

  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(28,28,29,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    border-right: 1px solid var(--metal-border);
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }

  .snap-container { scroll-snap-type: none; height: auto; overflow-y: visible; }
  .snap-section { min-height: auto; }

  .historia-grid { grid-template-columns: 1fr; }
  .historia-image { aspect-ratio: 16/9; }
  .pilares-grid { grid-template-columns: 1fr; }
  .localizacao-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-banner { aspect-ratio: 16/8; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }

  .kits-grid { grid-template-columns: 1fr; }
  .cardapio-highlight { flex-direction: column; text-align: center; }
  .cardapio-highlight img { margin: 0 auto; }

  .avulsos-grid { grid-template-columns: 1fr; }
}

/* ── AVULSOS & TEXT LISTS ─────────────────────────────────── */
.avulsos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.85rem;
}

.avulso-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--accent-dim);
  border-radius: 6px;
  transition: var(--transition);
}

.avulso-item:hover {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--accent);
}

.avulso-nome {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.avulso-price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 1.25rem; }
  .historia-grid { padding: 3.5rem 1.25rem; }
  .produtos-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
