/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: var(--green-primary);
  box-shadow: var(--shadow-header);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: var(--logo-header);
  width: auto;
  max-width: min(340px, 72vw);
  object-fit: contain;
  object-position: left center;
  image-rendering: -webkit-optimize-contrast;
  border-radius: 12px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 1px rgba(255, 255, 255, 0.35));
  transition: height var(--transition), max-width var(--transition), filter var(--transition);
}

.header--scrolled .header__logo img {
  height: var(--logo-header-scrolled);
  max-width: min(300px, 68vw);
}

.nav__list {
  display: flex;
  gap: 1.35rem;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-soft);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 1003;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 6px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

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

.menu-toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle--open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(8, 24, 16, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
  width: min(300px, 82vw);
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: calc(env(safe-area-inset-top, 0px) + 5.5rem) 1.5rem calc(env(safe-area-inset-bottom, 0px) + 2rem);
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.28);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform var(--transition), visibility var(--transition);
  overflow-y: auto;
}

.mobile-nav--open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--green-deep);
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  overflow: hidden;
  background: var(--green-deep);
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img,
.hero__slide video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero__slide video {
  display: block;
  background: var(--green-deep);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(15, 47, 32, 0.55) 0%,
    rgba(15, 47, 32, 0.75) 50%,
    rgba(15, 47, 32, 0.9) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  padding-top: var(--header-height);
}

.hero__brand {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--gold-soft);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero__subtitle-small {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero__desc {
  max-width: 640px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.hero__desc p + p {
  margin-top: 0.85rem;
}

.hero__hours {
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  align-items: center;
}

.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.hero__dot--active {
  background: var(--red-accent);
  border-color: var(--white);
}

/* Sections */
.section {
  padding-block: var(--section-padding);
  scroll-margin-top: var(--header-height);
}

.section--dark {
  background: var(--green-primary);
  color: var(--white);
}

.section--deep {
  background: var(--green-deep);
  color: var(--white);
}

.section--experience {
  background: linear-gradient(180deg, var(--surface-clean) 0%, var(--surface-soft) 100%);
  color: var(--text-dark);
  position: relative;
}

.section--experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.45;
}

.section--contact {
  background: var(--white);
  color: var(--text-dark);
  border-top: 1px solid var(--border-subtle);
}

.section--cream {
  background: var(--cream);
}

.section--specialty {
  background: var(--surface-clean);
  padding-block: 0;
  overflow: hidden;
}

.specialty {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 420px;
}

.specialty__image {
  overflow: hidden;
  min-height: 280px;
}

.specialty__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 70% center;
}

.specialty__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: var(--surface-clean);
}

.specialty__content .section-title {
  margin-bottom: 0.35rem;
}

.specialty__content .section-subtitle {
  margin-bottom: 1rem;
}

.specialty__content .section-divider {
  margin-bottom: 1.5rem;
}

.specialty__content .section-text {
  max-width: 440px;
  margin-inline: auto;
  color: var(--text-muted-dark);
}

.specialty__content .section-text + .section-text {
  margin-top: 1rem;
}

/* Buffet visual strip */
.buffet-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.buffet-strip__item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

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

.buffet-strip__item:hover img {
  transform: scale(1.04);
}

/* Video band — ambiente */
.section--video {
  padding-block: 0;
  background: var(--green-deep);
}

.video-band {
  position: relative;
  min-height: clamp(420px, 70vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-band__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.video-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 47, 32, 0.55) 0%,
    rgba(15, 47, 32, 0.78) 50%,
    rgba(15, 47, 32, 0.9) 100%
  );
}

.video-band__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 720px);
  margin-inline: auto;
  padding: 4rem 1rem;
  text-align: center;
}

.video-band__content .section-divider {
  margin-bottom: 1.5rem;
}

.video-band__content .section-text {
  max-width: 600px;
}

.section__wave {
  display: block;
  width: 100%;
  height: 48px;
  margin-bottom: -1px;
}

.section__wave svg {
  width: 100%;
  height: 100%;
}

/* History */
.history__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.history__grid > * {
  min-width: 0;
}

.history__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.history__image img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 78% center;
}

.history__text {
  text-align: left;
}

.history__text .section-text {
  text-align: left;
  margin-inline: 0;
}

/* Experience */
.experience__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.experience__blocks > * {
  min-width: 0;
}

.experience__block {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--gold-soft);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.experience__block:hover {
  box-shadow: var(--shadow-clean);
  transform: translateY(-2px);
}

.experience__block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  margin-bottom: 0.75rem;
}

.experience__block p {
  color: var(--text-muted-dark);
  line-height: 1.7;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.gallery > * {
  min-width: 0;
}

/* Menu section */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
}

.menu-grid > * {
  min-width: 0;
}

/* Content helpers */
.content-narrow {
  max-width: 720px;
  margin-inline: auto;
}

.content-narrow .section-text {
  margin-bottom: 1rem;
}

.content-narrow .section-text:last-child {
  margin-bottom: 0;
}

/* Feature lists */
.feature-list {
  max-width: 520px;
  margin: 2rem auto;
  text-align: left;
}

.feature-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.75rem;
  color: var(--text-muted-dark);
  font-size: 1.05rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border-subtle);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list--bullets li::before {
  content: '';
  position: absolute;
  left: 0.35rem;
  top: 1.15rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.feature-list--checks li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.65rem;
  color: var(--green-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.section--experience .feature-list li {
  color: var(--text-muted-dark);
}

.diferenciais-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto 0;
  max-width: 520px;
  text-align: center;
}

.diferenciais-cta__text {
  margin: 0;
  color: var(--text-muted-dark);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Testimonials — estilo recomendação Google */
.reviews__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: -0.5rem 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted-dark);
}

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

.testimonials > * {
  min-width: 0;
}

.review {
  margin: 0;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08), 0 2px 8px rgba(60, 64, 67, 0.06);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  background: #5c6bc0;
}

.review__avatar--alt {
  background: #00897b;
}

.review__avatar--warm {
  background: #e67e22;
}

.review__meta {
  min-width: 0;
}

.review__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.review__source {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #70757a;
}

.review__google {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.review__stars {
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0.65rem;
  color: #fbbc04;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.review__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3c4043;
}

/* CTA final */
.cta-final__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: start;
}

.cta-final__grid > * {
  min-width: 0;
}

.cta-final__content {
  text-align: left;
}

.cta-final__content .section-text {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 1rem;
}

.cta-final__closing {
  font-weight: 600;
  color: var(--green-primary);
  margin-top: 0.5rem !important;
  margin-bottom: 1.5rem !important;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-muted-dark);
  font-size: 1.05rem;
}

.highlight-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(185, 170, 114, 0.55);
  color: var(--green-primary);
  background: rgba(185, 170, 114, 0.08);
}

.highlight-list__icon svg {
  width: 18px;
  height: 18px;
}

/* Map */
.map-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface-soft);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.map-block__title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  margin: 0;
}

.map-block__address {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

.map-block__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-clean);
  border: 1px solid var(--border-subtle);
}

.map-block__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-block__link {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.map-block__link:hover {
  color: var(--green-soft);
}

/* Footer */
.footer {
  background: var(--green-deep);
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(185, 170, 114, 0.2);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer__logo img {
  height: var(--logo-footer);
  width: auto;
  max-width: min(360px, 80vw);
  object-fit: contain;
  margin-bottom: 0.5rem;
  border-radius: 14px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 1px rgba(255, 255, 255, 0.28));
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-soft);
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(185, 170, 114, 0.45);
  color: var(--gold-soft);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer__instagram svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__instagram:hover {
  background: var(--gold-soft);
  color: var(--green-deep);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header {
    background: linear-gradient(180deg, rgba(15, 47, 32, 0.92) 0%, rgba(15, 47, 32, 0.55) 70%, transparent 100%);
  }

  .header--scrolled {
    background: var(--green-primary);
  }

  .header__inner {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 1rem;
    box-sizing: border-box;
    justify-content: flex-end;
  }

  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    max-width: calc(100% - 7rem);
    z-index: 1;
    pointer-events: none;
  }

  .header__logo img {
    object-position: center;
    max-width: min(260px, 58vw);
    pointer-events: auto;
  }

  .header--scrolled .header__logo img {
    max-width: min(220px, 54vw);
  }

  .menu-toggle {
    position: relative;
    z-index: 1003;
  }

  .container {
    padding-inline: 1.15rem;
  }

  .history__grid,
  .experience__blocks,
  .cta-final__grid,
  .testimonials,
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .specialty {
    grid-template-columns: 1fr;
    min-height: 0;
    width: 100%;
    max-width: 100%;
  }

  .specialty__content {
    order: 1;
    padding: 2.5rem 1.15rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .specialty__content > * {
    max-width: 100%;
    min-width: 0;
  }

  .specialty__image {
    order: 2;
    min-height: 0;
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .specialty__content .section-text {
    max-width: 100%;
  }

  .buffet-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
    width: 100%;
  }

  .buffet-strip__item {
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .video-band {
    min-height: 520px;
    width: 100%;
  }

  .video-band__content {
    width: min(100% - 2rem, 720px);
    padding: 3rem 0.25rem;
    box-sizing: border-box;
  }

  .video-band__content > * {
    max-width: 100%;
    min-width: 0;
  }

  /* —— Hero mobile: overlay como desktop, sem overflow —— */
  .hero {
    position: relative;
    display: block;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .hero__slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    background: var(--green-deep);
  }

  .hero__overlay {
    inset: 0;
    height: auto;
    background: linear-gradient(
      to bottom,
      rgba(15, 47, 32, 0.52) 0%,
      rgba(15, 47, 32, 0.75) 45%,
      rgba(15, 47, 32, 0.94) 100%
    );
    pointer-events: none;
  }

  .hero__slide img,
  .hero__slide video {
    object-fit: cover;
    object-position: center center;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: calc(var(--header-height) + 1rem) 1.15rem 5rem;
    background: transparent;
    text-align: center;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .hero__content > * {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .hero__brand {
    font-size: clamp(2.15rem, 8.5vw, 2.75rem);
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
    width: 100%;
  }

  .hero__tagline {
    font-size: clamp(2.75rem, 12vw, 3.75rem);
    margin-bottom: 0.75rem;
    width: 100%;
    line-height: 1.08;
  }

  .hero__subtitle-small {
    font-size: clamp(1.15rem, 4.4vw, 1.35rem);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
    max-width: 100%;
    width: 100%;
    padding-inline: 0.25rem;
  }

  .hero__desc {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1.25rem;
    font-size: clamp(1.05rem, 3.8vw, 1.2rem);
    line-height: 1.65;
    padding-inline: 0.15rem;
  }

  .hero__desc p + p {
    margin-top: 0.75rem;
  }

  .hero__hours {
    margin-top: 0.9rem !important;
    font-size: clamp(1.05rem, 3.8vw, 1.2rem);
    font-weight: 600;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 0.7rem;
    padding-bottom: 0;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0.85rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .hero__dots {
    bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
    z-index: 3;
  }

  .hero__dot {
    width: 10px;
    height: 10px;
  }

  /* Sections */
  .section-title {
    letter-spacing: 0.04em;
    font-size: clamp(1.25rem, 5.2vw, 1.6rem);
    line-height: 1.25;
    padding-inline: 0.35rem;
    max-width: 100%;
  }

  .section-subtitle {
    font-size: clamp(1.3rem, 5.5vw, 1.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .section-divider {
    margin-bottom: 1.75rem;
  }

  .section-text {
    font-size: 0.95rem;
    line-height: 1.65;
    padding-inline: 0.15rem;
    max-width: 100%;
    width: 100%;
  }

  .history__image img {
    object-position: center center;
  }

  .history__text {
    text-align: center;
  }

  .history__text .section-text {
    text-align: center;
  }

  .feature-list {
    max-width: 100%;
    margin: 1.5rem 0;
    padding-inline: 0.25rem;
  }

  .feature-list li {
    font-size: 0.98rem;
    padding: 0.75rem 0 0.75rem 1.65rem;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 0.5rem;
  }

  .gallery__item {
    aspect-ratio: 1;
  }

  .gallery__item img {
    object-position: center center;
  }

  .testimonials {
    gap: 1rem;
  }

  .review {
    padding: 1.2rem 1.1rem;
  }

  .cta-final__content {
    text-align: center;
  }

  .cta-final__content .section-text {
    text-align: center;
  }

  .highlight-list {
    align-items: flex-start;
    max-width: 280px;
    margin: 1.35rem auto;
    gap: 0.75rem;
  }

  .highlight-list li {
    font-size: 0.98rem;
  }

  .cta-final__content .btn {
    width: 100%;
    max-width: none;
    min-height: 48px;
  }

  .cta-final__content {
    padding-bottom: 0.5rem;
  }

  .cta-final__grid {
    padding-bottom: 2.5rem;
  }

  .cta-final__closing {
    margin-bottom: 1.25rem !important;
  }

  .map-block {
    padding: 1.15rem;
  }

  .map-block__frame {
    aspect-ratio: 16 / 11;
  }

  .contact-link {
    min-height: 44px;
  }

  .experience__block {
    padding: 1.5rem;
  }

  .menu-card {
    aspect-ratio: 16 / 11;
    max-height: 320px;
  }

  .menu-card--carnes .menu-card__image {
    object-position: 90% center;
  }

  .menu-card__title {
    font-size: 1.15rem;
  }

  .menu-card__desc {
    font-size: 0.85rem;
  }

  .menu-card__overlay {
    padding: 1rem;
  }

  /* Espaço para o float do WhatsApp não cobrir CTAs */
  main {
    padding-bottom: 1rem;
  }

  .footer {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
    right: calc(0.85rem + env(safe-area-inset-right, 0px));
  }
}

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

  .hero__content {
    padding: calc(var(--header-height) + 0.85rem) 1rem 4.75rem;
  }

  .hero__brand {
    font-size: clamp(2rem, 8.8vw, 2.45rem);
    letter-spacing: 0.08em;
  }

  .hero__tagline {
    font-size: clamp(2.5rem, 13vw, 3.25rem);
    margin-bottom: 0.65rem;
  }

  .hero__subtitle-small {
    font-size: clamp(1.1rem, 4.6vw, 1.25rem);
    margin-bottom: 0.85rem;
  }

  .hero__desc {
    font-size: clamp(1rem, 4.1vw, 1.12rem);
    line-height: 1.6;
    margin-bottom: 1.1rem;
  }

  .hero__desc p:nth-child(2) {
    display: block;
  }

  .hero__hours {
    font-size: clamp(1rem, 4.1vw, 1.12rem);
  }

  .section-title {
    letter-spacing: 0.03em;
    font-size: clamp(1.15rem, 5vw, 1.4rem);
  }

  .section-subtitle {
    font-size: clamp(1.2rem, 5.2vw, 1.55rem);
  }

  .feature-list li {
    font-size: 0.92rem;
  }

  .history__grid {
    gap: 1.25rem;
  }

  .gallery {
    gap: 0.5rem;
  }
}

/* Landscape phones: hero mais compacto, mantém overlay */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero__slider {
    position: absolute;
    inset: 0;
    aspect-ratio: unset;
    max-height: none;
  }

  .hero__content {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--header-height) + 0.5rem) 1.25rem 3.5rem;
    justify-content: center;
  }

  .hero__desc p:nth-child(2) {
    display: none;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 480px;
  }

  .hero__actions .btn {
    width: auto;
    flex: 1 1 200px;
    max-width: 240px;
  }
}
