:root {
  --gradient: linear-gradient(135deg, #0a192f, #0f2a47, #0b1c2d);
  --glass: rgba(255, 255, 255, 0.06);
  --accent: #d4af37;
  --text-light: #f8fafc;
  --text-muted: #cbd5e1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--gradient);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Glow sofisticado */
body::before {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
  top: -200px;
  right: -200px;
  z-index: -1;
}

/* HEADER FIXO */

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 0;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(10, 25, 47, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.topbar h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--accent);
}

main {
  padding-top: 80px;
}

/* HERO */

/* Hero refinada */
.hero {
  padding: 120px 20px 80px;
  text-align: center;
}

/* HERO BOTÕES */

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 10px 22px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: var(--accent);
  color: #0a192f;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

/* Botão secundário */

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

.hero-btn.outline:hover {
  background: var(--accent);
  color: #0a192f;
}

.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.wedding-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
}

.wedding-date span {
  opacity: 0.6;
  margin: 0 4px;
}

/* SEÇÕES */

.section {
  padding: 50px 20px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 30px;
  color: var(--accent);
}

.alt {
  background: rgba(255,255,255,0.03);
}

/* CARDS */

.card {
  background: var(--glass);
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* TIMELINE */

.timeline-item {
  background: var(--glass);
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
}

.timeline-item span {
  color: var(--accent);
  font-weight: 600;
  min-width: 55px;
}

/* ANIMAÇÃO REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* GRUPOS DO CARDÁPIO */

.menu-group {
  margin-bottom: 35px;
  padding: 22px;
  background: var(--glass);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

/* TÍTULO DO GRUPO */

.menu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
}

/* Linha dourada elegante */

.menu-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-top: 6px;
  opacity: 0.6;
}

/* LISTA */

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.menu-list li {
  padding-left: 10px;
  position: relative;
}

.menu-list li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* DUAS COLUNAS PARA ACOMPANHAMENTOS */

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

/* Subgrupos dentro de Bebidas */

.menu-subgroup {
  margin-bottom: 18px;
}

.menu-subgroup h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* AQUI É SOBRE O ROTEIRO */

/* CONTAINER TIMELINE */

.timeline {
  position: relative;
  margin-top: 30px;
  padding-left: 30px;
}

/* Linha vertical elegante */

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(212, 175, 55, 0.4);
}

/* ITEM */

.timeline-item {
  position: relative;
  margin-bottom: 35px;
  padding-left: 25px;
}

/* Marcador dourado */

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Horário */

.timeline-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

/* Conteúdo */

.timeline-content h4 {
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-light);
}