@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --black:        #0D0D0D;
  --black-deep:   #070707;
  --black-light:  #141414;
  --off-white:    #FFFFFF;
  --wine:         #8B1A1A;
  --wine-lt:      #a31f1f;
  --wine-glow:    rgba(139, 26, 26, 0.25);
  --gray:         #888888;
  --gray-dark:    #3A3A3A;
  --gray-light:   #E8E4DE;
  --beige:        #E8E4DE;
  --serif:        'Cormorant Garamond', serif;
  --sans:         'DM Sans', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast:   all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-premium:    0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow:       0 0 24px var(--wine-glow);
}

html { scroll-behavior: smooth; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black-deep); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 4px; transition: var(--transition-smooth); }
::-webkit-scrollbar-thumb:hover { background: var(--wine); }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Selection */
::selection { background: var(--wine); color: var(--off-white); }

/* ── PLACEHOLDERS & IMAGES ──────────────────── */
.ph {
  background-color: #1c1414;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(139,26,26,.15) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}
.ph > span {
  display: none;
}

/* Image zoom on hover */
.svc-card:hover .ph,
.prod-item:hover .prod-img,
.sommelier-spot:hover .sommelier-img,
.manifesto:hover .manifesto-img,
.hist-grid:hover .hist-img,
.curso-card:hover .ph,
.som-hero:hover .som-img,
.marcos-bio:hover .marcos-bio-img,
.ev-mod:hover .ev-mod-img,
.loja-full:hover .loja-map,
.loja-joinville:hover .loja-map,
.founder-card:hover .founder-photo {
  transform: scale(1.02);
}
.svc-card:hover .ph span,
.prod-item:hover .prod-img span,
.sommelier-spot:hover .sommelier-img span,
.manifesto:hover .manifesto-img span,
.hist-grid:hover .hist-img span,
.curso-card:hover .ph span,
.som-hero:hover .som-img span,
.marcos-bio:hover .marcos-bio-img span,
.ev-mod:hover .ev-mod-img span,
.loja-full:hover .loja-map span,
.loja-joinville:hover .loja-map span,
.founder-card:hover .founder-photo span {
  color: rgba(255,255,255,.3);
  letter-spacing: .25em;
}

/* ── NAVIGATION ──────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(to bottom, rgba(13,13,13,.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
nav.scrolled {
  background: rgba(10,10,10,.98);
  padding: 16px 64px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-logo { text-decoration: none; display: flex; align-items: center; height: 36px; transition: var(--transition-smooth); }
.nav-logo:hover { transform: scale(1.03); }
.nav-logo img { height: 100%; width: auto; object-fit: contain; display: block; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--off-white);
}
.nav-logo-text em { color: var(--wine); font-style: normal; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: var(--off-white); }

.nav-btn {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,.24);
  padding: 12px 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  border-radius: 1px;
}
.nav-btn:hover { background: var(--wine); border-color: var(--wine); box-shadow: var(--shadow-glow); transform: translateY(-2px); }

/* Hamburger Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 210;
  transition: var(--transition-smooth);
}
.nav-hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--off-white);
  transition: var(--transition-smooth);
  transform-origin: left center;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(2px, 0px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(2px, 1px); }

/* Nav Drawer Overlay */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 7, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 205;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 64px 32px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}
.nav-drawer.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.drawer-links a {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 300;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
  letter-spacing: .02em;
}
.nav-drawer.active .drawer-links a {
  opacity: 1;
  transform: translateY(0);
}
.nav-drawer.active .drawer-links li:nth-child(1) a { transition-delay: 0.08s; }
.nav-drawer.active .drawer-links li:nth-child(2) a { transition-delay: 0.12s; }
.nav-drawer.active .drawer-links li:nth-child(3) a { transition-delay: 0.16s; }
.nav-drawer.active .drawer-links li:nth-child(4) a { transition-delay: 0.20s; }
.nav-drawer.active .drawer-links li:nth-child(5) a { transition-delay: 0.24s; }
.nav-drawer.active .drawer-links li:nth-child(6) a { transition-delay: 0.28s; }
.nav-drawer.active .drawer-links li:nth-child(7) a { transition-delay: 0.32s; }
.nav-drawer.active .drawer-links li:nth-child(8) a { transition-delay: 0.36s; }

.drawer-links a:hover,
.drawer-links a.active {
  color: var(--off-white);
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
}
.drawer-footer {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.4s;
}
.nav-drawer.active .drawer-footer {
  opacity: 1;
  transform: translateY(0);
}

body.scroll-locked { overflow: hidden !important; }

/* ── BUTTONS ──────────────────────────────────── */
.btn-wine, .btn-dark, .btn-white, .btn-outline-white, .btn-ghost, .btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border-radius: 1px;
}

.btn-wine {
  background: var(--wine);
  color: var(--off-white);
  padding: 16px 36px;
}
.btn-wine:hover { background: var(--wine-lt); transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-dark {
  background: var(--black-light);
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 40px;
}
.btn-dark:hover { background: var(--gray-dark); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-white {
  background: var(--off-white);
  color: var(--black);
  padding: 16px 38px;
  font-weight: 500;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255,255,255,0.15); }

.btn-outline-white {
  border: 1px solid rgba(255,255,255,.3);
  color: var(--off-white);
  padding: 16px 38px;
}
.btn-outline-white:hover { border-color: var(--off-white); background: rgba(255,255,255,0.05); transform: translateY(-2px); }

.btn-ghost {
  color: var(--off-white);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 4px;
}
.btn-ghost:hover { border-color: var(--off-white); color: var(--wine-lt); padding-bottom: 6px; }

.btn-ghost-dark {
  color: var(--black);
  border-bottom: 1px solid rgba(13,13,13,.3);
  padding-bottom: 4px;
}
.btn-ghost-dark:hover { border-color: var(--black); color: var(--wine); padding-bottom: 6px; }

/* ── TYPOGRAPHY ───────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 20px;
  font-weight: 500;
}
.eyebrow-dark { color: var(--wine); }

.divider { width: 40px; height: 1px; background: var(--wine); display: block; margin: 24px 0; }

/* ── SECTIONS ─────────────────────────────────── */
.sec  { padding: 120px 64px; position: relative; }
.sec-light { background: var(--off-white); color: var(--black); }
.sec-dark   { background: var(--black-deep); }
.sec-mid    { background: #0A0A0A; }
.sec-deep   { background: #050505; }

/* Radial lights under sections */
.sec-dark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(139, 26, 26, 0.15), transparent);
}

/* ── FORM CONTROLS ────────────────────────────── */
.form-group { margin-bottom: 22px; text-align: left; }
.form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: var(--transition-smooth);
  border-radius: 2px;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.15);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255,255,255,.06);
  border-color: var(--wine);
  box-shadow: 0 0 15px rgba(139, 26, 26, 0.2);
}
.form-group select option { background: #111; color: var(--off-white); }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 0 64px 80px;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #1d0f0f 0%, #0a0a0a 55%, #16110d 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(139,26,26,.2) 0%, transparent 55%),
    linear-gradient(to top, rgba(13,13,13,.95) 0%, transparent 55%);
}
.page-hero-img {
  position: absolute;
  inset: 0;
  opacity: 0.65;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.page-hero-content h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  margin-bottom: 12px;
}
.page-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 540px;
}
.breadcrumb {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-bottom: 24px;
}
.breadcrumb a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--off-white); }
.breadcrumb .sep { margin: 0 8px; }
.breadcrumb .cur { color: var(--wine); }

/* ── SCROLL REVEAL ANIMATIONS ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > .reveal {
  transition-delay: calc(var(--reveal-index, 0) * 0.1s);
}

/* ── HOME: HERO ─────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 64px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #1d0f0f 0%, #0a0a0a 55%, #16110d 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 38%, rgba(139,26,26,.18) 0%, transparent 55%),
    linear-gradient(to top, rgba(13,13,13,.9) 0%, transparent 55%);
}
.hero-photo {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 5.8vw, 84px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 44px; right: 64px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--wine), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 50%;
  background: var(--off-white);
  animation: scrollLineAnimation 2s infinite ease-in-out;
}
@keyframes scrollLineAnimation {
  0% { transform: translateY(-100%); }
  80%, 100% { transform: translateY(200%); }
}

/* ── HOME: MANIFESTO ────────────────────────── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.manifesto-text {
  background: var(--black);
  padding: 120px 80px 120px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.manifesto-text h2 { font-size: clamp(34px, 3.5vw, 52px); margin-bottom: 28px; }
.manifesto-text p { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.85; margin-bottom: 18px; }
.manifesto-text blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  border-left: 2px solid var(--wine);
  padding-left: 22px;
  margin: 32px 0;
}
.manifesto-text blockquote cite {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-top: 10px;
}
.manifesto-img { min-height: 100%; }

/* ── HOME: SERVICES ─────────────────────────── */
.services { background: var(--black-deep); padding: 120px 64px; }
.services-head { margin-bottom: 60px; }
.services-head h2 { font-size: clamp(32px, 3.5vw, 48px); max-width: 520px; margin-top: 16px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(232,228,222,.06);
}
.svc-card {
  background: #0D0D0D;
  padding: 48px 32px;
  transition: var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.svc-card:hover {
  background: #141414;
  border-color: rgba(139, 26, 26, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}
.svc-num {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 300;
  color: rgba(139,26,26,.22);
  line-height: 1;
  margin-bottom: 26px;
  transition: var(--transition-smooth);
}
.svc-card:hover .svc-num { color: var(--wine); }
.svc-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
}
.svc-card p { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.72; flex: 1; margin-bottom: 28px; }
.svc-link {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
  transition: var(--transition-smooth);
}
.svc-card:hover .svc-link { color: var(--off-white); letter-spacing: .2em; }

/* ── HOME: PRODUCTS TEASER ──────────────────── */
.prod-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: end;
}
.prod-head h2 { font-size: clamp(34px, 3.5vw, 52px); }
.prod-head p  { font-size: 15px; color: var(--gray); line-height: 1.85; }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prod-item {
  transition: var(--transition-smooth);
}
.prod-item h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 6px;
  transition: var(--transition-fast);
}
.prod-item:hover h4 { color: var(--wine); }
.prod-item p  { font-size: 13px; color: var(--gray); line-height: 1.5; }
.prod-img {
  height: 250px;
  background: linear-gradient(145deg, #2a1e18 0%, #160e0a 100%);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
}

/* ── HOME: SOMMELIER SPOTLIGHT ──────────────── */
.sommelier-spot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: #060606;
}
.sommelier-img { min-height: 560px; }
.sommelier-text {
  padding: 80px 80px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sommelier-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--wine);
  border: 1px solid rgba(139,26,26,.4);
  padding: 6px 14px;
  margin-bottom: 28px;
  width: fit-content;
}
.sommelier-text h2 {
  font-size: clamp(38px, 4.5vw, 64px);
  margin-bottom: 10px;
}
.sommelier-text h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.sommelier-text p {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  line-height: 1.85;
  margin-bottom: 20px;
}
.sommelier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 36px;
}
.sommelier-tags span {
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(232,228,222,.12);
  padding: 6px 12px;
  transition: var(--transition-fast);
}
.sommelier-tags span:hover {
  border-color: var(--wine);
  color: var(--off-white);
  background: rgba(139, 26, 26, 0.1);
}

/* ── HOME: LOJAS TEASER ─────────────────────── */
.lojas-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
  align-items: end;
}
.lojas-head h2 { font-size: clamp(34px, 3.5vw, 52px); }
.lojas-head p  { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8; }
.lojas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(232,228,222,.06);
}
.loja-card {
  background: #0D0D0D;
  padding: 38px 28px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}
.loja-card:hover {
  background: #141414;
  border-color: rgba(139, 26, 26, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}
.loja-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}
.loja-card:hover .loja-name { color: var(--wine); }
.loja-addr { font-size: 12.5px; color: rgba(255,255,255,.38); line-height: 1.6; margin-bottom: 14px; }
.loja-hours { font-size: 10px; letter-spacing: .04em; color: var(--wine); transition: var(--transition-fast); }
.loja-card:hover .loja-hours { color: var(--off-white); }

/* ── HOME: PROOF ────────────────────────────── */
.proof-head { text-align: center; margin-bottom: 56px; }
.proof-head h2 { font-size: clamp(34px, 3.8vw, 52px); color: var(--black); }
.proof-head p  { font-size: 15px; color: var(--gray); margin-top: 10px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi {
  background: #fff;
  padding: 44px 38px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.testi:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: rgba(139, 26, 26, 0.15);
}
.testi-stars { color: var(--wine); font-size: 13px; letter-spacing: 3px; margin-bottom: 18px; }
.testi blockquote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testi-author { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }

/* ── SOBRE PAGE ─────────────────────────────── */
.hist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hist-grid h2 { font-size: clamp(34px,3.5vw,52px); margin-bottom: 28px; }
.hist-grid p  { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.85; margin-bottom: 16px; }
.hist-img     { height: 520px; }
.hist-grid.reverse { direction: rtl; }
.hist-grid.reverse > * { direction: ltr; }

.timeline { padding: 120px 64px; background: var(--black-deep); }
.timeline h2 { font-size: clamp(30px,3vw,44px); margin-bottom: 60px; }
.tl-items { display: flex; flex-direction: column; gap: 0; border-left: 1px solid rgba(232,228,222,.1); margin-left: 20px; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 40px; padding: 32px 0 32px 48px; position: relative; transition: var(--transition-smooth); }
.tl-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 38px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--wine);
  transition: var(--transition-smooth);
}
.tl-item:hover::before {
  transform: scale(1.6);
  background: var(--off-white);
  box-shadow: 0 0 10px var(--wine);
}
.tl-year {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--wine);
  line-height: 1;
  padding-top: 4px;
  transition: var(--transition-smooth);
}
.tl-item:hover .tl-year { color: var(--off-white); }
.tl-text h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  transition: var(--transition-smooth);
}
.tl-item:hover .tl-text h4 { color: var(--wine); }
.tl-text p { font-size: 13.5px; color: rgba(255,255,255,.48); line-height: 1.65; }

.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.founder-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: start;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
}
.founder-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 26, 26, 0.2);
  transform: translateY(-2px);
}
.founder-photo { height: 200px; display:flex; align-items:center; justify-content:center; }
.founder-info h3 { font-family: var(--serif); font-size:24px; font-weight:400; margin-bottom:6px; }
.founder-role { font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--wine); margin-bottom:12px; }
.founder-info p { font-size:13px; color:rgba(255,255,255,.55); line-height:1.7; }

/* ── PRODUTOS PAGE ──────────────────────────── */
.prod-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  gap: 1px;
  background: rgba(232,228,222,.06);
  margin-bottom: 1px;
}
.prod-line-img { min-height: 420px; }
.prod-line-text {
  background: #0D0D0D;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prod-line.alt .prod-line-text { background: #0a0a0a; }
.prod-line.reverse { direction: rtl; }
.prod-line.reverse > * { direction: ltr; }
.prod-line-text h2 { font-size: clamp(30px,3.2vw,46px); margin-bottom: 20px; }
.prod-line-text p  { font-size: 15px; color: rgba(255,255,255,.58); line-height: 1.85; margin-bottom: 16px; }
.prod-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 32px; }
.prod-badge {
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(232,228,222,.1);
  padding: 6px 14px;
}
.prod-badge.highlight { color: var(--wine); border-color: rgba(139,26,26,.3); background: rgba(139, 26, 26, 0.05); }

/* ── BISTRÔ PAGE ────────────────────────────── */
.bistro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.bistro-img { min-height: 500px; }
.bistro-text {
  background: #0a0a0a;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bistro-text h2 { font-size: clamp(32px,3.2vw,48px); margin-bottom: 22px; }
.bistro-text p  { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 16px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(232,228,222,.07);
  margin-top: 60px;
}
.menu-cat {
  background: #0D0D0D;
  padding: 52px 40px;
}
.menu-cat h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.menu-cat-sub { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 28px; }
.menu-items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232,228,222,.04);
}
.menu-item:last-child { border: none; padding-bottom: 0; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-item-name { flex: 1; font-weight: 400; color: var(--off-white); }
.menu-item-price { font-family: var(--serif); font-size: 16px; color: var(--wine-lt); }
.menu-item-note { font-size: 11.5px; color: rgba(255,255,255,.4); font-style: italic; line-height: 1.4; margin-top: 2px; }

.bistro-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(232,228,222,.07);
}
.bistro-info-item {
  background: #080808;
  padding: 52px 48px;
}
.bistro-info-item h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
}
.bistro-info-item p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.7; }

.reserva-sec {
  background: #060606;
  padding: 120px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reserva-sec h2 { font-size: clamp(32px,3.2vw,48px); margin-bottom: 20px; }
.reserva-sec p  { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 28px; }
.reserva-form { background: rgba(232,228,222,.02); border: 1px solid rgba(232,228,222,.06); padding: 52px 48px; }
.reserva-form h3 { font-family: var(--serif); font-size:26px; font-weight:400; margin-bottom:32px; }

/* ── CURSOS PAGE ────────────────────────────── */
.som-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 76px;
}
.som-img { min-height: 100%; }
.som-content {
  background: #0a0a0a;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.som-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--wine);
  border: 1px solid rgba(139,26,26,.38);
  padding: 8px 18px;
  margin-bottom: 32px;
  width: fit-content;
}
.som-tag::before { content:''; width:6px; height:6px; background:var(--wine); border-radius:50%; }
.som-content h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.som-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  color: rgba(255,255,255,.45);
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.som-content > p {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 520px;
}
.som-modules {
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.som-mod {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.som-mod::before {
  content: '—';
  color: var(--wine);
  flex-shrink: 0;
}
.som-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232,228,222,.07);
}
.curso-card {
  background: #0D0D0D;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}
.curso-card:hover {
  background: #141414;
  border-color: rgba(139, 26, 26, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}
.curso-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: rgba(139,26,26,.22);
  line-height: 1;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}
.curso-card:hover .curso-num { color: var(--wine); }
.curso-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}
.curso-card p { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.72; flex: 1; margin-bottom: 28px; }
.curso-label { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--wine); margin-bottom: 24px; }
.curso-link {
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: auto;
  padding-top: 10px;
}
.curso-card:hover .curso-link { color: var(--off-white); letter-spacing: .18em; }

.marcos-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.marcos-bio-img { min-height: 480px; }
.marcos-bio-text {
  background: #060606;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.marcos-bio-text h2 { font-size: clamp(30px,3.2vw,46px); margin-bottom: 24px; }
.marcos-bio-text p  { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.85; margin-bottom: 14px; }

.inscricao { background: #0a0a0a; padding: 120px 64px; }
.inscricao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.inscricao h2 { font-size: clamp(30px,3.2vw,46px); margin-bottom: 20px; }
.inscricao p  { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 28px; }
.inscricao-list { list-style: none; margin-bottom: 36px; }
.inscricao-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.62);
  padding: 16px 0;
  border-bottom: 1px solid rgba(232,228,222,.06);
}
.inscricao-list li::before { content:'—'; color: var(--wine); flex-shrink:0; }
.inscricao-form { background: rgba(232,228,222,.02); border: 1px solid rgba(232,228,222,.06); padding: 52px 48px; }
.inscricao-form h3 { font-family: var(--serif); font-size:26px; font-weight:400; margin-bottom:32px; }

/* ── EVENTOS PAGE ───────────────────────────── */
.ev-mod {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  gap: 1px;
  background: rgba(232,228,222,.06);
  margin-bottom: 1px;
}
.ev-mod-img { min-height: 420px; }
.ev-mod-text {
  background: #0D0D0D;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ev-mod.alt .ev-mod-text { background: #0a0a0a; }
.ev-mod.reverse { direction: rtl; }
.ev-mod.reverse > * { direction: ltr; }

.ev-mod-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(139,26,26,.2);
  line-height: 1;
  margin-bottom: 20px;
}
.ev-mod-text h2 { font-size: clamp(28px,3vw,42px); margin-bottom: 16px; }
.ev-mod-text p  { font-size: 15px; color: rgba(255,255,255,.58); line-height: 1.85; margin-bottom: 14px; }
.ev-features { list-style: none; margin: 16px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.ev-features li { display: flex; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.ev-features li::before { content: '—'; color: var(--wine); flex-shrink: 0; }

.ev-orcamento {
  background: #060606;
  padding: 120px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ev-orcamento h2 { font-size: clamp(30px,3.2vw,46px); margin-bottom: 20px; }
.ev-orcamento p  { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 28px; }
.ev-orcamento-form { background: rgba(232,228,222,.02); border: 1px solid rgba(232,228,222,.06); padding: 52px 48px; }
.ev-orcamento-form h3 { font-family: var(--serif); font-size:26px; font-weight:400; margin-bottom:32px; }

/* ── LOJAS PAGE ─────────────────────────────── */
.lojas-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
.lojas-intro h2 { font-size: clamp(34px,3.5vw,52px); }
.lojas-intro p  { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.85; }

.loja-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(232,228,222,.07);
  margin-bottom: 1px;
}
.loja-full:last-of-type { margin-bottom: 0; }
.loja-map  { min-height: 360px; }
.loja-info {
  background: #0D0D0D;
  padding: 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loja-info.alt { background: #0a0a0a; }

.loja-city {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 16px;
  font-weight: 500;
}
.loja-info h2 { font-size: clamp(32px,3.5vw,48px); margin-bottom: 28px; }
.loja-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.loja-detail-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
}
.loja-detail-label {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  padding-top: 2px;
}
.loja-detail-val {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}
.loja-detail-val strong { color: var(--off-white); font-weight: 400; }
.loja-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.loja-tag {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(232,228,222,.08);
  background: rgba(255,255,255,0.01);
  padding: 5px 12px;
  transition: var(--transition-fast);
}
.loja-tag:hover {
  border-color: var(--wine);
  color: var(--off-white);
  background: rgba(139, 26, 26, 0.08);
}
.loja-joinville {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(232,228,222,.07);
}

/* ── FRANQUIA PAGE ──────────────────────────── */
.franq-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}
.franq-intro h2 { font-size: clamp(34px,3.5vw,52px); margin-bottom: 20px; }
.franq-intro p  { font-size: 15px; color: rgba(255,255,255,.58); line-height: 1.85; margin-bottom: 14px; }

.franq-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232,228,222,.07);
  margin-bottom: 80px;
}
.stat-item {
  background: #0D0D0D;
  padding: 52px 36px;
  text-align: center;
  transition: var(--transition-smooth);
}
.stat-item:hover { background: #141414; }
.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}
.stat-item:hover .stat-num { color: var(--off-white); text-shadow: var(--shadow-glow); }
.stat-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); line-height: 1.5; }

.franq-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(232,228,222,.07);
}
.pillar {
  background: #0D0D0D;
  padding: 52px 48px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}
.pillar:hover {
  background: #141414;
  border-color: rgba(139, 26, 26, 0.15);
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
}
.pillar-icon {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: rgba(139,26,26,.3);
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}
.pillar:hover .pillar-icon { color: var(--wine); }
.pillar h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.pillar p   { font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.75; }

.franq-recebe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.franq-recebe h2 { font-size: clamp(30px,3vw,44px); margin-bottom: 16px; }
.franq-recebe p  { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 28px; }
.recebe-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.recebe-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(232,228,222,.06);
  transition: var(--transition-smooth);
}
.recebe-item:last-child { border: none; }
.recebe-item::before { content: '—'; color: var(--wine); flex-shrink: 0; font-size: 15px; padding-top: 1px; }
.recebe-item div h4 { font-family: var(--serif); font-size: 19px; font-weight: 400; margin-bottom: 6px; transition: var(--transition-fast); }
.recebe-item:hover div h4 { color: var(--wine); }
.recebe-item div p  { font-size: 13.5px; color: rgba(255,255,255,.45); }

.processo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(232,228,222,.07);
}
.proc-step {
  background: #0D0D0D;
  padding: 56px 44px;
  transition: var(--transition-smooth);
}
.proc-step:hover { background: #111; }
.proc-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(139,26,26,.22);
  line-height: 1;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}
.proc-step:hover .proc-num { color: var(--wine); }
.proc-step h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.proc-step p  { font-size:13px; color:rgba(255,255,255,.48); line-height:1.72; }

.franq-form-sec {
  background: #060606;
  padding: 120px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.franq-form-sec h2 { font-size: clamp(30px,3.2vw,46px); margin-bottom: 20px; }
.franq-form-sec p  { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 28px; }
.franq-form { background: rgba(232,228,222,.02); border: 1px solid rgba(232,228,222,.06); padding: 52px 48px; }
.franq-form h3 { font-family: var(--serif); font-size:26px; font-weight:400; margin-bottom:32px; }

/* ── CTA FINAL ────────────────────────────────── */
.cta-final {
  background: var(--wine);
  text-align: center;
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  z-index: -1;
}
.cta-final h2 { font-size: clamp(36px, 5vw, 64px); color: var(--off-white); margin-bottom: 20px; }
.cta-final p  { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.75; max-width: 520px; margin: 0 auto 44px; }
.cta-final-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: #040404;
  padding: 100px 64px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(232,228,222,.05);
  margin-bottom: 36px;
}
.footer-brand a { display: inline-block; margin-bottom: 20px; transition: var(--transition-fast); }
.footer-brand a:hover { transform: scale(1.02); }
.footer-brand a img { height: 28px; }
.footer-brand-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}
.footer-brand-text em { color: var(--wine); font-style: normal; }
.footer-brand p { font-size: 12.5px; color: rgba(255,255,255,.32); line-height: 1.85; }
.footer-col h5 { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.45); text-decoration: none; transition: var(--transition-fast); }
.footer-col a:hover { color: var(--off-white); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
/* ── HERO LAYOUT ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; /* full viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,.4), rgba(13,13,13,.8));
  z-index: 1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  padding: 0 24px;
}
/* Hero typography tokens */
:root {
  --hero-title: 2.8rem; /* responsive via clamp later */
  --hero-subtitle: 1.2rem;
}
.hero-content h1 {
  font-size: clamp(28px, 6vw, 48px);
  margin: 0.6em 0;
  line-height: 1.2;
}
.hero-content p {
  font-size: var(--hero-subtitle);
  margin-bottom: 1.4rem;
}
/* ── COURSE COVER PLACEHOLDER ───────────────────── */
.course-cover {
  width: 100%;
  height: 260px;
  background-color: #1c1414; /* placeholder dark */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}
.course-cover span { display: none; }

/* ── WHATSAPP BUTTON ──────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: var(--transition-smooth);
}
.wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}
.wa-btn:hover { transform: scale(1.08) translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,.5); }
.wa-btn:hover::before { opacity: 1; transform: scale(1.08); }
.wa-btn svg { width: 26px; height: 26px; }

/* ── RESPONSIVE STYLES ────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 16px 32px; }
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .nav-hamburger { display: flex; }
  
  .sec { padding: 90px 32px; }
  .page-hero { padding: 120px 32px 64px; min-height: 45vh; }
  
  footer { padding: 80px 32px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; }
  
  .cta-final { padding: 90px 32px; }
  
  /* Layout adjustments */
  .hero { padding: 0 32px 80px; }
  .hero-scroll { display: none; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-text { padding: 80px 32px; }
  .manifesto-img { min-height: 380px; }
  
  .services { padding: 90px 32px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  
  .prod-head { grid-template-columns: 1fr; gap: 24px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  
  .sommelier-spot { grid-template-columns: 1fr; }
  .sommelier-img { min-height: 400px; }
  .sommelier-text { padding: 80px 32px; }
  
  .lojas-head { grid-template-columns: 1fr; gap: 24px; }
  .lojas-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; gap: 24px; }
  
  .hist-grid { grid-template-columns: 1fr; gap: 40px; }
  .hist-grid.reverse { direction: ltr; }
  .hist-img { height: 380px; }
  .timeline { padding: 90px 32px; }
  .founders { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 80px 1fr; gap: 20px; padding-left: 32px; }
  
  .prod-line { grid-template-columns: 1fr; }
  .prod-line.reverse { direction: ltr; }
  .prod-line-img { min-height: 320px; }
  .prod-line-text { padding: 60px 32px; }
  
  .bistro-split { grid-template-columns: 1fr; }
  .bistro-img { min-height: 380px; }
  .bistro-text { padding: 80px 32px; }
  .menu-grid, .bistro-info { grid-template-columns: 1fr; }
  .reserva-sec { grid-template-columns: 1fr; padding: 90px 32px; gap: 48px; }
  .reserva-form { padding: 44px 32px; }
  
  .som-hero { grid-template-columns: 1fr; padding-top: 0; }
  .som-img { min-height: 400px; }
  .som-content { padding: 80px 32px; }
  .cursos-grid { grid-template-columns: repeat(2, 1fr); }
  .marcos-bio { grid-template-columns: 1fr; }
  .marcos-bio-img { min-height: 380px; }
  .marcos-bio-text { padding: 80px 32px; }
  .inscricao { padding: 90px 32px; }
  .inscricao-inner { grid-template-columns: 1fr; gap: 48px; }
  .inscricao-form { padding: 44px 32px; }
  
  .ev-mod { grid-template-columns: 1fr; }
  .ev-mod.reverse { direction: ltr; }
  .ev-mod-img { min-height: 320px; }
  .ev-mod-text { padding: 60px 32px; }
  .ev-orcamento { grid-template-columns: 1fr; padding: 90px 32px; gap: 48px; }
  .ev-orcamento-form { padding: 44px 32px; }
  
  .lojas-intro { grid-template-columns: 1fr; gap: 24px; }
  .loja-full, .loja-joinville { grid-template-columns: 1fr; }
  .loja-map { min-height: 300px; }
  .loja-info { padding: 48px 32px; }
  
  .franq-intro { grid-template-columns: 1fr; gap: 40px; }
  .franq-stats { grid-template-columns: repeat(2, 1fr); }
  .franq-pillars { grid-template-columns: 1fr; }
  .franq-recebe { grid-template-columns: 1fr; gap: 48px; }
  .processo { grid-template-columns: 1fr; }
  .proc-step { padding: 44px 32px; }
  .franq-form-sec { grid-template-columns: 1fr; padding: 90px 32px; gap: 48px; }
  .franq-form { padding: 44px 32px; }
}

@media (max-width: 640px) {
  .svc-grid, .prod-grid, .lojas-grid, .cursos-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; }
  .hero-ctas .btn-wine, .hero-ctas .btn-ghost { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-final-btns { flex-direction: column; align-items: center; gap: 14px; }
  .cta-final-btns a { width: 100%; }
  .franq-stats { grid-template-columns: 1fr 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-photo { height: 180px; width: 100%; max-width: 200px; margin: 0 auto; }
}
