:root {
  --green: #3ddc5f;
  --green-dark: #1a7a32;
  --green-glow: rgba(61,220,95,0.25);
  --black: #060d07;
  --dark: #0c150d;
  --card-bg: #111a12;
  --border: rgba(61,220,95,0.2);
  --text: #d4e8d5;
  --muted: #7a9c7d;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(61,220,95,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(61,220,95,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #060d07 0%, #0a1f0c 50%, #060d07 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,220,95,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,220,95,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hero-left { flex: 1; }

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,220,95,0.1);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeDown 0.6s ease forwards 0.1s;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.88;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.3s;
}

.hero-title .accent { color: var(--green); }

.hero-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--green);
  letter-spacing: 4px;
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.45s;
}

.hero-desc {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.6s;
}

.hero-desc strong { color: var(--green); font-weight: 700; }

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.75s;
}

.hero-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.5s;
}

.hero-badge-wrap {
  position: relative;
}

.hero-badge-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(61,220,95,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.hero-logo {
  width: 240px;
  height: 240px;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(0 0 40px rgba(61,220,95,0.5));
  animation: floatLogo 4s ease-in-out infinite;
}

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

.hero-slogan {
  background: rgba(61,220,95,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--green);
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--green);
  color: #030804;
}

.btn-primary:hover {
  background: #5aee7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
}

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

.btn-outline:hover {
  border-color: var(--green);
  background: rgba(61,220,95,0.08);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 60px;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(61,220,95,0.1);
}

.price-card.featured {
  border-color: var(--green);
  background: linear-gradient(135deg, #0f2212, #1a3520);
}

.price-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: 18px;
  right: -32px;
  background: var(--green);
  color: #030804;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 48px;
  transform: rotate(45deg);
}

.price-icon { font-size: 36px; margin-bottom: 16px; }

.price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.price-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 4px;
}

.price-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--green);
  margin: 20px 0 8px;
}

.price-value sup { font-size: 28px; }
.price-value span { font-size: 32px; }

.price-desc { color: var(--muted); font-size: 14px; line-height: 1.5; }

.price-cta {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
}

.price-events {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 12px;
}

.price-row:last-child { border-bottom: none; padding-bottom: 0; }

.price-row-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.price-row-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--green);
  letter-spacing: 1px;
}

.price-note { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── FOOD ── */
.food {
  padding: 100px 60px;
  background: linear-gradient(180deg, #060d07, #091209);
  position: relative;
}

.food::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.food-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.food-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.food-card-title .icon { font-size: 40px; }

.food-card-title h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: white;
}

.food-card-title p { font-size: 13px; color: var(--muted); margin-top: 2px; }

.espetinho-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.espetinho-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(61,220,95,0.05);
  border: 1px solid rgba(61,220,95,0.1);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, border-color 0.2s;
}

.espetinho-item:hover {
  background: rgba(61,220,95,0.1);
  border-color: rgba(61,220,95,0.3);
}

.espetinho-item::before {
  content: '✔';
  color: var(--green);
  font-size: 14px;
}

/* ── CERVEJA ── */
.beer-promo {
  background: linear-gradient(135deg, #0c1e0e, #162b18);
  border: 1px solid var(--green);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.beer-promo-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 2px;
  line-height: 1.1;
  color: white;
}

.beer-promo-title span { color: var(--green); }

.beer-deal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Garrafas SVG */
.beer-bottles {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.beer-bottles svg {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.2s;
}

.beer-bottles svg:hover { transform: translateY(-6px) scale(1.05); }

.beer-tag {
  background: rgba(61,220,95,0.15);
  border: 1px solid var(--green);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  flex-shrink: 0;
}

.beer-tag-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
  line-height: 1.2;
}

.beer-tag-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--green);
  line-height: 1;
}

.beer-tag-sub { font-size: 12px; color: var(--muted); letter-spacing: 1px; }

/* ── BIRTHDAY ── */
.birthday { padding: 100px 60px; }

.birthday-box {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  transition: box-shadow 0.3s;
}

.birthday-box:hover {
  box-shadow: 0 20px 60px rgba(61,220,95,0.08);
}

.birthday-icon { font-size: 80px; flex-shrink: 0; }

.birthday-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.birthday-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ── FEATURES ── */
.features {
  padding: 80px 60px;
  background: linear-gradient(180deg, #060d07, #030804);
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.feature-chip:hover {
  border-color: var(--green);
  background: rgba(61,220,95,0.05);
}

.feature-chip .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

/* ── CTA ── */
.cta {
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(61,220,95,0.08), transparent);
}

.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }

.cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 20px;
}

.cta h2 span { color: var(--green); }

.cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
}

.footer-brand span { color: var(--green); }

footer p { color: var(--muted); font-size: 14px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.1); opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero            { padding: 60px 28px; }
  .hero-content    { flex-direction: column-reverse; text-align: center; }
  .hero-desc       { max-width: 100%; }
  .hero-buttons    { justify-content: center; }
  .hero-logo-placeholder { width: 160px; height: 160px; }

  .pricing, .food, .birthday, .features, .cta { padding: 70px 28px; }

  .food-grid { grid-template-columns: 1fr; }

  .birthday-box { flex-direction: column; text-align: center; padding: 40px 28px; }
  .birthday-icon { font-size: 56px; }

  footer { padding: 30px 28px; flex-direction: column; text-align: center; }
}
