/* ============================================
INDEX.CSS — Brasa Burguer | Página Principal
============================================ */

/* ── GLOBAL ── */
html,
body {
  overflow-x: hidden;
}

/* ── HERO / BANNER ── */
#hero {
  position: relative;
  min-height: 42.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
  padding-top: 5rem;
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: 0 1.25rem;
  width: 100%;
  max-width: 82.5rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 0.0625rem solid rgba(201, 147, 58, 0.5);
  border-radius: 3.125rem;
  padding: 0.4375rem 1.375rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(0.25rem);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.625rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.45s,
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.45s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
  margin: 0 0 2.5rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.65s,
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.65s;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.85s,
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.85s;
}

#hero.hero-ready .hero-badge,
#hero.hero-ready .hero-title,
#hero.hero-ready .hero-subtitle,
#hero.hero-ready .hero-cta-group {
  opacity: 1;
  transform: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.35s ease;
  opacity: 0;
  animation: fadeInScroll 0.6s ease forwards 1.2s;
}

@keyframes fadeInScroll {
  to {
    opacity: 1;
  }
}

.hero-scroll-indicator:hover {
  color: var(--gold-light);
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.375rem;
  border: 0.125rem solid rgba(201, 147, 58, 0.5);
  border-radius: 0.75rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  position: absolute;
  top: 0.375rem;
  width: 0.1875rem;
  height: 0.375rem;
  background: var(--gold-light);
  border-radius: 0.125rem;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    top: 0.375rem;
    opacity: 1;
  }

  100% {
    top: 1.25rem;
    opacity: 0;
  }
}

.btn-outline-hero {
  color: rgba(255, 255, 255, .85) !important;
  border-color: rgba(255, 255, 255, .4) !important;
}

/* ── HERO — Pulse + Onda expansiva no botão "Pedir Agora" ── */
@keyframes heroBtnPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes heroBtnWave {
  0% {
    box-shadow: 0 0 0 0px rgba(201, 147, 58, 0.55),
      0 0.375rem 1.75rem rgba(201, 147, 58, 0.35);
  }

  50% {
    box-shadow: 0 0 0 0.875rem rgba(201, 147, 58, 0),
      0 0.375rem 1.75rem rgba(201, 147, 58, 0.35);
  }

  100% {
    box-shadow: 0 0 0 0px rgba(201, 147, 58, 0),
      0 0.375rem 1.75rem rgba(201, 147, 58, 0.35);
  }
}

#hero .btn-gold {
  animation:
    heroBtnPulse 2s ease-in-out infinite,
    heroBtnWave 2s ease-in-out infinite;
}

#hero .btn-gold:hover {
  animation: none;
  box-shadow: 0 0.5rem 1.875rem rgba(201, 147, 58, 0.55) !important;
  transform: scale(1) !important;
  transition: box-shadow 0s, transform 0s;
}

/* ── SOBRE (ABOUT) ── */
#sobre {
  padding: 6.875rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-img-wrapper {
  position: relative;
}

.about-badge-floating {
  position: absolute;
  top: 1.75rem;
  left: -1.25rem;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.125rem 1.375rem;
  text-align: center;
  box-shadow: var(--shadow-dark);
  border: 0.0625rem solid rgba(201, 147, 58, 0.3);
}

.about-badge-floating .num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.about-badge-floating .lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem;
  background: var(--cream-2);
  border-radius: var(--radius);
  border: 0.0625rem solid rgba(201, 147, 58, 0.12);
  transition: var(--transition);
}

.about-feature-item:hover {
  border-color: var(--gold);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(201, 147, 58, 0.12);
}

/* NOTA: fundo do ícone mantido com gradiente original (dourado) */
.about-feature-item .icon {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #C9933A, #E8B86D);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feature-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.1875rem;
  color: var(--charcoal);
}

.about-feature-item p {
  font-size: 0.8rem;
  color: rgba(44, 44, 44, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* ── CARDÁPIO DESTAQUE ── */
#cardapio-destaque {
  padding: 6.875rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#cardapio-destaque::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 147, 58, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 147, 58, 0.04) 0%, transparent 50%);
}

.card-produto {
  display: flex;
  flex-direction: column;
  background: var(--charcoal-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.0625rem solid rgba(201, 147, 58, 0.1);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.card-produto:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(201, 147, 58, 0.4);
  box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.4), 0 0 0 0.0625rem rgba(201, 147, 58, 0.2);
}

.card-produto-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3125rem 0.875rem;
  border-radius: 3.125rem;
  z-index: 2;
}

.card-produto-img-wrap {
  overflow: hidden;
  height: 18.75rem;
  flex-shrink: 0;
}

.card-produto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.card-produto:hover .card-produto-img {
  transform: scale(1.05);
}

.card-produto-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.375rem 1.5rem 1.5rem;
}

.card-produto-nome {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card-produto-desc {
  flex: 1;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 1.125rem;
}

.card-produto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-produto-price {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}

.card-produto-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

/* NOTA: fundo do botão de pedido mantido com gradiente original (dourado) */
.btn-card-pedido {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9933A, #E8B86D);
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0.25rem 0.9375rem rgba(201, 147, 58, 0.4);
}

.btn-card-pedido:hover {
  transform: scale(1.15);
  box-shadow: 0 0.5rem 1.5625rem rgba(201, 147, 58, 0.6);
}

/* ── DIFERENCIAIS ── */
#diferenciais {
  padding: 6.875rem 0;
  background: var(--cream-2);
  position: relative;
}

.diferencial-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 0.0625rem solid rgba(201, 147, 58, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.diferencial-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.1875rem;
  background: #940000;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.diferencial-card:hover::before {
  transform: scaleX(1);
}

.diferencial-card:hover {
  transform: translateY(-0.375rem);
  border-color: rgba(201, 147, 58, 0.3);
  box-shadow: 0 0.9375rem 2.5rem rgba(201, 147, 58, 0.1);
}

/* NOTA: fundo do ícone mantido com gradiente original (dourado) */
.diferencial-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #C9933A, #E8B86D);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0.5rem 1.5625rem rgba(201, 147, 58, 0.3);
  transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
  transform: scale(1.1) rotate(-5deg);
}

.diferencial-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.diferencial-desc {
  font-size: 0.88rem;
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* ── GALERIA ── */
#galeria {
  padding: 2.5rem 0 6.875rem;
  background: var(--charcoal);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay i {
  opacity: 1;
  transform: scale(1);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 13.75rem;
  background: linear-gradient(135deg, var(--charcoal-2), var(--charcoal-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ── DEPOIMENTOS ── */
#depoimentos {
  padding: 6.875rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.depoimento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 0.0625rem solid rgba(201, 147, 58, 0.1);
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.depoimento-card:hover {
  border-color: rgba(201, 147, 58, 0.3);
  box-shadow: 0 0.75rem 2.1875rem rgba(201, 147, 58, 0.1);
  transform: translateY(-0.25rem);
}

.depoimento-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.125rem;
  letter-spacing: 0.125rem;
}

.depoimento-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold-light);
  font-family: var(--font-title);
  margin-bottom: 0.875rem;
}

.depoimento-texto {
  font-size: 0.92rem;
  color: rgba(44, 44, 44, 0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 0.0625rem solid rgba(201, 147, 58, 0.12);
  padding-top: 1.25rem;
}

/* NOTA: fundo do avatar mantido com gradiente original (dourado) */
.depoimento-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9933A, #E8B86D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.depoimento-author-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 0.125rem;
}

.depoimento-author-role {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── BANNER CTA ── */
#cta-banner {
  padding: 5rem 0 6.875rem;
  background: linear-gradient(135deg, #9B6E22 0%, #C9933A 50%, #E8B86D 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#cta-banner .cta-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

#cta-banner .cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.75rem;
  position: relative;
}

/* ALTERADO: botão CTA principal agora em #940000 ao invés de preto */
#cta-banner .btn-cta {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.0625rem 2.75rem;
  border-radius: 3.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: #940000;
  color: var(--white);
  border: 0.125rem solid #940000;
  box-shadow: 0 0.375rem 1.75rem rgba(148, 0, 0, 0.35);
}

#cta-banner .btn-cta:hover {
  transform: translateY(-0.25rem) scale(1.02);
  box-shadow: 0 1rem 2.75rem rgba(148, 0, 0, 0.5);
  background: #700000;
  border-color: #700000;
  color: var(--white);
}

#cta-banner .btn-cta.btn-cta-dark {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 0.125rem solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0.375rem 1.75rem rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(0.375rem);
}

#cta-banner .btn-cta.btn-cta-dark:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--gold-dark);
  box-shadow: 0 1rem 2.75rem rgba(0, 0, 0, 0.25);
  transform: translateY(-0.25rem) scale(1.02);
}

#cta-banner .btn-cta i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

#cta-banner .btn-cta:hover i {
  transform: scale(1.25);
}

/* ── LOCALIZAÇÃO / CONTATO ── */
#contato {
  padding: 6.875rem 0;
  background: var(--charcoal-2);
  position: relative;
}

.contato-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--charcoal);
  border: 0.0625rem solid rgba(201, 147, 58, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem 1.75rem;
  height: 100%;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contato-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.1875rem;
  background: #940000;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contato-card:hover {
  border-color: rgba(201, 147, 58, 0.35);
  transform: translateY(-0.375rem);
  box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.35);
}

.contato-card:hover::before {
  transform: scaleX(1);
}

/* NOTA: fundo do ícone mantido com gradiente original (dourado) */
.contato-card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.125rem;
  background: linear-gradient(135deg, #C9933A, #E8B86D);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0.5rem 1.5625rem rgba(201, 147, 58, 0.3);
  transition: var(--transition);
}

.contato-card:hover .contato-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.contato-card-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.625rem;
}

.contato-card-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  flex: 1;
}

.contato-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.125rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}

.contato-card:hover .contato-card-action {
  gap: 0.625rem;
  color: var(--gold-light);
}

.contato-icon-wa {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  box-shadow: 0 0.5rem 1.5625rem rgba(37, 211, 102, .3) !important;
}

/* ── Animações de entrada (reveal) ── */
.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-left {
  transform: translateX(-3.125rem);
}

.reveal.reveal-right {
  transform: translateX(3.125rem);
}

.reveal.reveal-scale {
  transform: scale(0.92);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ── Stagger de cards ── */
.stagger-child {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.stagger-child.visible {
  opacity: 1;
  transform: none;
}

/* ── Progress bars ── */
[data-progress] {
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

[data-progress].visible {
  width: var(--progress-value);
}

/* ── Placeholders ── */
.sobre-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--charcoal-2), var(--charcoal-3));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-dark);
  font-size: 5rem;
}

.sobre-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 1.25rem;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: var(--shadow-dark);
}

.card-produto-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--charcoal-2), var(--charcoal-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ── Misc utilities ── */
.sobre-texto {
  color: rgba(44, 44, 44, .75);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.sobre-texto.mb-last {
  margin-bottom: 2.25rem;
}

.subtitle-dark {
  color: var(--gold-light);
}

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

.em-gold {
  color: var(--gold-light);
}

.container-rel {
  position: relative;
}

.badge-dark {
  background: var(--gold);
}

.badge-red {
  background: #E53935;
}

.btn-gold-sm {
  font-size: .88rem;
  padding: 0.875rem 2.5rem;
}

.divider-gold-center {
  justify-content: center;
}

.contato-grid {
  max-width: 48.75rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-badge-floating {
    position: absolute;
    top: 1.25rem;
    left: 0.5rem;
  }

  #sobre,
  #diferenciais,
  #galeria,
  #depoimentos,
  #cardapio-destaque,
  #contato {
    padding: 4.5rem 0;
  }

  #cta-banner {
    padding: 4rem 0;
  }
}

@media (max-width: 575px) {
  #hero {
    min-height: 49rem;
    align-items: flex-start;
    padding-top: 10rem;
  }

  .hero-badge {
    white-space: normal;
    text-align: center;
    justify-content: center;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 0.5rem;
  }

  .hero-content {
    padding: 0 1.5rem;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-cta-group .btn-gold {
    width: auto;
    padding: 0.875rem 2.5rem;
    min-width: 17.5rem;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  #sobre,
  #diferenciais,
  #galeria,
  #depoimentos,
  #cardapio-destaque {
    padding: 3.5rem 0;
  }

  #contato {
    padding: 3.5rem 0;
  }

  #contato .text-center.mb-5 {
    margin-bottom: 3.5rem !important;
  }

  #sobre {
    padding: 3.5rem 0 !important;
  }

  #cta-banner {
    padding: 3rem 0;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .depoimento-card {
    padding: 1.5rem 1.25rem;
  }

  #cta-banner .btn-cta {
    width: auto;
    min-width: unset;
    max-width: unset;
    justify-content: center;
    white-space: nowrap;
    padding: 0.9375rem 1.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  #sobre .subtitle,
  #sobre .section-title {
    text-align: center !important;
  }

  #sobre .section-title::after {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 375px) {
  #hero {
    min-height: 46rem;
  }

  #cta-banner .btn-cta {
    padding: 0.8125rem 1.25rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    gap: 0.4375rem;
  }
}

/* ── Animação de entrada — Cards Destaque do Cardápio ── */
.card-destaque-reveal {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-reveal-left {
  transform: translateX(-60px);
}

.card-reveal-scale {
  transform: scale(0.85);
  transition-delay: 0.15s;
}

.card-reveal-right {
  transform: translateX(60px);
  transition-delay: 0.08s;
}

.card-destaque-reveal.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}