:root {
  --bg: #FDF9F3;
  --bg-2: #F6EAD9;
  --text: #2B1F17;
  --text-dim: rgba(43, 31, 23, 0.64);
  --shadow-soft: rgba(120, 84, 56, 0.18);

  /* ABC do Brigadeiro */
  --abc-rosa: #F28CB1;
  --abc-rosa-deep: #D9678F;
  --abc-teal: #38BBAF;

  /* Escola dos Bolos que Vendem */
  --escola-roxo: #BC73BF;
  --escola-ciano: #04C4D9;
  --escola-dourado: #FFCD05;
  --escola-carvao: #2C2E31;

  /* Bem Confeitado */
  --bem-roxo: #8F4AB0;
  --bem-roxo-deep: #6C3688;
  --bem-amarelo: #FDEC83;
  --bem-dourado: #DFD25D;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: radial-gradient(ellipse 120% 60% at 50% -10%, var(--bg-2), var(--bg) 60%);
}

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

/* ---------- background blobs ---------- */

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.38;
  animation: float 22s ease-in-out infinite;
}
.blob-1 {
  width: 320px; height: 320px;
  background: var(--abc-rosa-deep);
  top: -80px; left: -80px;
  animation-delay: 0s;
}
.blob-2 {
  width: 360px; height: 360px;
  background: var(--escola-roxo);
  top: 40%; right: -140px;
  animation-delay: -7s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--escola-dourado);
  bottom: -100px; left: 10%;
  animation-delay: -14s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
}

/* ---------- layout ---------- */

.page {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  padding: 56px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- hero ---------- */

.hero {
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
}

.avatar-ring {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 4px;
  isolation: isolate;
}
.avatar-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  background: conic-gradient(
    var(--abc-rosa),
    var(--bem-dourado),
    var(--escola-roxo),
    var(--escola-ciano),
    var(--abc-rosa)
  );
  animation: spin 4s linear infinite;
}
.avatar-ring::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  z-index: -1;
  background: var(--bg);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.tagline {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0;
  max-width: 320px;
  margin-inline: auto;
}

/* ---------- stats ---------- */

.stats {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 14px;
  margin-bottom: 32px;
}
.stat {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(43, 31, 23, 0.08);
  box-shadow: 0 6px 16px var(--shadow-soft);
  border-radius: 16px;
  padding: 14px 22px;
  text-align: center;
  min-width: 130px;
}
.stat-number {
  display: block;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--abc-rosa-deep), var(--bem-roxo-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ---------- product cards ---------- */

.products {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 30px;
}

.card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  padding: 26px 22px 22px;
  box-shadow: 0 14px 30px var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover,
.card:focus-visible {
  transform: translateY(-4px) scale(1.015);
}

.card-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: repeat;
  opacity: 0.16;
}

.card-media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.card-media img {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.card-body {
  position: relative;
  z-index: 1;
  text-align: center;
}
.card-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  opacity: 0.9;
}
.card-title {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}
.card-desc {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,0.88);
}

.card-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.card-cta .arrow {
  transition: transform 0.2s ease;
}
.card:hover .card-cta .arrow {
  transform: translateX(4px);
}

/* ABC do Brigadeiro */
.card-abc {
  background: linear-gradient(145deg, var(--abc-rosa) 0%, var(--abc-rosa-deep) 100%);
  border: 1px solid rgba(255,255,255,0.15);
}
.card-abc .card-pattern {
  background-image: url("assets/icone-forminha-oficial.png");
  background-size: 46px auto;
  mix-blend-mode: overlay;
}
.card-abc .card-eyebrow { color: var(--abc-teal); }
.card-abc .card-cta { color: var(--abc-teal); }

/* Escola dos Bolos que Vendem */
.card-escola {
  background: linear-gradient(135deg, var(--escola-ciano) 0%, var(--escola-roxo) 100%);
  border: 1px solid rgba(255,255,255,0.15);
}
.card-escola .card-eyebrow { color: var(--escola-dourado); }
.card-escola .card-cta { color: var(--escola-dourado); }

/* Bem Confeitado */
.card-bem {
  background: linear-gradient(150deg, var(--bem-roxo) 0%, var(--bem-roxo-deep) 100%);
  border: 1px solid rgba(255,255,255,0.15);
}
.card-bem::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 10px;
  background: var(--bem-amarelo);
  clip-path: polygon(
    0% 100%, 0% 40%, 4% 90%, 8% 30%, 12% 90%, 16% 30%, 20% 90%,
    24% 30%, 28% 90%, 32% 30%, 36% 90%, 40% 30%, 44% 90%, 48% 30%,
    52% 90%, 56% 30%, 60% 90%, 64% 30%, 68% 90%, 72% 30%, 76% 90%,
    80% 30%, 84% 90%, 88% 30%, 92% 90%, 96% 30%, 100% 90%, 100% 100%
  );
}
.card-bem .card-eyebrow { color: var(--bem-amarelo); }
.card-bem .card-cta { color: var(--bem-amarelo); }

/* ---------- youtube cta ---------- */

.youtube-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: #FF0000;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 14px;
}
.youtube-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 0, 0, 0.38);
}
.yt-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 34px;
}
.whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
}
.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---------- footer ---------- */

.footer {
  width: 100%;
  text-align: center;
}
.social-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(43, 31, 23, 0.3);
  padding-bottom: 2px;
  margin-bottom: 14px;
}
.copyright {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 380px) {
  .stats { gap: 10px; }
  .stat { min-width: 0; flex: 1; padding: 12px 10px; }
}
