/* ============================================================
   Buffet Artur Churrasqueiro — style.css
   Mobile-first · Design System · Scroll Animations
   ============================================================ */

/* ── Google Fonts import handled in HTML ── */

/* ============================================================
   1. CSS Custom Properties (Design System)
   ============================================================ */
:root {
  --color-primary:   #D83524;
  --color-secondary: #66301D;
  --color-support:   #A64943;
  --color-black:     #000000;
  --color-white:     #FFFFFF;
  --color-offwhite:  #F9F9F9;
  --color-gray-100:  #F3F3F3;
  --color-gray-200:  #E5E5E5;
  --color-gray-400:  #9CA3AF;
  --color-gray-600:  #6B6B6B;
  --color-gray-800:  #2D2D2D;

  --font-heading: 'Rockwell', 'Rockwell Nova', Georgia, serif;
  --font-body:    'Mulish', sans-serif;

  --spacing-xs:  0.5rem;
  --spacing-sm:  1rem;
  --spacing-md:  1.5rem;
  --spacing-lg:  2.5rem;
  --spacing-xl:  4rem;
  --spacing-2xl: 6rem;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.10);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.18);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.22);

  --transition-fast:   150ms ease-out;
  --transition-normal: 280ms ease-out;
  --transition-slow:   420ms ease-in-out;

  --header-height: 72px;
  --container-max: 1280px;
}

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

html {
  scroll-behavior: auto; /* Lenis cuida do smooth scroll — não conflitar */
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ============================================================
   3. Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

h1 { font-size: clamp(2rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-red   { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }

/* ============================================================
   4. Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--spacing-md);
}

.section {
  padding-block: var(--spacing-xl);
}

.section--offwhite {
  background-color: var(--color-offwhite);
}

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

.section--rounded {
  border-radius: 20px;
  margin-inline: 10px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.section-title {
  margin-bottom: var(--spacing-sm);
  color: #26282B;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
}

.section-subtitle {
  color: var(--color-gray-600);
  font-size: 1.0625rem;
  max-width: 600px;
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

/* Pre-headline pill — estilo similar ao eyebrow do hero */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(216, 53, 36, 0.68);
  border: 1px solid rgba(216, 53, 36, 0.35);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.075rem 0.4rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
}

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

.section-header--center .section-subtitle {
  margin-inline: auto;
}

/* ============================================================
   5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: background-color var(--transition-normal), color var(--transition-normal),
              border-color var(--transition-normal), transform var(--transition-fast),
              box-shadow var(--transition-normal);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn--primary:hover {
  background-color: var(--color-secondary);
  box-shadow: 0 6px 20px rgba(216,53,36,0.35);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn--outline-red {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline-red:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-black);
}
.btn--white:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  box-shadow: none;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Hero-specific buttons — pill shape, maiores, hover invertido */
.btn--pill-hero {
  border-radius: var(--radius-full);
  padding: 1.125rem 2.75rem;
  font-size: 1.0625rem;
}

.btn--pill-hero.btn--primary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 6px 24px rgba(255,255,255,0.18);
}

.btn__icon-img {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  display: block;
  filter: brightness(0) invert(1);
}

.btn--cardapio {
  border-width: 1px;
}

.btn--cardapio:hover {
  background-color: var(--color-white);
  color: var(--color-gray-800);
}

.btn--cardapio:hover .btn__icon-img {
  filter: brightness(0);
}

/* ============================================================
   6. Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  box-shadow: none;
  overflow: visible;
  transition: transform .62s cubic-bezier(.4, 0, .2, 1),
              box-shadow .3s ease;
}

/* Sombra sutil aparece apenas após rolar */
.header.header-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Desliza para cima e some ao rolar para baixo — valor alto o suficiente
   para esconder também o círculo da logo que protrai abaixo do header */
.header.header-hidden {
  transform: translateY(-180%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--spacing-md);
  overflow: visible;
}

/* ── Logo — o <a> É o círculo branco, logo e espaço são um único elemento ── */
.header__logo {
  position: absolute;
  left: 50%;
  top: calc(50% + 16px);
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Sombra apenas na parte inferior do círculo (abaixo do navbar).
   clip-path inicia em ~64% da altura do círculo = borda inferior do header. */
.header__logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 3px 14px rgba(0,0,0,0.10);
  clip-path: inset(64% -20px -20px -20px);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.header.header-scrolled .header__logo::after {
  opacity: 1;
}

.header__logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── Nav ── */
.header__nav {
  display: none;
}

.header__nav--left {
  justify-self: start;
}

.header__nav--right {
  justify-self: end;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.header__nav-link {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--color-gray-800);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.header__nav-link:hover,
.header__nav-link:focus {
  color: var(--color-primary);
}

.header__nav-link:hover::after,
.header__nav-link:focus::after {
  transform: scaleX(1);
}

.header__nav-link--highlight {
  color: var(--color-primary);
  font-weight: 700;
}

.header__nav-link--highlight:hover {
  color: var(--color-secondary);
}


/* ── Hamburger (mobile only) ── */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
  margin-left: auto;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-800);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-align: center;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-800);
  transition: color var(--transition-fast);
}

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

.mobile-nav__cta {
  margin-top: var(--spacing-sm);
}

/* ============================================================
   7. Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-black);
  border-radius: 20px;
  margin-inline: 10px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2) translateY(0px);
  will-change: transform;
}

.hero.is-loaded .hero__bg {
  /* parallax JS takes over transform — classe mantida para compatibilidade */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.42) 50%,
    rgba(0,0,0,0.52) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: var(--spacing-xl) var(--spacing-md);
  padding-top: calc(70px + var(--spacing-xl));
  max-width: 860px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: rgba(216, 53, 36, 0.65);
  border: 1px solid rgba(216, 53, 36, 0.35);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.hero__eyebrow-short {
  display: none;
}

.hero__title {
  font-family: var(--font-body);
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 12px rgba(0,0,0,0.40);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__title-light {
  font-weight: 100;
  display: block;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 0.3em;
}

.hero__title-bold {
  font-weight: 800;
  display: block;
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  white-space: nowrap;
}

.hero__subtitle {
  font-size: clamp(0.875rem, 1.6vw, 1.0625rem);
  font-weight: 300;
  color: rgba(255,255,255,0.93);
  line-height: 1.75;
  letter-spacing: 0.01em;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--spacing-lg);
  max-width: 680px;
  margin-inline: auto;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
}

.hero__ctas .btn {
  width: 100%;
  max-width: 340px;
  justify-content: center;
}

/* Hero wrapper — provides relative context for the overlap arrow */
.hero-wrapper {
  position: relative;
  margin-bottom: 1.25rem;
}


@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  animation: heroFadeUp 0.45s ease-out both;
}

.hero__title {
  animation: heroFadeUp 1.1s ease-out 0.2s both;
}

/* ============================================================
   8. Trust Bar — infinite marquee
   ============================================================ */
.trust-bar {
  background-color: var(--color-primary);
  padding-block: 0.75rem;
  margin-inline: 10px;
  overflow: hidden;
  border-radius: 14px;
}

/* Track — two identical lists side by side, animated */
.trust-bar__track {
  display: flex;
  width: max-content;
  animation: marquee 55s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-bar__list {
  display: flex;
  align-items: center;
  list-style: none;
  flex-shrink: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  white-space: nowrap;
  padding-inline: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.20);
}

.trust-bar__item:last-child {
  border-right: none;
}

.trust-bar__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--color-white);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0.85;
}

/* ── Serviços — headline em dois pesos (espelho do hero) ── */
.servicos__title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
}

.servicos__title-light {
  font-weight: 200;
}

.servicos__title-bold {
  font-weight: 800;
}

/* ============================================================
   9. Services Section — carousel com reveal no hover
   ============================================================ */

/* Wrapper com setas laterais */
.services-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-inline: -1.5rem;
}

.services-side-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  color: var(--color-gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast),
              box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.services-side-btn:hover:not(:disabled) {
  background-color: var(--color-gray-100);
  border-color: var(--color-gray-400);
  box-shadow: var(--shadow-md);
}

.services-side-btn:disabled {
  opacity: 0.30;
  cursor: not-allowed;
}

/* Carousel — overflow hidden, track move via JS */
.services-carousel {
  flex: 1;
  overflow: hidden;
}

.services-carousel__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-carousel__item {
  flex-shrink: 0;
  width: calc(50% - 0.5rem);
  height: 420px;
}

/* Card — base */
.service-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

/* Overlay preto suave */
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.5s ease;
}

.service-card:hover .service-card__overlay {
  background: rgba(0, 0, 0, 0.44);
}

/* Imagem — parallax via object-position (sem conflito com transform) */
.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.04);
  transition: transform 0.9s ease-out;
  will-change: transform;
}

.service-card:hover .service-card__img {
  transform: scale(1.0);               /* zoom-out sutil */
}

/* Título centralizado — oculta no hover */
.service-card__title-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  text-align: center;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card__title-wrap {
  opacity: 0;
}

.service-card__name {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.50);
}

/* Seta pulsante */
.service-card__hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  z-index: 2;
  animation: hintPulse 2s ease-in-out infinite;
  transition: opacity 0.35s ease;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.60));
}

.service-card:hover .service-card__hint {
  opacity: 0;
  animation: none;
  pointer-events: none;
}

@keyframes hintPulse {
  0%, 100% { transform: translateX(-50%) translateY(0);    opacity: 1;    }
  50%       { transform: translateX(-50%) translateY(-6px); opacity: 0.40; }
}

/* Reveal — ancorado na base, slide suave e lento */
.service-card__reveal {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 3.5rem 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
}

.service-card:hover .service-card__reveal {
  transform: translateY(0);
}

.service-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color var(--transition-fast);
  white-space: nowrap;
  align-self: center;
}

.service-card__btn:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* ============================================================
   10. Cardápio Section
   ============================================================ */

/* Tab nav — centered pill card */
.cardapio__tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.cardapio__tabs {
  display: inline-flex;
  background: var(--color-white);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--color-gray-600);
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  background: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn:hover {
  color: var(--color-primary);
  background-color: rgba(216, 53, 36, 0.04);
}

.tab-btn.is-active {
  color: var(--color-white);
  background-color: var(--color-primary);
}

/* Book-style menu container */
.cardapio__book {
  position: relative;
  border: 2px solid rgba(216, 53, 36, 0.28);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem;
  background: var(--color-offwhite);
  box-shadow:
    inset 0 0 0 8px rgba(216, 53, 36, 0.03),
    0 16px 56px rgba(0, 0, 0, 0.07);
}

/* Bookmark ribbon */
.cardapio__bookmark {
  position: absolute;
  top: -2px;
  right: 3rem;
  width: 30px;
  height: 54px;
  background: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.55rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(216, 53, 36, 0.35);
}

.tab-panel {
  display: none;
  animation: fadePanel 0.3s ease-out;
}

.tab-panel.is-active {
  display: block;
}

.cardapio__panel-title {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.cardapio__panel-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: rgba(216, 53, 36, 0.35);
}

@keyframes fadePanel {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.cardapio__item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: 0.875rem 0.25rem;
  border-bottom: 1px dashed rgba(216, 53, 36, 0.18);
}

.cardapio__item:last-child {
  border-bottom: none;
}

.cardapio__item-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #26282B;
  line-height: 1.4;
  display: block;
}

.cardapio__item-desc {
  font-size: 0.775rem;
  color: rgba(0, 0, 0, 0.40);
  margin: 0.2rem 0 0;
  line-height: 1.5;
  font-style: italic;
  letter-spacing: 0.01em;
}

.cardapio__item-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin-top: 0.55rem;
  margin-right: 0.6rem;
  opacity: 0.75;
}

.cardapio__item-left {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.cardapio__subcategory {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px solid rgba(216, 53, 36, 0.20);
  padding-bottom: var(--spacing-xs);
}

.cardapio__subcategory::before {
  content: '✦';
  font-size: 0.55rem;
  margin-right: 0.45rem;
  vertical-align: middle;
  opacity: 0.7;
}

.cardapio__subcategory:first-child {
  margin-top: 0;
}

/* Footer CTA hover — brown */
.cardapio__footer .btn--pill-hero.btn--primary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(102, 48, 29, 0.30);
}

/* Footer — centered */
.cardapio__footer {
  margin-top: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.cardapio__footer-note {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.35);
  margin: 0;
}

.orcamento__form-note {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.35);
  text-align: center;
  margin-top: var(--spacing-sm);
  margin-bottom: 0;
}

/* ============================================================
   11. Depoimentos Section
   ============================================================ */

/* Marquee wrapper — viewport com fade nas bordas, contido pelo .container */
.depoimentos__marquee-wrapper {
  overflow: hidden;
  margin-top: var(--spacing-xl);
  height: 680px;
  border-radius: var(--radius-lg);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.depoimentos__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}

/* Terceira coluna oculta em mobile */
.depoimentos__col--3 {
  display: none;
}

/* Keyframes */
@keyframes dep-scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes dep-scroll-down {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Col padrão: sobe (coluna do meio) */
.depoimentos__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: dep-scroll-up 220s linear infinite;
}

/* Colunas laterais: descem */
.depoimentos__col--down {
  animation-name: dep-scroll-down;
  animation-duration: 100s;
}

.depoimentos__col--2 {
  animation-duration: 110s;
  animation-delay: -10s;
}

.depoimentos__col--3 {
  animation-duration: 100s;
  animation-delay: -8s;
}

/* Hover pausa apenas a coluna sob o cursor */
.depoimentos__col:hover {
  animation-play-state: paused;
}

/* Card */
.dep-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.375rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  flex-shrink: 0;
  transition: box-shadow 0.2s ease;
}

.dep-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.dep-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}

.dep-card__stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.dep-card__google {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.dep-card__quote {
  font-size: 0.875rem;
  color: var(--color-gray-800);
  line-height: 1.65;
  margin: 0 0 1rem 0;
}

.dep-card__author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.dep-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.45;
}

.dep-card__author-info {
  flex: 1;
}

.dep-card__name {
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-black);
  margin: 0;
}

.dep-card__event {
  font-size: 0.71875rem;
  color: var(--color-gray-600);
}

/* CTA abaixo dos depoimentos */
.depoimentos__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-xl);
}

/* ============================================================
   12. Sobre o Artur Section
   ============================================================ */
.sobre {
  background-color: var(--color-offwhite);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.sobre__image-wrap {
  position: relative;
}

/* Container de posicionamento — sem overflow, sem sombra */
.sobre__image-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* Pre-headline card sobrepondo o topo da imagem */
.sobre__pre-headline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  border: 8px solid var(--color-offwhite);
  box-shadow: none;
  white-space: nowrap;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Clip separado para não cortar o selo */
.sobre__image-clip {
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
}

.sobre__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scale(1.12);
  will-change: transform;
}

/* Badge flutuante */
@keyframes sobre-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-4px); }
}

.sobre__badge {
  position: absolute;
  bottom: -1.25rem;
  right: -0.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: sobre-float 5s ease-in-out infinite;
}

.sobre__badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.sobre__badge-text {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
  opacity: 0.9;
  margin-top: 0.2rem;
}

/* Anchor: estica a largura do container, posiciona na base */
.sobre__trophy-anchor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

/* Selo */
.sobre__trophy-wrap {
  transform: translateY(40%);
  pointer-events: auto;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: var(--color-offwhite);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre__trophy-img {
  width: 144px;
  height: 144px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.sobre__content {
  padding-bottom: var(--spacing-md);
}

.sobre__content .servicos__title {
  white-space: nowrap;
}

/* Cards de benefícios com efeito glass */
.sobre__benefit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-block: var(--spacing-md);
}

.sobre__benefit-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sobre__benefit-icon {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.sobre__benefit-title {
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-black);
  margin: 0 0 0.2rem 0;
  line-height: 1.3;
}

.sobre__benefit-desc {
  font-size: 0.75rem;
  color: var(--color-gray-600);
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   13. Como Funciona Section
   ============================================================ */
.como-funciona__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  position: relative;
  align-items: stretch;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  background: var(--color-white);
  border: 2px solid rgba(216, 53, 36, 0.30);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 10px var(--color-white);
  height: 100%;
  box-sizing: border-box;
}

.step__number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(216,53,36,0.35);
  position: relative;
  z-index: 1;
}

.step__content {
  padding-top: 0.5rem;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.375rem;
}

.step__desc {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Card 4 — destaque vermelho */
.step--highlight {
  background: var(--color-primary);
  border-color: var(--color-primary);
  animation: stepFloat 3s ease-in-out infinite;
  overflow: hidden;
}

.step__bg-img {
  position: absolute;
  inset: -50px;
  background-image: url('/images/card4.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.step__overlay {
  position: absolute;
  inset: 0;
  background: rgba(216, 53, 36, 0.82);
  z-index: 1;
}

.step--highlight .step__number {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.step--highlight .step__content {
  position: relative;
  z-index: 2;
}

.step--highlight .step__title {
  color: var(--color-white);
}

.step--highlight .step__desc {
  color: rgba(255, 255, 255, 0.80);
}

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

.steps-carousel-wrap {
  position: relative;
}

.steps-side-btn {
  display: none; /* shown only on mobile via media query */
}

.como-funciona__cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* ============================================================
   14. FAQ Section
   ============================================================ */
.faq__list {
  width: 100%;
}

.faq__cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-gray-200);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) 0;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-gray-800);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-normal);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-gray-600);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  transition: stroke var(--transition-fast);
}

.faq-item.is-open .faq-item__question {
  color: var(--color-primary);
}

.faq-item.is-open .faq-item__icon {
  background-color: var(--color-primary);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-item__icon svg {
  stroke: var(--color-white);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow);
}

.faq-item.is-open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding-bottom: var(--spacing-md);
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ============================================================
   15. Formulário Section (Multi-step)
   ============================================================ */
.orcamento {}

.orcamento__inner {
  max-width: 640px;
  margin-inline: auto;
}

.form-progress {
  margin-bottom: var(--spacing-lg);
}

.form-progress__bar-wrap {
  height: 6px;
  background-color: var(--color-gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
}

.form-progress__bar {
  height: 100%;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

.form-progress__steps {
  display: flex;
  justify-content: space-between;
}

.form-progress__step {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.form-progress__step.is-active,
.form-progress__step.is-done {
  color: var(--color-primary);
}

.form-progress__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gray-200);
  transition: background-color var(--transition-fast);
}

.form-progress__step.is-active .form-progress__dot,
.form-progress__step.is-done .form-progress__dot {
  background-color: var(--color-primary);
}

.form-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 2px solid rgba(216, 53, 36, 0.28);
  box-shadow: inset 0 0 0 8px rgba(216, 53, 36, 0.03), 0 16px 56px rgba(0, 0, 0, 0.07);
}

.form-step {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
}

.form-step.is-active {
  display: block;
  animation: fadePanel 0.3s ease-out;
}

.form-step__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}

.form-step__title::before,
.form-step__title::after {
  content: '';
  display: block;
  width: 52px;
  height: 1px;
  border-radius: var(--radius-full);
  background-color: rgba(216, 53, 36, 0.30);
  flex-shrink: 0;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: 0.375rem;
}

.form-group label span {
  color: var(--color-primary);
  margin-left: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(216, 53, 36, 0.20);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  color: var(--color-gray-800);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  outline: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(216,53,36,0.12);
}

.form-control.is-invalid {
  border-color: var(--color-primary);
}

.form-control::placeholder {
  color: var(--color-gray-400);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  border-radius: var(--radius-md);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-error {
  font-size: 0.8125rem;
  color: var(--color-primary);
  margin-top: 0.375rem;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.form-actions .btn {
  flex: 1;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
}

.form-success.is-visible {
  display: block;
  animation: fadePanel 0.4s ease-out;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.form-success__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-black);
}

.form-success__text {
  color: var(--color-gray-600);
  margin-bottom: var(--spacing-lg);
}

/* ============================================================
   16. CTA Final Section
   ============================================================ */
.cta-final {
  position: relative;
  background-color: var(--color-secondary);
  overflow: hidden;
  text-align: center;
  padding-block: var(--spacing-2xl);
  border-radius: 20px 20px 0 0;
  margin-inline: 10px;
}

.cta-final__bg {
  position: absolute;
  inset: -60px;
  background-image: url('/images/ctab.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  will-change: transform;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102,48,29,0.72) 0%, rgba(216,53,36,0.58) 100%);
}

.cta-final__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.cta-final__title {
  font-family: var(--font-body);
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  white-space: nowrap;
}

.cta-final__title .servicos__title-light {
  color: var(--color-white);
}

.cta-final__title .servicos__title-bold {
  color: var(--color-white);
}

.cta-final__subtitle {
  font-size: 1.0625rem;
  opacity: 0.90;
  margin-bottom: var(--spacing-lg);
  max-width: 560px;
  margin-inline: auto;
}

.cta-final__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
}

/* ============================================================
   17. Footer
   ============================================================ */
.footer {
  background-color: var(--color-gray-800);
  color: var(--color-gray-400);
  padding-top: var(--spacing-xl);
  border-radius: 0 0 20px 20px;
  margin-inline: 10px;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--spacing-sm);
}

.footer__socials {
  display: flex;
  gap: 0.625rem;
  margin-top: var(--spacing-sm);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  transition: background-color var(--transition-fast);
}

.footer__social-link:hover {
  background-color: var(--color-primary);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-white);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer__social-link--filled svg {
  fill: var(--color-white);
  stroke: none;
}

.footer__social-link:hover svg {
  stroke: var(--color-white);
}

.footer__social-link--filled:hover svg {
  fill: var(--color-white);
  stroke: none;
}

.footer__social-img {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--transition-fast);
}

.footer__map {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-md);
  border: none;
  margin-top: 0.75rem;
  display: block;
  pointer-events: auto;
}

.site-copyright {
  padding-block: var(--spacing-md);
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  text-align: center;
}

.site-copyright__link {
  color: #60b8e0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--transition-fast);
}

.site-copyright__link:hover {
  color: #3a9fd4;
}

.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-link {
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer__nav-link:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

.footer__contact-item:last-child {
  margin-bottom: 0;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--color-primary);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer__contact-link {
  transition: color var(--transition-fast);
}

.footer__contact-link:hover {
  color: var(--color-white);
}


.footer__bottom-links {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.footer__bottom-link {
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: var(--color-white);
}

/* ============================================================
   18. WhatsApp Floating Button
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.10);
  box-shadow: 0 8px 24px rgba(37,211,102,0.55);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(37,211,102,0.45); }
  50% { transform: scale(1.06); box-shadow: 0 6px 22px rgba(37,211,102,0.60); }
}

/* ============================================================
   19. Scroll-to-top Button
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: calc(1.5rem + 60px + 0.75rem);
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(216,53,36,0.40);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--color-black);
  box-shadow: 0 6px 20px rgba(0,0,0,0.30);
}

/* ============================================================
   20. Scroll Animations
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.55s;
  transition-timing-function: ease-out;
}

[data-animate="fade-up"] {
  transform: translateY(36px);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="slide-left"] {
  transform: translateX(-36px);
}

[data-animate="slide-right"] {
  transform: translateX(36px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Pre-headline (eyebrow) — fade-in-up suave dentro do pai animado */
[data-animate] .section-eyebrow {
  transform: translateY(10px);
  transition: transform 0.45s ease-out 0.08s;
}

[data-animate].is-visible .section-eyebrow {
  transform: translateY(0);
}

/* Staggered children */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

[data-animate-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }
[data-animate-stagger].is-visible > *:nth-child(n+7) { transition-delay: 0.47s; opacity: 1; transform: none; }

/* Como funciona — todos os cards sempre visíveis, sem fade */
.como-funciona__steps > * {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ============================================================
   19b. Mobile fixes — max-width: 767px
   ============================================================ */
@media (max-width: 767px) {
  /* 0. Section headlines — slightly smaller on mobile */
  .servicos__title {
    font-size: 1.35rem;
  }

  /* 1. Hero title — inline flow, slightly smaller, no stacking */
  .hero__title {
    display: block;
    text-align: center;
  }
  .hero__title-light {
    display: inline;
    font-size: 1.5rem;
    white-space: normal;
    margin-bottom: 0;
  }
  .hero__title-bold {
    display: inline;
    font-size: 1.5rem;
    white-space: normal;
  }

  /* 2. Hero pre-headline — show short version only */
  .hero__eyebrow-long { display: none; }
  .hero__eyebrow-short { display: inline; }

  /* 3. Full-width buttons (except inside service cards) */
  .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .service-card .btn {
    width: auto;
    max-width: none;
  }

  /* 1b. Hero CTA — hide pencil icon on mobile */
  .hero__ctas .btn--primary svg {
    display: none;
  }

  /* 4. Services carousel — full container width, arrows overlay */
  .services-carousel-wrap {
    margin-inline: 0;
    position: relative;
    display: block;
  }
  .services-carousel {
    width: 100%;
    flex: none;
  }
  .services-side-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  #services-prev {
    left: 0.5rem;
  }
  #services-next {
    right: 0.5rem;
  }
  .services-carousel__item {
    width: 100%;
  }

  /* 5. Cardápio tabs — single horizontally scrollable row */
  .cardapio__tabs-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cardapio__tabs-wrap::-webkit-scrollbar {
    display: none;
  }
  .cardapio__tabs {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  /* 6. Depoimentos — 1 column only */
  .depoimentos__columns {
    grid-template-columns: 1fr;
  }
  .depoimentos__col--2 {
    display: none;
  }
  .depoimentos__col {
    animation-duration: 150s;
  }

  /* 7. Sobre — image above text, centered, seal at top-left corner */
  .sobre__image-wrap {
    order: -1;
  }
  .sobre__inner {
    justify-items: center;
  }
  .sobre__content {
    text-align: center;
  }
  .sobre__pre-headline {
    display: none;
  }
  .sobre__image-container {
    min-height: 220px;
  }
  .sobre__trophy-anchor {
    top: -1rem;
    left: -1rem;
    bottom: auto;
    right: auto;
    justify-content: flex-start;
    padding: 0;
    z-index: 10;
  }
  .sobre__trophy-wrap {
    transform: none;
    width: 90px;
    height: 90px;
  }
  .sobre__trophy-img {
    width: 82px;
    height: 82px;
  }

  /* 8. Como Funciona — JS transform carousel with arrows */
  .steps-side-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  #steps-prev { left: 0.5rem; }
  #steps-next { right: 0.5rem; }
  .steps-carousel {
    overflow: hidden;
    width: 100%;
  }
  .como-funciona__steps {
    display: flex;
    flex-direction: row;
    overflow: visible;
    gap: 1rem;
    padding: 0;
    scrollbar-width: unset;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .step {
    flex-shrink: 0;
    width: 100%;
    flex-direction: column;
    box-shadow: none;
    height: auto;
  }
  .step--highlight {
    animation: none;
  }

  /* 9. Copyright — single flowing line, smaller font */
  .site-copyright {
    display: block;
    font-size: 12px;
  }

  /* 11. CTA Final — allow title to wrap on mobile */
  .cta-final__title {
    white-space: normal;
  }

  /* 10. Mobile nav — contained button, styled items */
  .mobile-nav {
    padding-inline: 1.5rem;
  }
  .mobile-nav .btn {
    align-self: stretch;
  }
  .mobile-nav__list {
    gap: 0;
    width: 100%;
  }
  .mobile-nav__list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 0.875rem;
  }
  .mobile-nav__list li:not(:last-child)::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-top: 0.875rem;
  }
  .mobile-nav__link {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
}

/* ============================================================
   19c. Form row — colapsa em mobile
   ============================================================ */
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   20. Responsive — 768px (tablet)
   ============================================================ */
@media (min-width: 768px) {
  .section {
    padding-block: var(--spacing-2xl);
  }

  /* Services */
  .services-carousel__item {
    width: calc(50% - 0.5rem);
    height: 460px;
  }

  /* Cardápio */
  .cardapio__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: var(--spacing-lg);
  }

  .cardapio__item {
    padding: 0.75rem 0.25rem;
  }

  /* Center page divider — solid, starts after panel title */
  .cardapio__book::after {
    content: '';
    position: absolute;
    top: 7.5rem;
    bottom: 2.5rem;
    left: calc(50%);
    width: 1px;
    background: rgba(216, 53, 36, 0.18);
    pointer-events: none;
  }

  /* Depoimentos */
  .depoimentos__columns {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sobre */
  .sobre__image-wrap {
    min-height: 520px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-copyright {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Hero CTAs */
  .hero__ctas {
    flex-direction: row;
    justify-content: center;
  }

  .hero__ctas .btn {
    max-width: 320px;
  }

  /* CTA Final */
  .cta-final__ctas {
    flex-direction: row;
    justify-content: center;
  }

  /* Como funciona */
  .como-funciona__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   21. Responsive — 1024px (desktop)
   ============================================================ */
@media (min-width: 1024px) {
  .header__inner {
    display: grid;
    grid-template-columns: 1fr 160px 1fr;
    align-items: center;
  }

  .header__nav {
    display: flex;
  }

  .header__nav--left {
    grid-column: 1;
    justify-self: end;
  }

  .header__nav--right {
    grid-column: 3;
    justify-self: start;
  }

  .header__nav-list {
    gap: 0;
  }

  /* Separador sutil entre ítens + espaçamento simétrico via padding */
  .header__nav-list li {
    padding-inline: 1.1rem;
    position: relative;
  }

  .header__nav-list li + li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 28%;
    bottom: 28%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.06);
  }

  .header__hamburger {
    display: none;
  }

  /* Services — 4 cards visíveis */
  .services-carousel__item {
    width: calc(25% - 0.75rem);
    height: 480px;
  }

  /* Cardápio */
  .cardapio__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Depoimentos */
  .depoimentos__columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .depoimentos__col--3 {
    display: flex;
  }

  /* Sobre */
  .sobre__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }

  .sobre__image-wrap {
    order: 2;
  }

  .sobre__content {
    order: 1;
  }

  /* Como funciona — horizontal timeline */
  .como-funciona__steps {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
  }

  .como-funciona__steps::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 6%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-support) 100%);
    z-index: 0;
    transition: width 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  }

  .como-funciona__steps.is-visible::before {
    width: 88%;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

/* ============================================================
   22. Responsive — 1440px (wide)
   ============================================================ */
@media (min-width: 1440px) {
  .container {
    padding-inline: var(--spacing-xl);
  }
}

/* ============================================================
   23. Prefers Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-animate],
  [data-animate-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .whatsapp-float {
    animation: none;
  }

}

/* ============================================================
   24. Utility / Misc
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }

.divider {
  border: none;
  border-top: 1px solid var(--color-gray-200);
  margin-block: var(--spacing-md);
}

/* WhatsApp button in form success */
.btn--whatsapp {
  background-color: #25D366;
  color: var(--color-white);
}
.btn--whatsapp:hover {
  background-color: #1da851;
  box-shadow: 0 4px 16px rgba(37,211,102,0.40);
}

/* Instagram button */
.btn--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
  color: var(--color-white);
}
.btn--instagram:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 16px rgba(221,42,123,0.40);
}

/* Selo de premiação na hero */
.hero__seal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--spacing-md);
  background-color: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-white);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
}
