/* ============================================================
   Dionísio Burger — Landing Page
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5% 120px;
  position: relative;
  overflow: hidden;
  background: var(--bg-default);
  background-attachment: fixed;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(212,82,10,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 40%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/hero-texture-overlay.png') center/cover;
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  text-align: center;
  animation: fadeUp 0.8s var(--ease) forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-tagline::before, .hero-tagline::after {
  content: '';
  height: 1px;
  width: 60px;
}
.hero-tagline::before {
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.6));
}
.hero-tagline::after {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.6));
}

.hero-title {
  font-family: var(--font-accent);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  font-weight: 700;
}
.hero-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.1em;
  margin-top: 10px;
  font-family: var(--font-accent);
  gap: 20px;
}
.hero-title span::before, .hero-title span::after {
  content: '';
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.8));
}
.hero-title span::after {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.8));
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #A39C93;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ── Scroll Indicator ────────────────────────────────── */
.hero-scroll {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
  animation: fadeUp 1s 0.6s both;
}
@media (min-width: 992px) {
  .hero-scroll { align-items: flex-start; }
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.mouse {
  width: 20px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  position: relative;
}
.mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 10px); opacity: 0; }
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s 0.2s var(--ease) both;
  position: relative;
}
.burger-main-img {
  width: 100%;
  max-width: 700px;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.9));
  position: relative;
  z-index: 2;
  transform: scale(1.1);
}
.burger-main-img.full-photo {
  filter: none;
  transform: scale(1.1);
  object-fit: cover;
  max-height: 85vh;
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
  mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
  border-radius: 0;
  box-shadow: none;
}

/* ── Badge Rotativo SVG ────────────────────────────────── */
.hero-badge {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 160px;
  height: 160px;
  z-index: 5;
  animation: slowSpin 20s linear infinite;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}
@keyframes slowSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.badge-text-svg {
  width: 100%;
  height: 100%;
  animation: rotateBadge 15s linear infinite;
}
.badge-text-svg text {
  font-family: var(--font-display);
  font-size: 11px;
  fill: #5a5040;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.6;
}
@keyframes rotateBadge {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Partículas de Fogo ────────────────────────────────── */
.fire-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(212,82,10,0.8) 0%, rgba(212,82,10,0) 70%);
  border-radius: 50%;
  opacity: 0;
  animation: riseAndFade 4s infinite ease-in;
}
.p1 { width: 10px; height: 10px; left: 20%; bottom: 10%; animation-delay: 0s; animation-duration: 5s; }
.p2 { width: 15px; height: 15px; left: 50%; bottom: 5%; animation-delay: 1.2s; animation-duration: 6s; }
.p3 { width: 8px; height: 8px; left: 80%; bottom: 15%; animation-delay: 0.5s; animation-duration: 4.5s; }
.p4 { width: 12px; height: 12px; left: 35%; bottom: -5%; animation-delay: 2.1s; animation-duration: 5.5s; }
.p5 { width: 9px; height: 9px; left: 65%; bottom: 20%; animation-delay: 1.8s; animation-duration: 4s; }
.p6 { width: 14px; height: 14px; left: 90%; bottom: 0%; animation-delay: 3s; animation-duration: 6.5s; }

@keyframes riseAndFade {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.8; }
  100% { transform: translateY(-200px) scale(0.5); opacity: 0; }
}

/* ── Features Grid ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 576px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}
.features-container {
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(13,13,13,0.9);
  padding: 40px;
  margin: -60px auto 120px; /* increased bottom margin for cascade space */
  max-width: 1400px;
  position: relative;
  z-index: 10;
  width: 95%;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-text h4 {
  font-family: var(--font-display);
  color: #c9b99a;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  font-weight: 600;
}
.feature-text p {
  color: #5a5040;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── Agenda da Semana ────────────────────────────────────── */
.schedule-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  transition: border-color var(--dur), transform var(--dur);
}
.schedule-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.schedule-card.today {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
}
.schedule-day {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 6px;
}
.schedule-time {
  font-size: 0.8rem;
  color: var(--gold);
}
.schedule-card.today .schedule-day { color: var(--gold); }

/* ── Destaques ───────────────────────────────────────────── */
.featured-section { padding: 64px 0; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand-logo {
  width: 80px;
  margin-bottom: 12px;
}
.footer-brand-tagline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--dur); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; gap: 24px; }
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Social Proof Marquee ────────────────────────────────── */
.social-proof-strip {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  white-space: nowrap;
}
.social-proof-content {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  align-items: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.social-proof-content span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-proof-content span i {
  color: var(--gold);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── WhatsApp Floating Button ────────────────────────────── */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #FFF;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/* ── Skeleton Loader ─────────────────────────────────────── */
.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px; /* Approximate height of real card */
  display: flex;
  flex-direction: column;
}
.skeleton-img {
  height: 200px;
  background: linear-gradient(90deg, var(--bg-elevated) 0%, rgba(255,255,255,0.05) 50%, var(--bg-elevated) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}
.skeleton-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-title {
  height: 24px;
  width: 70%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bg-elevated) 0%, rgba(255,255,255,0.05) 50%, var(--bg-elevated) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}
.skeleton-desc {
  height: 16px;
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bg-elevated) 0%, rgba(255,255,255,0.02) 50%, var(--bg-elevated) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}
.skeleton-desc.short {
  width: 80%;
}
.skeleton-price {
  margin-top: auto;
  height: 20px;
  width: 40%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bg-elevated) 0%, rgba(255,255,255,0.05) 50%, var(--bg-elevated) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Scroll Reveal Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

