/* ===== Variables ===== */
:root {
  --gold: #D9B382;
  --gold-light: #E5C99A;
  --black: #000000;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --gray: #7A7A7A;
  --gray-dark: #4D4D4D;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --transition: 0.35s ease;
  --container: 1200px;
  --topbar-height: 34px;
  --header-height: 72px;
  --site-header: calc(var(--topbar-height) + var(--header-height));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Top Bar ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: #050505;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  width: 100%;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  flex-wrap: wrap;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.25rem;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1 1 auto;
}

.top-bar__center {
  display: none;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.top-bar__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  transition: color var(--transition);
  min-width: 0;
}

.top-bar__contact svg {
  color: var(--gold);
  flex-shrink: 0;
}

.top-bar__contact:hover {
  color: var(--gold);
}

.top-bar__contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.top-bar__contact-label {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.top-bar__contact-text span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar__item svg { color: var(--gold); flex-shrink: 0; }

.top-bar__item--address span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Location Selector */
.location-select {
  position: relative;
}

.location-select__btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  cursor: pointer;
  padding: 0.25rem 0;
}

.location-select__btn svg { color: var(--gold); flex-shrink: 0; }

.location-select__label {
  color: var(--gray);
}

.location-select__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 260px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.location-select__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.location-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.location-option strong {
  font-size: 0.85rem;
  font-weight: 500;
}

.location-option span {
  font-size: 0.72rem;
  color: var(--gray);
}

.location-option:hover,
.location-option.is-active {
  background: rgba(217, 179, 130, 0.12);
}

.location-option.is-active strong { color: var(--gold); }

.top-bar__item a {
  color: inherit;
  transition: color var(--transition);
}

.top-bar__item a:hover { color: var(--gold); }

/* Location Modal */
.location-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.location-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.location-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.location-modal__box {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.location-modal__box h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.location-modal__box > p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.location-modal__cards {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.location-card:hover {
  border-color: var(--gold);
  background: rgba(217, 179, 130, 0.08);
}

.location-card strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
}

.location-card span {
  font-size: 0.82rem;
  color: var(--gray);
}

.location-modal__close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

body.no-scroll { overflow: hidden; }

/* Size Modal */
.size-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.size-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.size-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.size-modal__box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  text-align: center;
}

.size-modal__box h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.size-modal__pizza {
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.size-modal__options {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.size-modal__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}

.size-modal__option:hover {
  border-color: var(--gold);
  background: rgba(217, 179, 130, 0.1);
}

.size-modal__option strong {
  font-family: var(--font-serif);
  color: var(--gold);
  white-space: nowrap;
}

.size-modal__close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.btn--sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 100%);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.header--solid {
  background: var(--black);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.25rem;
}

.header__inner .logo { flex-shrink: 0; }
.header__inner .nav { flex: 1; justify-content: center; }
.header__inner .header__actions { flex-shrink: 0; }
.header__inner .menu-toggle { flex-shrink: 0; margin-left: auto; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 48px;
  width: auto;
  display: block;
}

/* Nav */
.nav {
  display: flex;
  gap: 2.75rem;
}

.nav__link {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__plus {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.9;
}

.nav__link:hover { color: var(--gold); }

.nav__link.active { color: var(--white); }

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.header__divider {
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
}

.header__social {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.social-link {
  color: var(--gold);
  transition: color var(--transition), transform var(--transition);
  display: flex;
}

.social-link:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.65rem;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn--outline {
  border: 1px solid var(--gold);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-self: flex-start;
}

.hero__content .btn {
  align-self: flex-start;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 520px;
  max-height: 820px;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero__slide.active {
  opacity: 1;
  visibility: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__slide.active .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 30%, transparent 50%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
}

.hero__slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--site-header);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
}

.hero__content {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 480px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero__title--display {
  text-transform: none;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.hero__subtitle {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 1.75rem;
}

.hero__content .btn {
  align-self: flex-start;
}

.hero__slide .hero__title,
.hero__slide .hero__subtitle,
.hero__slide .hero__actions {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero__slide.active .hero__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.hero__slide.active .hero__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.hero__slide.active .hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-bar__item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.trust-bar__item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.trust-bar__item span {
  font-size: 0.72rem;
  color: var(--gray);
}

/* ===== Destaques ===== */
.destaques {
  padding: 3.5rem 0 4rem;
  background: var(--black);
}

.destaques__header {
  text-align: center;
  margin-bottom: 2rem;
}

.destaques__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 0.5rem;
}

.destaques__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.destaque-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.destaque-card:hover {
  border-color: rgba(217, 179, 130, 0.3);
  transform: translateY(-3px);
}

.destaque-card__img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.destaque-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.destaque-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.destaque-card__body p {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 0.85rem;
}

.destaque-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.destaque-card__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}

.menu-grid--compact {
  max-width: 880px;
}

.menu-grid--compact .menu-item {
  padding: 1.1rem 2.5rem 1.1rem 0;
}

/* Thumbnails */
.hero__thumbs {
  position: absolute;
  bottom: 2.5rem;
  right: max(40px, calc((100vw - var(--container)) / 2 + 40px));
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.65rem;
}

.hero__thumb {
  width: 76px;
  height: 100px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  flex-shrink: 0;
  transform-origin: center bottom;
  transition:
    border-color var(--transition),
    opacity var(--transition),
    transform 0.4s ease,
    box-shadow var(--transition);
  opacity: 0.55;
}

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

.hero__thumb.active {
  border-color: var(--gold);
  opacity: 1;
  transform: scale(1.14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero__thumb:hover {
  opacity: 1;
  transform: scale(1.06);
}

.hero__thumb.active:hover {
  transform: scale(1.14);
}

/* Dots */
.hero__dots {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2 + 16px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.hero__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: border-color var(--transition);
}

.hero__dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: transparent;
  transition: background var(--transition);
}

.hero__dot.active {
  border-color: var(--gold);
}

.hero__dot.active::after {
  background: var(--gold);
}

/* ===== Sobre ===== */
.sobre {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: auto;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sobre__image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.sobre__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--black) 100%);
  pointer-events: none;
}

.sobre__image img,
.sobre__image .brand-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.sobre__image--video {
  min-height: 520px;
}

.sobre__image--video::after {
  background: linear-gradient(90deg, transparent 45%, var(--black) 100%);
}

.sobre:hover .sobre__image img,
.sobre:hover .sobre__image .brand-video {
  transform: scale(1.03);
}

.sobre__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 3rem;
  max-width: 560px;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: block;
}

.section-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.65rem;
  opacity: 0.7;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head--light .section-head__title {
  color: var(--white);
}

.section-head__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 0.25rem;
}

.section-head .section-label::after {
  margin-left: auto;
  margin-right: auto;
}

.cardapio__header .section-label::after {
  margin-left: auto;
  margin-right: auto;
}

.sobre__title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 1.25rem;
}

.sobre__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.sobre__content .btn { margin-top: 1rem; align-self: flex-start; }

.sobre--page {
  margin-top: 0;
  grid-template-columns: 1fr 1fr;
}

.sobre--page .sobre__content {
  max-width: none;
  padding: 4.5rem 3.5rem;
}

.sobre--page .sobre__image {
  min-height: 560px;
}

.sobre--page .sobre__image--video {
  min-height: 600px;
}

.sobre--home {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  min-height: clamp(420px, 72vh, 680px);
  height: clamp(420px, 72vh, 680px);
  width: 100%;
  align-items: stretch;
}

.sobre--home .sobre__image {
  min-height: 100%;
  height: 100%;
  max-height: none;
}

.sobre--home .sobre__image--video {
  min-height: 100%;
  height: 100%;
  max-height: none;
}

.sobre--home .sobre__content {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 5rem);
  max-width: 560px;
  justify-content: center;
}

.sobre--home .sobre__title {
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}

.sobre--home .sobre__text {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  margin-bottom: 0.85rem;
  line-height: 1.75;
  max-width: 48ch;
}

.sobre--home .sobre__content .btn {
  margin-top: 1rem;
}

.sobre--home .sobre__video {
  object-fit: cover;
  object-position: center 32%;
}

@media (min-width: 1200px) {
  .sobre--home {
    grid-template-columns: 1.05fr 0.95fr;
    max-width: 1920px;
    margin-inline: auto;
  }

  .sobre--home .sobre__content {
    margin-left: auto;
    padding-right: clamp(2rem, 6vw, 8rem);
    padding-left: clamp(2rem, 4vw, 4rem);
  }
}

@media (min-width: 1600px) {
  .sobre--home .sobre__content {
    max-width: 620px;
    padding-right: clamp(3rem, 8vw, 10rem);
  }
}

/* Sobre compacto (home) */
.sobre-strip {
  padding: 2.25rem 0;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sobre-strip__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sobre-strip__media {
  flex: 0 0 240px;
  width: 240px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(217, 179, 130, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  position: relative;
  background: #0a0a0a;
}

.sobre-strip__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.sobre-strip__video {
  object-fit: cover;
  object-position: center 35%;
  transform: none;
}

.sobre-strip__img {
  flex: 0 0 200px;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sobre-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sobre-strip__content {
  flex: 1;
  min-width: 0;
}

.sobre-strip__content .section-label {
  margin-bottom: 0.5rem;
}

.sobre-strip__title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.sobre-strip__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
  margin-bottom: 0.85rem;
  max-width: 520px;
}

/* Página de pedido (Pedir.Delivery) */
.page-pedido .header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.order-embed {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--site-header));
  margin-top: var(--site-header);
  background: var(--black);
}

.order-embed__bar {
  flex-shrink: 0;
  padding: 0.65rem 0;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-embed__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-embed__info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-embed__unit {
  font-size: 0.82rem;
  color: var(--gray);
}

.order-embed__unit strong {
  color: var(--gold);
}

.order-embed__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.order-embed__frame-wrap {
  flex: 1;
  position: relative;
  min-height: 0;
}

.order-embed__frame {
  width: 100%;
  height: calc(100vh - var(--site-header) - 56px);
  border: 0;
  display: block;
  background: #fff;
}

.order-embed__frame.is-hidden {
  display: none;
}

.order-embed__fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--dark);
  text-align: center;
  padding: 2rem;
}

.order-embed__fallback.is-visible {
  display: flex;
}

.cart-fab.is-hidden {
  display: none !important;
}

/* Como pedir */
.how-order {
  padding: 4rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.how-order__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.how-order__step {
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.how-order__step:hover {
  border-color: rgba(217, 179, 130, 0.35);
  transform: translateY(-3px);
}

.how-order__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 0.75rem;
}

.how-order__step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.how-order__step p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Unidades preview */
.units-preview {
  padding: 4rem 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.units-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.units-preview__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 1.75rem;
}

/* About Page */
.about-stats {
  padding: 3.5rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-stats__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.about-stats__item span {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-story {
  padding: 5rem 0;
  background: var(--black);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story__text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
}

.about-story__visual {
  position: relative;
  border: 1px solid rgba(217, 179, 130, 0.2);
  padding: 1rem;
}

.about-story__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-story__visual::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 48px;
  height: 48px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.6;
}

.about-cta {
  padding: 4rem 0 5rem;
  background: var(--dark);
  text-align: center;
}

.about-cta__box {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border: 1px solid rgba(217, 179, 130, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.about-cta__box h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0.75rem 0 1rem;
}

.about-cta__box p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.about-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sobre-values {
  padding: 4.5rem 0 5rem;
  background: var(--dark-2);
}

.sobre-values__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sobre-values__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-top: 0.5rem;
}

.sobre-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sobre-values__item {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: border-color var(--transition);
}

.sobre-values__item:hover {
  border-color: rgba(217, 179, 130, 0.25);
}

.sobre-values__item h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.sobre-values__item p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.65;
}

.sobre-values__icon {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Cardápio ===== */
.cardapio {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.cardapio__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.5) 100%),
    url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?w=1920&q=80') center / cover no-repeat;
}

.cardapio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.cardapio__inner {
  position: relative;
  z-index: 1;
}

.cardapio__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cardapio__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cardapio__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.cardapio__ornament {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 1.5rem auto 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  max-width: 960px;
  margin: 0 auto;
}

.menu-item {
  position: relative;
  padding: 1.5rem 2.5rem 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 0.4rem;
}

.menu-item__name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.menu-item__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__desc {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.menu-item__add {
  position: absolute;
  top: 1.35rem;
  right: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(217, 179, 130, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-item__add:hover {
  background: var(--gold);
  color: var(--black);
}

.location-modal__geo {
  width: 100%;
  margin-bottom: 1.25rem;
}

/* ===== Carrinho ===== */
.cart-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}

.cart-fab:hover { transform: scale(1.05); }

.cart-fab__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  display: none;
  align-items: center;
  justify-content: center;
}

.cart-fab__count.is-visible { display: flex; }

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.cart-panel.is-open { pointer-events: auto; }

.cart-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity var(--transition);
}

.cart-panel.is-open .cart-panel__backdrop { opacity: 1; }

.cart-panel__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  max-height: 100dvh;
  background: var(--dark-2);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow: hidden;
}

.cart-panel.is-open .cart-panel__drawer { transform: translateX(0); }

.cart-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem 0.75rem;
  flex-shrink: 0;
}

.cart-panel__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 1.25rem 1rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.cart-panel__checkout {
  flex-shrink: 0;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark-2);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
}

.cart-panel__checkout.is-hidden { display: none; }

.cart-panel__checkout-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
}

.cart-panel__checkout-links a,
.cart-panel__checkout-links button {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.cart-panel__checkout-links a:hover,
.cart-panel__checkout-links button:hover {
  color: var(--gold);
}

.cart-panel__head h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.cart-panel__close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.cart-panel__unit {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.cart-panel__unit strong { color: var(--gold); }

.cart-panel__empty {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 2rem 0;
}

.cart-panel__empty.is-hidden { display: none; }

.cart-panel__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cart-item__info strong {
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-item__info span {
  font-size: 0.8rem;
  color: var(--gold);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item__qty button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: none;
  color: var(--white);
  cursor: pointer;
}

.cart-panel__form {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-panel__form.is-hidden {
  display: none;
}

.cart-panel__footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-panel__footer.is-hidden { display: none; }

.cart-panel__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.cart-panel__total strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.cart-panel__btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.cart-panel__btn--secondary {
  font-size: 0.78rem;
  padding: 0.65rem 1rem;
}

.cart-panel__clear {
  width: 100%;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 0.25rem;
}

.cardapio__note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2rem;
}

.cardapio__cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.header__order {
  white-space: nowrap;
}

.header__account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(217, 179, 130, 0.45);
  color: var(--gold);
  background: rgba(217, 179, 130, 0.08);
  transition: all var(--transition);
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.header__account:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.header__account.is-logged {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.header__account-wrap {
  position: relative;
}

.header__account-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 168px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.header__account-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__account-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--transition), color var(--transition);
}

.header__account-menu a:hover {
  background: rgba(217, 179, 130, 0.1);
  color: var(--gold);
}

.header__account-menu a:last-child {
  color: #ff8a80;
}

.header__account-menu a:last-child:hover {
  color: #ffb4ab;
}

.menu-item--clickable {
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  border-radius: 4px;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.menu-item--clickable:hover,
.menu-item--clickable:focus-visible {
  background: rgba(217, 179, 130, 0.06);
  outline: none;
}

.menu-item--clickable:hover .menu-item__name,
.menu-item--clickable:focus-visible .menu-item__name {
  color: var(--gold);
}

.menu-item--pizza .menu-item__head {
  margin-bottom: 0;
}

/* ===== Página Cardápio ===== */
.page-banner {
  position: relative;
  height: 280px;
  margin-top: var(--site-header);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.page-banner__content {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.page-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.page-banner__subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
}

.menu-page {
  padding: 4rem 0 6rem;
  background: var(--dark);
}

.menu-page .menu-item__name { color: var(--white); }
.menu-page .menu-item { border-bottom-color: rgba(255, 255, 255, 0.08); }
.menu-page .cardapio__note { color: var(--gray-dark); margin-top: 3rem; }

.menu-category {
  margin-bottom: 4rem;
}

.menu-category__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(217, 179, 130, 0.25);
}

.menu-category__title span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ===== Contato ===== */
.contato {
  padding: 6rem 0;
  background: var(--dark);
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--white);
  margin: 0.5rem 0 1rem;
}

.contato__hint {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.contato__hint a {
  color: var(--gold);
  text-decoration: underline;
}

.contato__info .btn {
  margin-top: 1.5rem;
}

.contato__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contato__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.contato__list svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contato__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dark); }

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== Footer ===== */
.footer {
  padding: 4rem 0 0;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 1rem;
  max-width: 260px;
  line-height: 1.7;
}

.footer__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__unit-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
  transition: color var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__unit-btn:hover,
.footer__unit-btn.is-active { color: var(--gold); }

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.footer__info li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

.footer__info svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--gray-dark);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.logo--footer .logo__img { height: 48px; }

/* ===== Unidades Page ===== */
.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0 6rem;
}

.unit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color var(--transition);
}

.unit-card.is-active {
  border-color: rgba(217, 179, 130, 0.4);
}

.unit-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.unit-card h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.unit-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.unit-card__list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray);
}

.unit-card__list svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.unit-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav { gap: 1.5rem; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .destaques__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__thumbs { right: 1.5rem; }
  .hero__dots { right: 1.5rem; }
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: fixed;
    top: var(--site-header);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    z-index: 99;
  }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .header__order,
  .header__divider,
  .header__social {
    display: none;
  }
  .menu-toggle { display: flex; }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .top-bar__inner {
    gap: 0.75rem 1rem;
  }

  .top-bar__right {
    gap: 0.85rem;
  }

  .top-bar__contact-label {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --topbar-height: 40px;
  }

  .store-status-tag--inline .store-status-tag__detail {
    display: none;
  }

  .store-status-tag--inline .store-status-tag__sep {
    display: none;
  }

  .sobre-strip__media {
    flex: 0 0 200px;
    width: 200px;
    height: 125px;
  }
}

@media (max-width: 768px) {
  :root {
    --topbar-height: 38px;
  }

  .top-bar__contact--email {
    display: none;
  }

  .top-bar__contact-text span:last-child {
    font-size: 0.7rem;
  }

  .header { top: var(--topbar-height); }

  .top-bar__inner {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .page-banner {
    margin-top: var(--site-header);
    height: 280px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__slide-inner {
    padding-top: var(--site-header);
  }

  .logo__img { height: 44px; }

  .container { padding: 0 24px; }

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

  .hero__content {
    max-width: 100%;
  }

  .hero__thumbs {
    bottom: 1.5rem;
    right: 24px;
  }

  .hero__thumb {
    width: 66px;
    height: 88px;
  }

  .hero__thumb.active {
    transform: scale(1.12);
  }

  .hero__dots {
    right: 1rem;
    top: auto;
    bottom: 7rem;
    transform: none;
  }

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

  .sobre__image {
    min-height: 280px;
    max-height: 340px;
  }

  .sobre__image::after {
    background: linear-gradient(180deg, transparent 50%, var(--black) 100%);
  }

  .sobre__content {
    padding: 2.5rem 1.5rem 3rem;
    max-width: none;
  }

  .sobre--page .sobre__content {
    padding: 2.5rem 1.5rem 3rem;
  }

  .about-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story__visual {
    order: -1;
  }

  .sobre-values__grid {
    grid-template-columns: 1fr;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

  .destaque-card__img {
    height: 140px;
  }

  .contato__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero__thumb {
    width: 58px;
    height: 76px;
  }

  .hero__thumb.active {
    transform: scale(1.1);
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .size-picker {
    flex-wrap: wrap;
  }

  .promo-offer__inner::after {
    width: 260px;
    height: 260px;
    right: -60px;
    bottom: 40px;
  }
}

/* ===== Loader ===== */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-draw-svg {
  display: block;
  margin: 0 auto 1rem;
}

.loader-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loader-path--thin {
  stroke-width: 8;
}

@keyframes loader-draw {
  to { stroke-dashoffset: 0; }
}

.loader-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: loader-pulse 1.2s ease-in-out infinite alternate;
}

@keyframes loader-pulse {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

body.is-loading { overflow: hidden; }

/* ===== Size Picker ===== */
.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.size-pill {
  padding: 0.3rem 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--gray);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.size-pill:hover,
.size-pill.is-active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-item[data-menu-item] {
  padding-bottom: 1.5rem;
}

.menu-item[data-menu-item] .menu-item__add {
  top: auto;
  bottom: 0.5rem;
}

/* ===== Menu Nav ===== */
.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-nav a {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  color: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all var(--transition);
}

.menu-nav a:hover {
  color: var(--gold);
  border-color: rgba(217, 179, 130, 0.4);
}

/* ===== Sizes Strip ===== */
.sizes-strip {
  padding: 1.25rem 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sizes-strip__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sizes-strip__label {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sizes-strip__items {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
}

.sizes-strip__item {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  text-align: center;
  min-width: 90px;
}

.sizes-strip__item strong { display: block; font-size: 0.82rem; }
.sizes-strip__item span { font-size: 0.68rem; color: var(--gray); }
.sizes-strip__item--active { border-color: var(--gold); background: rgba(217, 179, 130, 0.1); }
.sizes-strip__item--active strong { color: var(--gold); }

/* ===== Carousel ===== */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel__viewport { flex: 1; overflow: hidden; }

.carousel__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s ease;
}

.carousel__track--combos .combo-card { flex: 0 0 min(320px, 85vw); }
.carousel__track--products .product-slide { flex: 0 0 min(260px, 78vw); }
.carousel__track--brands { gap: 1.25rem; transition: none; }

.carousel__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel__btn:hover { border-color: var(--gold); color: var(--gold); }
.carousel--brands .carousel__btn { display: none; }
.carousel__viewport--brands { mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }

/* ===== Products ===== */
.products-section { padding: 3.5rem 0; background: var(--dark); }

.products-section__header { text-align: center; margin-bottom: 2rem; }

.products-section__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: 0.5rem;
}

.product-slide {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.product-slide__img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-slide__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.product-slide__body { padding: 1rem 1.15rem 1.15rem; }
.product-slide__body h3 { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 0.25rem; }
.product-slide__body p { font-size: 0.8rem; color: var(--gold); margin-bottom: 0.75rem; }

.brand-slide {
  flex: 0 0 auto;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  min-width: 140px;
}

.brand-slide strong { display: block; font-family: var(--font-serif); font-size: 0.95rem; margin-bottom: 0.2rem; }
.brand-slide span { font-size: 0.68rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== Order CTA ===== */
.order-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--black) 100%);
  border-top: 1px solid rgba(217, 179, 130, 0.12);
}

.order-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.order-cta__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}

.order-cta__content .section-label::after {
  margin-left: 0;
}

.order-cta__content p { font-size: 0.88rem; color: var(--gray); max-width: 480px; }
.order-cta__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== Combos ===== */
.combos { padding: 4rem 0; background: var(--dark-2); }
.combos--page { padding: 3rem 0 0; background: var(--dark); }
.combos--page-bottom {
  padding: 4rem 0 5rem;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.combos__lead {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.6;
}

.combos__page-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.combos__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.combo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.combo-card:hover {
  border-color: rgba(217, 179, 130, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.combo-card--featured { border-color: rgba(217, 179, 130, 0.45); }

.combo-card__img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.combo-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--gold);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.combo-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.combo-card h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 0.35rem;
  min-height: 2.7em;
}

.combo-card__desc {
  font-size: 0.74rem;
  color: var(--gray);
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.combo-card__list { margin-bottom: 0.85rem; }
.combo-card__list li { font-size: 0.7rem; color: rgba(255, 255, 255, 0.55); padding-left: 1rem; position: relative; }
.combo-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }

.combo-card__foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  margin-top: auto;
}

.combo-card__price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  text-align: center;
}

.combo-card__foot .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.72rem;
  padding: 0.55rem 0.75rem;
}

/* ===== Brands Marquee ===== */
.brands-section {
  padding: 3.5rem 0 4rem;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.brands-marquee {
  position: relative;
  margin-top: 0.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.brands-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.brand-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2rem;
  min-width: 180px;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
}

.brand-logo:hover {
  border-color: rgba(217, 179, 130, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.brand-logo img {
  max-width: 140px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.menu-grid--home {
  max-width: 960px;
}

@media (max-width: 1200px) {
  .combos__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .combos__grid { grid-template-columns: repeat(2, 1fr); }
  .how-order__grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
  .carousel__btn { display: none; }
  .order-cta__inner { flex-direction: column; text-align: center; }
  .order-cta__actions { justify-content: center; }
  .sizes-strip__inner { justify-content: center; }
  .combos__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .menu-grid--home { gap: 0 2rem; }
  .order-menu-grid { grid-template-columns: 1fr; gap: 0; }
  .order-rows { grid-template-columns: 1fr; }
  .order-nav { gap: 0.4rem; }
  .order-sizes-ref { gap: 0.5rem 0.85rem; }
  .sobre--home {
    min-height: 0;
  }

  .sobre--home .sobre__image,
  .sobre--home .sobre__image--video {
    min-height: 280px;
    height: clamp(280px, 45vh, 420px);
    max-height: 420px;
  }

  .sobre--home .sobre__content {
    padding: 2.25rem 1.5rem 2.75rem;
    max-width: none;
    margin-left: 0;
  }

  .sobre--home .sobre__text {
    max-width: none;
  }
  .sobre-strip__inner { flex-direction: column; text-align: center; gap: 1.25rem; }
  .sobre-strip__media {
    flex: none;
    width: 100%;
    max-width: 280px;
    height: 160px;
  }
  .sobre-strip__text { margin-left: auto; margin-right: auto; }
  .order-embed__frame { height: calc(100vh - var(--site-header) - 100px); }
  .units-preview__grid { grid-template-columns: 1fr; }
  .brand-logo { min-width: 150px; padding: 1rem 1.25rem; }
  .store-location__inner { grid-template-columns: 1fr; }
  .store-location__actions .btn { flex: 1 1 auto; text-align: center; }
  .top-bar__right { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 480px) {
  :root {
    --topbar-height: 36px;
  }

  .container {
    padding: 0 16px;
  }

  .top-bar__left {
    gap: 0.55rem 0.75rem;
  }

  .location-select__btn {
    font-size: 0.68rem;
    gap: 0.3rem;
  }

  .location-select__label {
    display: none;
  }

  .store-status-tag--inline .store-status-tag__body strong {
    font-size: 0.66rem;
  }

  .top-bar__contact svg {
    width: 12px;
    height: 12px;
  }

  .sobre-strip__media {
    max-width: 100%;
    height: 140px;
  }
}

/* ===== Store Status ===== */
.store-status-tag {
  display: inline-flex;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  line-height: 1.25;
  transition: border-color var(--transition), background var(--transition);
}

.store-status-tag--compact {
  font-size: 0.68rem;
}

.store-status-tag--inline {
  border: none;
  background: none;
  overflow: visible;
  flex-shrink: 0;
}

.store-status-tag--inline .store-status-tag__accent {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  align-self: center;
  box-shadow: none;
}

.store-status-tag--inline .store-status-tag__body {
  padding: 0;
  min-height: auto;
  gap: 0.35rem;
}

.store-status-tag--inline.is-open,
.store-status-tag--inline.is-closed {
  border: none;
  background: none;
}

.store-status-tag--inline.is-open .store-status-tag__accent {
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.18);
}

.store-status-tag--inline.is-closed .store-status-tag__accent {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.store-status-tag__sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
  line-height: 1;
}

.store-status-tag__accent {
  width: 3px;
  flex-shrink: 0;
  background: #e74c3c;
  transition: background var(--transition), box-shadow var(--transition);
}

.store-status-tag.is-open .store-status-tag__accent {
  background: #2ecc71;
  box-shadow: inset 0 0 8px rgba(46, 204, 113, 0.45);
}

.store-status-tag.is-closed .store-status-tag__accent {
  background: #e74c3c;
  box-shadow: inset 0 0 8px rgba(231, 76, 60, 0.35);
}

.store-status-tag__body {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.7rem;
  min-height: 28px;
}

.store-status-tag__body strong {
  font-weight: 600;
  white-space: nowrap;
}

.store-status-tag.is-closed .store-status-tag__body strong {
  color: #ffab9f;
}

.store-status-tag.is-open .store-status-tag__body strong {
  color: #9be7b5;
}

.store-status-tag__detail,
.store-status-tag__body > span:not(.store-status-tag__detail) {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  white-space: nowrap;
}

.store-status-tag.is-open {
  border-color: rgba(46, 204, 113, 0.28);
  background: linear-gradient(90deg, rgba(46, 204, 113, 0.08), rgba(255, 255, 255, 0.02));
}

.store-status-tag.is-closed {
  border-color: rgba(231, 76, 60, 0.24);
  background: linear-gradient(90deg, rgba(231, 76, 60, 0.08), rgba(255, 255, 255, 0.02));
}

.store-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition);
}

.store-status-pill.is-closed {
  border-color: rgba(231, 76, 60, 0.28);
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.08), rgba(255, 255, 255, 0.02));
}

.store-status-pill.is-open {
  border-color: rgba(46, 204, 113, 0.32);
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(255, 255, 255, 0.02));
}

.store-status-pill__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.store-status-pill.is-open .store-status-pill__indicator {
  background: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2), 0 0 10px rgba(46, 204, 113, 0.45);
  animation: status-pulse 2s ease-in-out infinite;
}

.store-status-pill.is-closed .store-status-pill__indicator {
  animation: status-pulse-closed 2.5s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

@keyframes status-pulse-closed {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.store-status-pill strong {
  font-weight: 600;
  color: var(--white);
}

.store-status-pill.is-closed strong {
  color: #ffab9f;
}

.store-status-pill.is-open strong {
  color: #9be7b5;
}

.store-status-pill__detail {
  color: var(--gray);
  font-size: 0.68rem;
  padding-left: 0.45rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.store-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(231, 76, 60, 0.35);
  background: rgba(231, 76, 60, 0.1);
  color: #ff8a80;
  margin-bottom: 1rem;
}

.store-status-badge.is-open {
  border-color: rgba(46, 204, 113, 0.35);
  background: rgba(46, 204, 113, 0.1);
  color: #7dcea0;
}

.store-status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.store-location__status {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.cart-panel__status {
  margin: 0 0 1rem;
  width: 100%;
}

.cart-panel__status.store-status-tag {
  display: flex;
}

.cart-panel__status .store-status-tag__body {
  flex: 1;
  justify-content: space-between;
  flex-wrap: wrap;
}

.schedule-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}

.schedule-options label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.schedule-datetime {
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.schedule-summary {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

.cart-panel__schedule {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-panel__schedule-label {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.store-location {
  padding: 4.5rem 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.store-location__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.store-location__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
}

.store-location__meta {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.store-location__meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.store-location__meta svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--gold);
}

.store-location__meta a:hover { color: var(--gold); }

.store-location__switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.store-location__schedule {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.store-location__schedule-title {
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.store-location__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.store-location__visual {
  display: grid;
  gap: 1rem;
}

.store-location__photo {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
}

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

.store-location__photo:hover img { transform: scale(1.03); }

.store-location__photo span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--gold);
}

.store-location__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-location__map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.combo-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.combo-modal.is-open { opacity: 1; visibility: visible; }

.combo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.combo-modal__box {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem 1.75rem;
}

.combo-modal__box h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.combo-modal__price {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.combo-modal__form {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.combo-field {
  display: grid;
  gap: 0.35rem;
}

.combo-field span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.combo-field select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.combo-modal__actions {
  display: grid;
  gap: 0.5rem;
}

.combo-modal__close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.cart-item__details {
  margin: 0.25rem 0 0.35rem;
  padding-left: 0.85rem;
}

.cart-item__details li {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ===== Página Pedido + Wizard ===== */
.page-pedido .header { position: sticky; top: 0; z-index: 40; }

.order-page-bar {
  margin-top: var(--site-header);
  padding: 0.65rem 0;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-page-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-page-bar__unit {
  font-size: 0.82rem;
  color: var(--gray);
}

.order-page-bar__unit strong { color: var(--gold); }

.order-page-bar__actions {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

.order-list {
  padding: 2.5rem 0 4rem;
  background: var(--dark);
  min-height: 50vh;
}

.order-list.is-hidden { display: none; }

.order-list__note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.order-list__ext {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2rem;
}

.order-list__ext a { color: var(--gold); }

.order-sizes-ref {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.order-sizes-ref__item {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.order-sizes-ref__item strong {
  color: var(--gold);
  font-weight: 600;
  margin-right: 0.25rem;
}

.order-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 2.5rem;
}

.order-nav__link {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.order-nav__link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.order-section {
  margin-bottom: 3rem;
  scroll-margin-top: calc(var(--site-header) + 1rem);
}

.order-section__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.order-section__hint {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.order-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}

.order-menu-col {
  display: flex;
  flex-direction: column;
}

.order-menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: color var(--transition);
}

.order-menu-item:hover .order-menu-item__name {
  color: var(--gold);
}

.order-menu-item__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.order-menu-item__desc {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}

.order-menu-item__price {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 0.15rem;
}

.order-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
  margin: 0;
}

.order-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-family: inherit;
  color: inherit;
}

.order-row:hover {
  border-color: rgba(217, 179, 130, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.order-row__accent {
  width: 4px;
  flex-shrink: 0;
  background: var(--gold);
}

.order-row__img {
  flex: 0 0 110px;
  min-height: 100px;
}

.order-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-row__body {
  flex: 1;
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

.order-row__body h3 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.order-row__body p {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.45;
}

.order-row__price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold);
  margin-top: 0.25rem;
}

.order-wizard {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.order-wizard.is-open {
  opacity: 1;
  visibility: visible;
}

.order-wizard__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(217, 179, 130, 0.2);
  flex-shrink: 0;
}

.order-wizard__back,
.order-wizard__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.order-wizard__title {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-wizard__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1rem 6rem;
}

.order-wizard__footer {
  flex-shrink: 0;
  padding: 1rem;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.75rem;
}

.wizard-step__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 0.35rem;
}

.wizard-step__sub {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.wizard-search input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  margin-bottom: 1rem;
}

.wizard-options {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.wizard-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background var(--transition);
}

.wizard-option:last-child { border-bottom: none; }

.wizard-option input { accent-color: var(--gold); }

.wizard-option.is-selected,
.wizard-option:has(input:checked) {
  background: rgba(217, 179, 130, 0.12);
}

.wizard-option__name {
  font-size: 0.88rem;
  flex: 1;
}

.wizard-option__price {
  font-size: 0.82rem;
  color: var(--gold);
  white-space: nowrap;
}

.wizard-flavors {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.wizard-flavor-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.wizard-flavor-row.is-selected {
  background: rgba(217, 179, 130, 0.15);
}

.wizard-flavor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.wizard-flavor:disabled {
  cursor: default;
  opacity: 0.45;
}

.wizard-flavor__qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.75rem 0.85rem 0;
  flex-shrink: 0;
}

.wizard-flavor__btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 179, 130, 0.45);
  background: transparent;
  color: var(--gold);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  font-family: inherit;
  padding: 0;
}

.wizard-flavor__btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.wizard-flavor__parts {
  min-width: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

.wizard-flavor__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(217, 179, 130, 0.5);
  color: var(--gold);
  font-size: 0.75rem;
}

.wizard-flavor-row.is-selected .wizard-flavor__check {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.wizard-option--tap {
  display: flex;
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.wizard-field {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.wizard-field span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.wizard-field textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  resize: vertical;
}

.cart-panel__note {
  display: grid;
  gap: 0.4rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.cart-panel__note span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.cart-panel__note textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  resize: vertical;
}

.cart-panel__hint {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.wizard-flavor__info strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}

.wizard-flavor__info span {
  font-size: 0.72rem;
  color: var(--gray);
}

.wizard-summary__hint {
  font-size: 0.78rem;
  color: var(--gray);
}

.wizard-summary__lines {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.order-wizard__next {
  width: 100%;
  justify-content: center;
  color: var(--black) !important;
  font-weight: 600;
}

.order-wizard__next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: rgba(217, 179, 130, 0.4) !important;
}


/* ===== Auth & Orders ===== */
.page-banner--short { min-height: 220px; }

/* ===== Brand video (login, home, sobre) ===== */
.brand-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.auth-page {
  min-height: 100vh;
  min-height: 100dvh;
  background: #080808;
}

.auth-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 100vh;
  min-height: 100dvh;
}

.auth-split__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  background: #080808;
}

.auth-split__visual-bg,
.auth-split__visual-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.auth-split__visual-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.auth-split__visual-video {
  object-fit: contain;
  object-position: center center;
  transform: scale(1.04);
  transition: transform 0.5s ease;
}

.auth-split:hover .auth-split__visual-bg {
  transform: scale(1.08);
}

.auth-split:hover .auth-split__visual-video {
  transform: scale(1.05);
}

.auth-split__visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
}

.auth-split__visual-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.auth-split__visual-logo {
  height: 52px;
  width: auto;
  margin-bottom: 2rem;
}

.auth-split__visual-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.auth-split__visual-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
}

.auth-split__visual-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.auth-split__visual-badges span {
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(217, 179, 130, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.25);
}

.auth-split__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem clamp(1.5rem, 4vw, 4rem);
  background:
    radial-gradient(circle at top right, rgba(217, 179, 130, 0.08), transparent 28%),
    #0a0a0a;
}

.auth-split__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.auth-split__back:hover { color: var(--gold); }

.auth-split__panel {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.auth-split__head {
  margin-bottom: 1.75rem;
}

.auth-split__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.auth-split__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.auth-split__subtitle {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.95rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
}

.auth-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.auth-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(217, 179, 130, 0.45);
}

.auth-form input.is-invalid {
  border-color: rgba(220, 53, 69, 0.65);
  background: rgba(220, 53, 69, 0.08);
}

.auth-form__error {
  font-size: 0.78rem;
  color: #f5a5ad;
}

.auth-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.95rem 1rem;
  color: var(--black) !important;
  font-weight: 600;
}

.auth-card__footer {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.auth-card__footer a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.auth-alert--error {
  background: rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.35);
  color: #f5a5ad;
}

.auth-alert--success {
  background: rgba(40, 167, 69, 0.12);
  border-color: rgba(40, 167, 69, 0.35);
  color: #8fd4a0;
}

.orders-section,
.admin-section {
  padding: 3rem 0 5rem;
  background: var(--dark);
}

.orders-section__toolbar,
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.orders-section__hint {
  font-size: 0.88rem;
  color: var(--gray);
  max-width: 520px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-stat {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-stat span {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-stat strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
}

.admin-tabs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.admin-tabs__btn {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

.admin-tabs__btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}

.admin-stats--single {
  grid-template-columns: minmax(0, 280px);
}

.admin-intro {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(217, 179, 130, 0.25);
  background: rgba(217, 179, 130, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

.admin-intro strong {
  color: var(--gold);
}

.admin-tabs__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.account-card {
  max-width: 520px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
}

.account-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.account-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.account-card__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.account-card__list li span {
  color: var(--gray);
}

.account-card__list li strong {
  color: var(--white);
  text-align: right;
}

.account-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-tabs__actions {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

.admin-local-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  vertical-align: middle;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.admin-table td {
  color: rgba(255, 255, 255, 0.82);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-filters select,
.admin-order__status {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  min-width: 140px;
}

.admin-toolbar__actions {
  display: flex;
  gap: 0.5rem;
}

.orders-loading,
.orders-empty {
  text-align: center;
  color: var(--gray);
  padding: 3rem 1rem;
}

.orders-list,
.admin-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
}

.order-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.order-card__number {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: block;
}

.order-card__date {
  font-size: 0.78rem;
  color: var(--gray);
}

.order-card__status {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.order-card__status--pending { color: #f0c674; border-color: rgba(240, 198, 116, 0.4); }
.order-card__status--confirmed { color: #7ec8e3; border-color: rgba(126, 200, 227, 0.4); }
.order-card__status--preparing { color: #c9a0ff; border-color: rgba(201, 160, 255, 0.4); }
.order-card__status--delivering { color: #8fd4a0; border-color: rgba(143, 212, 160, 0.4); }
.order-card__status--completed { color: var(--gold); border-color: rgba(217, 179, 130, 0.5); }
.order-card__status--cancelled { color: #f5a5ad; border-color: rgba(245, 165, 173, 0.4); }

.order-card__unit,
.order-card__schedule {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.order-card__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-card__items--compact { margin: 0.5rem 0; padding: 0.5rem 0; }

.order-card__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.order-card__details {
  width: 100%;
  font-size: 0.75rem;
  color: var(--gray);
  padding-left: 0.75rem;
}

.order-card__note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.order-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.order-card__foot strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.admin-order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
}

.admin-order__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.admin-order__meta,
.admin-order__customer {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.admin-order__total {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.admin-order__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  min-width: 160px;
}

.admin-order__status-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-panel__customer {
  margin-bottom: 0.75rem;
}

.cart-panel__delivery {
  margin-top: 1rem;
}

.cart-delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.cart-delivery-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  text-align: center;
}

.cart-delivery-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(217, 179, 130, 0.12);
  color: var(--gold);
}

.cart-delivery-option input {
  accent-color: var(--gold);
}

.cart-panel__address-hint {
  font-size: 0.72rem;
  color: var(--gray);
  margin: -0.35rem 0 0.75rem;
  line-height: 1.4;
}

.address-autocomplete {
  position: relative;
}

.address-autocomplete__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 20;
  background: var(--dark);
  border: 1px solid rgba(217, 179, 130, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

.address-autocomplete__list.is-hidden {
  display: none;
}

.address-autocomplete__option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: none;
  background: none;
  color: var(--white);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.address-autocomplete__option:hover,
.address-autocomplete__option.is-active {
  background: rgba(217, 179, 130, 0.12);
}

.address-autocomplete__option strong {
  font-size: 0.85rem;
  color: var(--gold);
}

.address-autocomplete__option span {
  font-size: 0.72rem;
  color: var(--gray);
}

.cart-panel__address {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-panel__address.is-hidden {
  display: none;
}

.cart-panel__address-grid {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 0.65rem;
}

.cart-panel__field--wide {
  grid-column: 1 / -1;
}

.cart-panel__customer-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.cart-panel__customer-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cart-panel__customer-grid--guest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.cart-panel__customer-logged {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.cart-panel__customer-logged a {
  color: var(--gold);
}

.cart-panel__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.cart-panel__field input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.55rem 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.cart-panel__customer-hint {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.cart-panel__customer-hint a {
  color: var(--gold);
  text-decoration: underline;
}

.admin-stats--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-filters__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 140px;
}

.admin-filters__field span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
}

.admin-filters__field select,
.admin-filters__field input[type="date"] {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.5rem 0.65rem;
  font-size: 0.88rem;
}

.admin-filters__hint {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.admin-filters__hint strong {
  color: var(--gold);
}

.admin-charts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.admin-chart-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.admin-chart-card--wide {
  grid-column: 1 / -1;
  min-height: 320px;
}

.admin-chart-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.admin-chart-card canvas {
  flex: 1;
  width: 100% !important;
  max-height: 240px;
}

.admin-location-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
  margin: 2rem 0 1rem;
  font-weight: 500;
}

.admin-location-title:first-of-type {
  margin-top: 0;
}

.admin-table-wrap--spaced {
  margin-top: 0.5rem;
}

.admin-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.admin-location-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-location-card strong {
  color: var(--white);
  font-size: 1rem;
}

.admin-location-card span {
  color: var(--gold);
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .admin-stats--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-charts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .admin-stats--wide {
    grid-template-columns: 1fr;
  }

  .cart-panel__address-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .auth-split {
    grid-template-columns: 1fr;
  }

  .auth-split__visual {
    min-height: 280px;
    max-height: 42vh;
    padding: 1.75rem 1.5rem;
  }

  .auth-split__visual-video {
    object-fit: contain;
    object-position: center center;
    transform: scale(1.03);
  }

  .auth-split__visual-logo {
    height: 42px;
    margin-bottom: 1rem;
  }

  .auth-split__visual-title {
    font-size: 1.8rem;
  }

  .auth-split__visual-text {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .auth-split__main {
    padding: 2rem 1.25rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .cart-panel__customer-grid--guest {
    grid-template-columns: 1fr;
  }

  .admin-order {
    grid-template-columns: 1fr;
  }

  .admin-order__actions {
    flex-direction: row;
    align-items: flex-end;
  }
}

.menu-item__actions {
  margin-top: 0.75rem;
}

.menu-item__meta {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted, #9a9a9a);
}

.menu-item--product .menu-item__add {
  position: static;
  margin-top: 0.5rem;
}

.admin-cardapio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.admin-cardapio-block {
  margin-bottom: 2.5rem;
}

.admin-cardapio-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-cardapio-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.admin-menu-form {
  display: grid;
  gap: 0.85rem;
}

.admin-menu-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.admin-menu-form input,
.admin-menu-form textarea,
.admin-menu-form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  color: inherit;
}

.admin-menu-form--inline {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: end;
}

.admin-menu-form--add {
  margin-top: 1rem;
}

.admin-check {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
}

.admin-check input {
  width: auto;
}

.admin-code-input {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

.admin-cardapio-form {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-cardapio-form--modal {
  margin-top: 2rem;
}

.admin-inline-form {
  display: inline;
}

.admin-cardapio-delete {
  margin-top: 0.75rem;
}

@media (max-width: 960px) {
  .admin-cardapio-grid {
    grid-template-columns: 1fr;
  }
}

