/* ============================================================
   Grupo Pé de Lata — estilos
   Paleta: creme (papel), azul céu, amarelo sol, verde, vermelho
   ============================================================ */

:root {
  --cream:    #FAF4E6;
  --cream-2:  #F4ECD7;
  --ink:      #2C2723;
  --ink-soft: #5b534b;

  --blue:     #5BAEE6;
  --blue-d:   #3D90D1;
  --yellow:   #F8A81B;
  --yellow-l: #FBC54B;
  --green:    #8FC06A;
  --green-d:  #6BA844;
  --red:      #E63B2E;
  --pink:     #F072AC;
  --purple:   #8B6FD4;

  --shadow:   0 14px 34px rgba(44,39,35,.12);
  --shadow-s: 0 6px 18px rgba(44,39,35,.10);
  --radius:   26px;
  --radius-s: 16px;

  --maxw: 1140px;
  --ff-display: "Fredoka", system-ui, sans-serif;
  --ff-body: "Nunito", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }

h1, h2, h3, .btn, .nav__menu a, .section__tag {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: .2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-size: 1.02rem;
  text-decoration: none;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow-s);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .6rem 1.2rem; font-size: .95rem; }

.btn--primary { background: var(--yellow); color: var(--ink); }
.btn--primary:hover { background: var(--yellow-l); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--blue); }
.btn--ghost:hover { background: var(--blue); color: #fff; }
.btn--red { background: var(--red); color: #fff; }
.btn--green { background: var(--green-d); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; }

.btn.is-disabled { opacity: .5; pointer-events: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,244,230,.82);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(44,39,35,.06);
  transition: box-shadow .25s ease;
}
.nav.is-scrolled { box-shadow: 0 8px 22px rgba(44,39,35,.10); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 0; }
.nav__brand img { height: 54px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: .35rem; }
.nav__menu a {
  text-decoration: none; color: var(--ink);
  padding: .5rem .8rem; border-radius: 999px; font-size: 1rem;
  transition: background .15s ease, color .15s ease;
}
.nav__menu a:hover { background: var(--cream-2); }
.nav__menu a.is-active { color: var(--blue-d); }
.nav__cta { background: var(--yellow); }
.nav__cta:hover { background: var(--yellow-l) !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Decorations ---------- */
.decor { position: absolute; pointer-events: none; z-index: 2; }
.decor--notes1 { width: 90px; top: 16%; left: 6%; }
.decor--notes2 { width: 70px; top: 30%; right: 9%; }
.decor--star   { width: 64px; top: 12%; right: 22%; }
.decor--mic    { width: 70px; bottom: 30%; left: 11%; }
.decor--mini   { width: 64px; bottom: -18px; left: -18px; }
.decor--star2  { width: 80px; top: 8%; right: 6%; }

@keyframes float { 0%,100% { transform: translateY(0) rotate(-3deg);} 50% { transform: translateY(-16px) rotate(3deg);} }
@keyframes floatSlow { 0%,100% { transform: translateY(0) rotate(4deg);} 50% { transform: translateY(-22px) rotate(-4deg);} }
@keyframes spinSlow { from { transform: rotate(0);} to { transform: rotate(360deg);} }
.float { animation: float 5s ease-in-out infinite; }
.float-slow { animation: floatSlow 7s ease-in-out infinite; }
.spin-slow { animation: spinSlow 26s linear infinite; }

/* ---------- Hero ---------- */
.hero { position: relative; text-align: center; padding-top: 2.2rem; overflow: hidden; }
.hero__blob { position: absolute; top: -120px; right: -120px; width: 620px; max-width: 70%; opacity: .9; z-index: 0; }
.hero__inner { position: relative; z-index: 3; max-width: 760px; }
.hero__kicker {
  display: inline-block; margin: 0 0 .4rem;
  font-family: var(--ff-display); font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  font-size: .82rem; color: var(--blue-d);
  background: #fff; padding: .35rem 1rem; border-radius: 999px; box-shadow: var(--shadow-s);
}
.hero__logo { width: 280px; max-width: 70%; margin: .4rem auto .2rem; }
.hero__h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin: .2rem 0 .4rem;
  line-height: 1.1;
}
.hero__tagline { font-family: var(--ff-display); font-size: clamp(1.6rem, 4.5vw, 2.6rem); margin: .2rem 0 .4rem; font-weight: 500; }
.hero__tagline strong { color: var(--red); }
.hero__sub { font-size: clamp(1.02rem, 2.3vw, 1.2rem); color: var(--ink-soft); max-width: 560px; margin: 0 auto 1.4rem; }
.hero__cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.hero__band { position: relative; z-index: 3; display: flex; justify-content: center; align-items: flex-end; gap: 0; margin-top: 1.5rem; min-height: 320px; }
.hero__artist { width: clamp(170px, 26vw, 300px); height: auto; filter: drop-shadow(0 16px 18px rgba(0,0,0,.18)); }
.hero__artist--l { transform: translateX(28%) rotate(-4deg); z-index: 1; }
.hero__artist--c { z-index: 3; }
.hero__artist--r { transform: translateX(-28%) rotate(4deg); z-index: 1; }
.hero__wave { position: absolute; left: 0; right: 0; bottom: 0; height: 150px; background: var(--yellow); border-radius: 50% 50% 0 0 / 100% 100% 0 0; transform: scaleX(1.3); z-index: 2; }

/* ---------- Section base ---------- */
.section { position: relative; padding: 4.5rem 0; }
section[id], .kit { scroll-margin-top: 86px; }
.streaming__empty { color: var(--ink-soft); font-weight: 700; margin: 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.6rem; }
.section__tag {
  display: inline-block; font-size: .82rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-d); background: #fff; padding: .3rem 1rem; border-radius: 999px; box-shadow: var(--shadow-s);
}
.section__tag--red { color: var(--red); }
.section__tag--green { color: var(--green-d); }
.section__title { font-size: clamp(1.7rem, 4.4vw, 2.6rem); margin: .7rem 0 .3rem; font-weight: 700; line-height: 1.1; }
.section__lead { color: var(--ink-soft); font-size: 1.1rem; margin: .4rem 0 0; }

/* ---------- Quem Somos ---------- */
.quem { background: var(--cream); }
.quem__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.6rem; align-items: center; }
.quem__text p { font-size: 1.08rem; margin: 0 0 1rem; }
.badges { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.2rem 0 0; }
.badges li { background: #fff; border: 2px solid var(--cream-2); padding: .35rem .9rem; border-radius: 999px; font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-s); }
.badges li:nth-child(3n) { border-color: var(--yellow-l); }
.badges li:nth-child(3n+1) { border-color: var(--blue); }
.badges li:nth-child(3n+2) { border-color: var(--green); }

.quem__media { position: relative; min-height: 360px; }
.polaroid { background: #fff; padding: 12px 12px 18px; border-radius: 8px; box-shadow: var(--shadow); margin: 0; }
.polaroid img { border-radius: 4px; width: 100%; height: 100%; object-fit: cover; }
.polaroid--1 { position: absolute; width: 62%; top: 0; left: 4%; transform: rotate(-5deg); aspect-ratio: 4/3; }
.polaroid--2 { position: absolute; width: 52%; bottom: 0; right: 2%; transform: rotate(5deg); aspect-ratio: 3/4; z-index: 2; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.stat { background: #fff; border-radius: var(--radius-s); padding: 1.4rem 1rem; text-align: center; box-shadow: var(--shadow-s); border-bottom: 5px solid var(--yellow); }
.stat:nth-child(2) { border-color: var(--blue); }
.stat:nth-child(3) { border-color: var(--red); }
.stat:nth-child(4) { border-color: var(--green); }
.stat__num { display: block; font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--ink); line-height: 1; }
.stat__label { display: block; margin-top: .35rem; color: var(--ink-soft); font-weight: 700; font-size: .9rem; }

/* ---------- Shows ---------- */
.shows { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.shows__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.show {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.show:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(44,39,35,.16); }
.show__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.show__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.show:hover .show__media img { transform: scale(1.06); }
.show__ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--ff-display); font-weight: 600; color: #fff;
  padding: .35rem 1rem; border-radius: 999px; font-size: .95rem;
  box-shadow: var(--shadow-s); background: var(--blue);
}
.show--carnaval .show__ribbon { background: var(--purple); }
.show--pascoa   .show__ribbon { background: var(--pink); }
.show--junino   .show__ribbon { background: var(--red); }
.show--criancas .show__ribbon { background: var(--blue); }
.show--natal    .show__ribbon { background: var(--green-d); }
.show__body { padding: 1.3rem 1.4rem 1.6rem; }
.show__body h3 { margin: 0 0 .5rem; font-size: 1.3rem; }
.show__body p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.show--carnaval { border-top: 6px solid var(--purple); }
.show--pascoa   { border-top: 6px solid var(--pink); }
.show--junino   { border-top: 6px solid var(--red); }
.show--criancas { border-top: 6px solid var(--blue); }
.show--natal    { border-top: 6px solid var(--green-d); }

.show--cta { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%); color: #fff; }
.show__ctabox { padding: 2rem 1.6rem; text-align: center; margin: auto; }
.show__ctabox h3 { color: #fff; font-size: 1.4rem; margin: 0 0 .6rem; }
.show__ctabox p { color: rgba(255,255,255,.92); margin: 0 0 1.3rem; }

/* ---------- Clipes ---------- */
.clipes { background: var(--cream); }
.clipes__intro { display: flex; align-items: center; gap: 1.6rem; max-width: 880px; margin: 0 auto 2.6rem; background: #fff; padding: 1.6rem 1.8rem; border-radius: var(--radius); box-shadow: var(--shadow-s); border-left: 8px solid var(--red); }
.clipes__intro p { margin: 0 0 1rem; font-size: 1.05rem; }
.clipes__mascot { width: 130px; flex-shrink: 0; }

.videos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.video {
  position: relative; display: block; border-radius: var(--radius-s); overflow: hidden;
  aspect-ratio: 16/10; box-shadow: var(--shadow-s); text-decoration: none;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  transition: transform .2s ease, box-shadow .2s ease;
}
.video:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow); }
.video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video__play {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
}
.video__play svg { width: 56px; height: 56px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); transition: transform .2s ease; }
.video:hover .video__play svg { transform: scale(1.12); }
.video__title {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  background: linear-gradient(0deg, rgba(0,0,0,.78), transparent);
  color: #fff; padding: 1.6rem .9rem .7rem; font-weight: 700; font-size: .9rem;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Músicas ---------- */
.musicas { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }
.streaming { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: 2.6rem; }
.musicas__subtitle { text-align: center; font-size: 1.5rem; margin: 2.2rem 0 1.2rem; position: relative; }
.musicas__subtitle::after { content: ""; display: block; width: 64px; height: 4px; background: var(--yellow); border-radius: 4px; margin: .5rem auto 0; }

.albums { display: grid; grid-template-columns: repeat(2, minmax(0, 280px)); gap: 1.6rem; justify-content: center; }
.singles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.cover { margin: 0; background: #fff; border-radius: var(--radius-s); overflow: hidden; box-shadow: var(--shadow-s); transition: transform .2s ease, box-shadow .2s ease; }
.cover:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: var(--shadow); }
.cover img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cover figcaption { padding: .7rem .8rem .9rem; text-align: center; }
.cover figcaption span { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 1rem; line-height: 1.2; }
.cover figcaption small { color: var(--ink-soft); font-weight: 700; }
.cover--big figcaption span { font-size: 1.15rem; }

.musicas__partners { text-align: center; max-width: 720px; margin: 2.4rem auto 0; color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Para brincar ---------- */
.brincar { background: var(--cream); }
.brincar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; max-width: 900px; margin: 0 auto; }
.kit { background: #fff; border-radius: var(--radius); padding: 2.4rem 2rem; text-align: center; box-shadow: var(--shadow); scroll-margin-top: 90px; border-bottom: 7px solid var(--green); }
.kit--colorir { border-color: var(--blue); }
.kit__icon { width: 84px; height: 84px; margin: 0 auto 1.1rem; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--green-d); }
.kit--colorir .kit__icon { background: var(--blue); }
.kit__icon svg { width: 44px; height: 44px; }
.kit h3 { font-size: 1.6rem; margin: 0 0 .6rem; }
.kit p { color: var(--ink-soft); margin: 0 0 1.5rem; font-size: 1.05rem; }

/* ---------- Contato ---------- */
.contato { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); overflow: hidden; }
.contato__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 920px; margin: 0 auto; }
.contato__card { background: #fff; border-radius: var(--radius); padding: 1.8rem 1.4rem; text-align: center; box-shadow: var(--shadow-s); display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.contato__role { font-family: var(--ff-display); font-weight: 600; font-size: 1.2rem; }
.contato__phone { text-decoration: none; color: var(--ink-soft); font-weight: 700; font-size: 1.05rem; }
.contato__phone:hover { color: var(--blue-d); }

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--ink); color: #fff; }
.footer__strip { height: 10px; background: linear-gradient(90deg,
  var(--blue) 0 20%, var(--yellow) 20% 40%, var(--green) 40% 60%,
  var(--red) 60% 80%, var(--pink) 80% 100%); }
.footer__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start;
  gap: 2.5rem; padding-top: 3.2rem; padding-bottom: 2.4rem;
}
.footer__brand { max-width: 400px; }
.footer__logo { width: 132px; background: var(--cream); padding: 10px 14px; border-radius: 18px; display: block; }
.footer__slogan { font-family: var(--ff-display); font-size: 1.35rem; color: var(--yellow-l); margin: .9rem 0 .5rem; }
.footer__tagline { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.6; max-width: 34ch; margin: 0; }
.footer__h { font-family: var(--ff-display); font-size: 1.05rem; letter-spacing: .02em; margin: .2rem 0 1.1rem; position: relative; }
.footer__h::after { content: ""; display: block; width: 30px; height: 3px; border-radius: 3px; background: var(--blue); margin-top: .5rem; }
.footer__col { display: flex; flex-direction: column; }
.footer__social { display: flex; gap: .7rem; margin-bottom: 1.4rem; }
.footer__soc { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: #fff; transition: background .18s ease, transform .18s ease, color .18s ease; }
.footer__soc svg { width: 21px; height: 21px; }
.footer__soc:hover { transform: translateY(-4px); }
.footer__soc--ig:hover { background: var(--pink); }
.footer__soc--fb:hover { background: var(--blue); }
.footer__soc--yt:hover { background: var(--red); }
.footer__soc--mail:hover { background: var(--green); color: var(--ink); }
.footer__wpp { align-self: flex-start; display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green-d); color: #fff; font-weight: 800; text-decoration: none;
  padding: .7rem 1.2rem; border-radius: 999px; transition: transform .15s ease, filter .15s ease; }
.footer__wpp:hover { transform: translateY(-2px); filter: brightness(1.08); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .6rem;
  padding-top: 1.4rem; padding-bottom: 1.8rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer__copy { color: rgba(255,255,255,.55); font-size: .88rem; margin: 0; }
.footer__made { font-family: var(--ff-display); color: rgba(255,255,255,.6); font-size: .95rem; margin: 0; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.5);
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 32px; height: 32px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1300px) {
  .footer__bottom { padding-right: 5.5rem; } /* libera espaço pro botão flutuante do WhatsApp */
}

@media (max-width: 920px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--cream); padding: .8rem 1.2rem 1.2rem;
    border-bottom: 2px solid rgba(44,39,35,.08);
    box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav__menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__menu a { padding: .75rem .9rem; }
  .nav__cta { text-align: center; }

  .quem__grid { grid-template-columns: 1fr; }
  .quem__media {
    min-height: 0; margin: 1.4rem 0 0;
    display: flex; justify-content: center; align-items: center; gap: 1rem;
  }
  .quem__media .polaroid { position: static; width: 46%; max-width: 240px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .shows__grid { grid-template-columns: repeat(2, 1fr); }
  .videos { grid-template-columns: repeat(2, 1fr); }
  .singles { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 3.2rem 0; }
  .hero__band { min-height: 240px; margin-top: 1rem; }
  .hero__artist { width: 38vw; }
  .hero__artist--l { transform: translateX(22%) rotate(-4deg); }
  .hero__artist--r { transform: translateX(-22%) rotate(4deg); }
  .hero__wave { height: 90px; }
  .clipes__intro { flex-direction: column; text-align: center; }
  .shows__grid { grid-template-columns: 1fr; }
  .videos { grid-template-columns: 1fr; }
  .singles { grid-template-columns: repeat(2, 1fr); }
  .albums { grid-template-columns: 1fr; }
  .brincar__grid { grid-template-columns: 1fr; }
  .contato__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .decor--notes1, .decor--notes2, .decor--mic { display: none; }

  .footer__inner { flex-direction: column; align-items: center; text-align: center; gap: 1.8rem; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__col { align-items: center; }
  .footer__tagline { max-width: 40ch; }
  .footer__h::after { margin-left: auto; margin-right: auto; }
  .footer__bottom { flex-direction: column; text-align: center; padding-right: 0; padding-bottom: 5.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
