:root {
  --pink-50: #fff2f8;
  --pink-100: #ffe1ef;
  --pink-200: #ffc1dc;
  --pink-400: #fb77b1;
  --pink-500: #f5529c;
  --pink-700: #c81d6b;
  --rose: #d83a7c;
  --lilac: #b78cff;
  --cream: #fff8ec;
  --gold: #f5c86a;
  --red: #e81d35;
  --dark: #25111b;
  --ink: #3a1c2b;
  --muted: #7a6170;
  --white: #fff;
  --shadow: 0 22px 60px rgba(115, 22, 69, .17);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 193, 220, .55), transparent 34rem),
    radial-gradient(circle at 90% 15%, rgba(183, 140, 255, .26), transparent 28rem),
    linear-gradient(180deg, #fff8fb 0%, #fff 46%, #fff2f8 100%);
  overflow-x: hidden;
}

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

.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: 110px 0; }

.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .7;
  background-image:
    radial-gradient(circle, rgba(245, 82, 156, .18) 0 2px, transparent 2px),
    radial-gradient(circle, rgba(245, 200, 106, .18) 0 2px, transparent 2px);
  background-size: 90px 90px, 130px 130px;
  background-position: 8px 12px, 40px 60px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 999px;
  background: rgba(75, 20, 44, .55);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(45, 10, 31, .22);
  transition: .25s ease;
}
.site-header.scrolled { background: rgba(37, 17, 27, .78); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 132px; height: 46px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--white);
  font-size: .92rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .2s ease;
}
.main-nav a:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }
.nav-cta { background: linear-gradient(135deg, var(--pink-500), var(--red)); box-shadow: 0 10px 24px rgba(245, 82, 156, .34); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

.hero { min-height: 100vh; display: flex; align-items: center; padding: 150px 0 90px; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(37,17,27,.88), rgba(200,29,107,.70), rgba(255,248,236,.06)),
    url('../img/banner-joaninha.webp') center/cover no-repeat;
  clip-path: ellipse(118% 86% at 50% 0%);
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(255,255,255,.16), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 72%, rgba(255,248,251,.22) 88%, rgba(255,248,251,.50) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .85fr; gap: 58px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #fff;
  background: rgba(255,255,255,.16);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.pink { color: var(--pink-700); background: rgba(245, 82, 156, .1); }
.eyebrow.light { color: #fff; background: rgba(255,255,255,.16); }
.hero h1 {
  font-family: "Great Vibes", "Playfair Display", serif;
  color: #fff;
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: .88;
  margin: 0 0 58px;
  font-weight: 400;
  text-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.hero h2 {
  font-family: "Playfair Display", serif;
  color: #ffe2ed;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  margin: 0 0 28px;
}
.hero-lead {
  margin-top: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--pink-500), var(--red)); box-shadow: 0 18px 35px rgba(232, 29, 53, .28); }
.btn-soft { color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.32); }
.btn-white { color: var(--pink-700); background: #fff; box-shadow: 0 18px 35px rgba(0,0,0,.13); }
.btn-outline-white { color: #fff; border: 1px solid rgba(255,255,255,.54); background: transparent; }
.small-actions { margin-top: 28px; }
.small-actions .btn-soft { color: var(--pink-700); border-color: rgba(245, 82, 156, .24); background: rgba(245, 82, 156, .08); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
  margin-bottom: 28px;
  max-width: 680px;
  position: relative;
  z-index: 2;
}
.hero-stats div {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.45);
  background: linear-gradient(135deg, rgba(200, 29, 107, .96), rgba(84, 24, 50, .93));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(45, 10, 31, .34);
}
.hero-stats div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-stats strong {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.08rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.28);
}
.hero-stats span {
  position: relative;
  display: block;
  color: rgba(255,255,255,.96);
  font-size: .88rem;
  margin-top: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}
.hero-card { justify-self: end; width: min(460px, 100%); }
.hero-photo-wrap {
  position: relative;
  padding: 14px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.18));
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-photo-wrap::before,
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  filter: blur(2px);
}
.hero-photo-wrap::before { width: 150px; height: 150px; background: rgba(245, 200, 106, .48); left: -35px; bottom: 52px; }
.hero-photo-wrap::after { width: 110px; height: 110px; background: rgba(183, 140, 255, .45); right: -30px; top: 45px; }
.hero-photo { width: 100%; aspect-ratio: 4 / 5.2; object-fit: cover; border-radius: 34px; object-position: 50% 18%; }
.floating-badge {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 42px);
  padding: 12px 18px;
  color: var(--pink-700);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0,0,0,.13);
}

.marquee { overflow: hidden; padding: 18px 0; background: #fff; border-block: 1px solid rgba(245, 82, 156, .13); }
.marquee-track { display: flex; gap: 22px; width: max-content; animation: marquee 26s linear infinite; }
.marquee span { color: var(--pink-700); font-weight: 800; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-title { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-title h2, .section-copy h2, .booking-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.04;
  margin: 0 0 18px;
  color: var(--dark);
}
.section-title p, .section-copy p, .booking-copy p { color: var(--muted); line-height: 1.85; font-size: 1.02rem; }

.two-col { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center;
}
.quote-card {
  position: absolute;
  right: -30px;
  bottom: 28px;
  width: min(360px, calc(100% - 24px));
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(73, 20, 46, .18);
}
.quote-card p { margin: 0; font-family: "Playfair Display", serif; color: var(--dark); font-size: 1.15rem; line-height: 1.45; }
.quote-card span { display: block; margin-top: 10px; color: var(--pink-700); font-weight: 800; }
.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-areas:
    "num title"
    "num text";
  align-items: start;
  column-gap: 15px;
  row-gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(245, 82, 156, .12);
  box-shadow: 0 10px 30px rgba(115, 22, 69, .08);
}
.feature-list span {
  grid-area: num;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--lilac));
  border-radius: 16px;
  font-weight: 900;
}
.feature-list h3 { grid-area: title; margin: 0; color: var(--dark); line-height: 1.2; }
.feature-list p { grid-area: text; margin: 0; font-size: .95rem; line-height: 1.75; }

.music { background: linear-gradient(135deg, #fff 0%, var(--pink-50) 100%); }
.music-grid { display: grid; grid-template-columns: 1.05fr .85fr; gap: 62px; align-items: center; }
.track-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.track-cloud span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--pink-700);
  background: #fff;
  border: 1px solid rgba(245, 82, 156, .15);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(245, 82, 156, .08);
}
.album-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.album-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.album-info { padding: 28px; }
.album-info span { color: var(--pink-700); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.album-info h3 { font-family: "Playfair Display", serif; font-size: 2.3rem; margin: 6px 0 8px; }
.album-info p { margin: 0; color: var(--muted); line-height: 1.7; }

.highlight-video { background: #fff; }
.video-feature {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: stretch;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--dark), #541832);
  box-shadow: var(--shadow);
}
.video-frame { position: relative; border-radius: 26px; overflow: hidden; background: #12050c; min-height: 420px; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-copy { padding: 34px 24px; align-self: center; color: #fff; }
.video-copy h3 { font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; margin: 0 0 18px; }
.video-copy p { color: rgba(255,255,255,.76); line-height: 1.85; }
.text-link { display: inline-flex; margin-top: 16px; color: #fff; font-weight: 900; border-bottom: 2px solid rgba(255,255,255,.55); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.video-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(245, 82, 156, .12);
  box-shadow: 0 14px 35px rgba(115, 22, 69, .09);
}
.video-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.video-card h3 { margin: 16px 18px 8px; font-size: 1rem; color: var(--dark); }
.video-card a { display: inline-flex; margin: 0 18px 18px; color: var(--pink-700); font-weight: 900; }

.appearances { background: linear-gradient(180deg, var(--pink-50), #fff); }
.appearance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.appearance-grid article {
  padding: 12px 12px 22px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 82, 156, .1);
}
.appearance-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 26px; object-position: top; }
.appearance-grid h3 { margin: 18px 12px 6px; font-family: "Playfair Display", serif; font-size: 1.8rem; }
.appearance-grid p { margin: 0 12px; color: var(--muted); line-height: 1.7; }

.gallery { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px; }
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: 24px;
  background: #f6d7e6;
  box-shadow: 0 10px 28px rgba(115, 22, 69, .08);
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gallery-item::after {
  content: "Ver foto";
  position: absolute;
  inset: auto 14px 14px;
  padding: 10px 12px;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(37,17,27,.58);
  backdrop-filter: blur(10px);
  transform: translateY(18px);
  opacity: 0;
  transition: .25s ease;
}
.gallery-item:hover::after { transform: translateY(0); opacity: 1; }

.social { background: linear-gradient(135deg, var(--pink-50), var(--cream)); }
.social-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 42px; align-items: center; }
.social-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.social-card {
  min-height: 168px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 12px 35px rgba(115, 22, 69, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .2s ease;
}
.social-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.social-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-500), var(--red));
  font-size: 1.35rem;
  font-weight: 900;
}
.social-card strong { color: var(--dark); font-size: 1.05rem; }
.social-card small { color: var(--muted); overflow-wrap: anywhere; }
.social-card.youtube span { background: linear-gradient(135deg, #ff0033, #a30022); }
.social-card.spotify span { background: linear-gradient(135deg, #33c86f, #13984a); }
.social-card.tiktok span { background: linear-gradient(135deg, #111, #e81d35); }
.social-card.instagram span { background: linear-gradient(135deg, #ff7a90, #9d4edd); }

.booking {
  background:
    linear-gradient(135deg, rgba(37,17,27,.92), rgba(200,29,107,.82)),
    url('../img/cartaz-booking-joaninha.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,200,106,.25), transparent 20rem);
}
.booking-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: 52px; align-items: center; }
.booking-copy h2 { color: #fff; }
.booking-copy p { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 620px; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.contact-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.92);
  color: var(--dark);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.7);
}
.contact-logo { width: 190px; margin: 0 auto 18px; }
.contact-row { padding: 20px 0; border-top: 1px solid rgba(245, 82, 156, .18); display: grid; gap: 7px; }
.contact-row span { color: var(--pink-700); font-weight: 900; letter-spacing: .06em; text-transform: uppercase; font-size: .76rem; }
.contact-row a { font-weight: 800; color: var(--dark); overflow-wrap: anywhere; }
.contact-row a:hover { color: var(--pink-700); }
.contact-row p { margin: 0; color: var(--muted); }

.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 54px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 42px; align-items: start; }
.site-footer img { width: 150px; margin-bottom: 12px; }
.site-footer p { max-width: 360px; line-height: 1.75; }
.footer-links, .footer-socials { display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.9); font-weight: 700; }
.site-footer a:hover { color: var(--pink-200); }
.copyright { text-align: center; margin: 36px auto 0; font-size: .88rem; color: rgba(255,255,255,.55); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(20, 6, 14, .86);
  backdrop-filter: blur(10px);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(100%, 1100px); max-height: 86vh; border-radius: 24px; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.lightbox-close {
  position: fixed;
  right: 24px;
  top: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1050px) {
  .hero-grid, .two-col, .music-grid, .video-feature, .social-grid, .booking-grid { grid-template-columns: 1fr; }
  .hero-card { justify-self: start; max-width: 470px; }
  .video-frame { min-height: 360px; }
  .social-cards { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { top: 10px; border-radius: 28px; align-items: flex-start; }
  .brand img { width: 118px; }
  .nav-toggle { display: block; margin-top: 3px; }
  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    padding: 12px;
    border-radius: 24px;
    background: rgba(37,17,27,.94);
    box-shadow: 0 20px 48px rgba(0,0,0,.22);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; text-align: center; }
  .hero { padding-top: 128px; }
  .hero h1 {
  font-family: "Great Vibes", "Playfair Display", serif;
  color: #fff;
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: .88;
  margin: 0 0 58px;
  font-weight: 400;
  text-shadow: 0 18px 50px rgba(0,0,0,.22);
}
  .hero-stats { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
  .quote-card { position: static; width: 100%; margin-top: 16px; }
  .video-grid, .appearance-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-item.large, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .social-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero h1 { line-height: .92; margin-bottom: 68px; }
  .hero-lead { margin-top: 0; }
  .hero h1 {
  font-family: "Great Vibes", "Playfair Display", serif;
  color: #fff;
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: .88;
  margin: 0 0 58px;
  font-weight: 400;
  text-shadow: 0 18px 50px rgba(0,0,0,.22);
}
  .hero-lead {
  margin-top: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 30px;
}
  :root { --container: min(100% - 24px, 1180px); }
  .hero-actions, .booking-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-photo-wrap { transform: none; border-radius: 30px; }
  .hero-photo { border-radius: 23px; }
  .floating-badge { font-size: .82rem; }
  .section-title h2, .section-copy h2, .booking-copy h2 { font-size: 2.25rem; }
  .gallery-grid, .social-cards { grid-template-columns: 1fr; }
  .video-frame { min-height: 245px; }
  .contact-panel { padding: 22px; }
}
