:root {
  --bg-dark: #7c1200;
  --bg-deep: #4e0600;
  --yellow: #ffd233;
  --orange: #ff8c00;
  --orange-strong: #ff5a00;
  --red: #df2100;
  --cream: #fff4d7;
  --text-dark: #4a1700;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(77, 11, 0, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(255, 214, 63, 0.55), transparent 24%),
    linear-gradient(180deg, #fff8e7 0%, #fff0cf 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(124, 18, 0, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 210, 51, 0.22);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.28));
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  color: #fff3c2;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 210, 51, 0.34) 0, transparent 22%),
    radial-gradient(circle at 85% 25%, rgba(255, 140, 0, 0.34) 0, transparent 25%),
    linear-gradient(135deg, #ffcf2f 0%, #ff9d00 45%, #ff5a00 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 62px 0 82px;
}

.hero-copy h1,
.section h2,
.card h3,
.info-box h3,
.mascot-card h3 {
  font-family: 'Baloo 2', cursive;
}

.badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(88, 18, 0, 0.1);
}

.hero-copy h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.95;
  color: var(--white);
  text-shadow: 0 6px 0 rgba(149, 28, 0, 0.28);
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 680px;
  color: #fff7ea;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

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

.btn-whats {
  background: linear-gradient(135deg, #12cf54 0%, #0ba645 100%);
  color: var(--white);
}

.btn-ifood {
  background: linear-gradient(135deg, #ffffff 0%, #ffeebe 100%);
  color: var(--red);
}

.btn.full { width: 100%; }

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #fff7de;
  font-weight: 800;
}

.hero-points li::before {
  content: '★';
  margin-right: 10px;
  color: #fff0a6;
}

.hero-art {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(73, 10, 0, 0.34));
  animation: floatMain 5s ease-in-out infinite;
}

.mascot,
.sprinkle {
  position: absolute;
  z-index: 1;
  width: var(--w, 96px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 248, 225, 0.86);
  box-shadow: 0 18px 36px rgba(73, 10, 0, 0.18);
  padding: 8px;
  animation: bob 4.2s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transform: rotate(var(--r, 0deg));
}

.mascot img,
.sprinkle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mascot-1 { top: 8%; left: 1%; animation-delay: 0s; }
.mascot-2 { top: 6%; right: 7%; width: 132px; animation-delay: .6s; }
.mascot-3 { top: 40%; left: -2%; width: 128px; animation-delay: .3s; }
.mascot-4 { top: 26%; right: -1%; width: 118px; animation-delay: 1.1s; }
.mascot-5 { bottom: 7%; left: 8%; width: 124px; animation-delay: .9s; }
.mascot-6 { bottom: 16%; right: 1%; width: 114px; animation-delay: 1.4s; }
.mascot-7 { bottom: -2%; left: 40%; width: 128px; animation-delay: .2s; }

.hero-decor,
.section-decor,
.footer-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sprinkle {
  top: var(--top, auto);
  right: var(--right, auto);
  bottom: var(--bottom, auto);
  left: var(--left, auto);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
}

.glow-1 {
  width: 260px;
  height: 260px;
  background: #fff8bd;
  top: 80px;
  left: -40px;
}

.glow-2 {
  width: 320px;
  height: 320px;
  background: #ff7a00;
  right: -60px;
  bottom: 80px;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}

.section > .container,
.hero > .container,
.footer > .container {
  position: relative;
  z-index: 2;
}

.section-light {
  background: linear-gradient(180deg, #fff8e8 0%, #fff0cf 100%);
}

.section-fun {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 210, 51, 0.35), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(255, 140, 0, 0.28), transparent 16%),
    linear-gradient(180deg, #fff4c9 0%, #ffe08e 100%);
}

.section-warm {
  background: linear-gradient(180deg, #fff0bf 0%, #ffd56b 100%);
}

.two-col,
.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.section h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.section p {
  font-size: 1.04rem;
  line-height: 1.75;
}

.info-boxes {
  display: grid;
  gap: 16px;
}

.info-box,
.card,
.mascot-card,
.contact-cta {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.info-box {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,245,222,0.98));
}

.info-box h3,
.card h3,
.mascot-card h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.info-box p,
.card p,
.mascot-card p {
  margin: 0;
}

.info-box a,
.text-link,
.contact-panel a {
  color: var(--red);
  font-weight: 800;
}

.section-intro {
  max-width: 760px;
  margin-top: 8px;
  margin-bottom: 28px;
}

.mascot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.mascot-card {
  position: relative;
  padding: 22px 20px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,246,223,0.98));
  text-align: center;
}

.mascot-card img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255, 229, 142, 0.55);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,0.48);
}

.mascot-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  text-align: left;
}

.mascot-card-wide img { margin: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.card {
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,244,216,0.98));
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
}

.contact-panel {
  padding: 30px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,244,214,0.98));
  box-shadow: var(--shadow);
}

.contact-cta {
  padding: 22px;
  background: linear-gradient(135deg, #fff7e1, #ffe5a4);
  display: grid;
  gap: 14px;
}

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #7a1502 0%, #531005 100%);
  color: #fff1c7;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 18px 0;
}

@keyframes bob {
  0%, 100% { transform: translateY(0px) rotate(var(--r, -3deg)); }
  50% { transform: translateY(-10px) rotate(calc(var(--r, 0deg) + 5deg)); }
}

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

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .contact-panel,
  .cards,
  .mascot-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 500px;
  }

  .mascot-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mascot-card-wide img {
    margin: 0 auto 12px;
  }

  .section-decor .sprinkle,
  .footer-decor .sprinkle {
    width: calc(var(--w, 96px) * 0.82);
    opacity: 0.9;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 40px 0 56px;
  }

  .hero-art {
    min-height: 440px;
  }

  .hero-logo {
    width: min(100%, 320px);
  }

  .mascot,
  .sprinkle {
    width: 82px !important;
    padding: 6px;
  }

  .mascot-1 { top: 4%; left: 0; }
  .mascot-2 { top: 0; right: 2%; }
  .mascot-3 { top: 38%; left: 0; }
  .mascot-4 { top: 26%; right: 0; }
  .mascot-5 { bottom: 10%; left: 4%; }
  .mascot-6 { bottom: 16%; right: 2%; }
  .mascot-7 { bottom: 2%; left: 38%; }

  .section-decor .sprinkle:nth-child(n+3),
  .hero-decor .sprinkle:nth-child(n+4),
  .footer-decor .sprinkle:nth-child(n+2) {
    display: none;
  }

  .contact-panel {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
