/* =========================================================
   SITE BIG SHOW E PRODUÇÕES — style.css
   Organizado por seções. Edite aqui cores, espaçamentos e layout.
========================================================= */

/* === BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0; /* Fix Android: impede que flex/grid items estourem o container */
}

:root {
  --bg: #0A0A0A;
  --bg-soft: #111111;
  --card: rgba(255, 255, 255, 0.055);
  --card-strong: rgba(255, 255, 255, 0.085);
  --border: rgba(191, 195, 201, 0.18);
  --text: #ffffff;
  --muted: #c6cbd4;
  --muted-2: #9298a4;
  --purple: #00B050;
  --purple-2: #27A9E1;
  --cyan: #2D57B8;
  --green: #22c55e;
  --orange: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --radius: 26px;
  --radius-lg: 34px;
  --container: min(1180px, 92%);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Fix Android: previne scroll horizontal no documento */
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 85% 0%, rgba(0, 176, 80, 0.14), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(45, 87, 184, 0.10), transparent 26%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img, iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* === HEADER / MENU === */
.top-alert {
  background: linear-gradient(90deg, rgba(0,176,80,.95), rgba(45,87,184,.95));
  color: #fff;
  text-align: center;
  font-size: .88rem;
  padding: 9px 16px;
  font-weight: 700;
  letter-spacing: .2px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -.3px;
  text-transform: uppercase;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #00B050, #0B5D3B);
  box-shadow: 0 12px 30px rgba(124,58,237,.28);
  font-size: 1.15rem;
}

.logo small {
  display: block;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d8dce5;
  font-size: .94rem;
  font-weight: 700;
}

.menu a {
  opacity: .86;
  transition: opacity .2s ease, color .2s ease;
}

.menu a:hover {
  opacity: 1;
  color: #fff;
}

/* Botão X para fechar menu mobile */
.menu-close-btn {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 101;
}

.menu-close-btn:hover {
  background: rgba(255,255,255,.16);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-instagram {
  color: var(--purple-2);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--purple-2);
  border-radius: 999px;
  padding: 6px 14px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-instagram:hover {
  background: var(--purple-2);
  color: #fff;
}

.btn-outline-blue {
  display: inline-block;
  color: var(--purple-2);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--purple-2);
  border-radius: 999px;
  padding: 10px 24px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline-blue:hover {
  background: var(--purple-2);
  color: #fff;
}

.btn-outline-green {
  display: inline-block;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--purple);
  border-radius: 999px;
  padding: 10px 24px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline-green:hover {
  background: var(--purple);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, #00B050, #0B5D3B);
  box-shadow: 0 18px 42px rgba(0,176,80,.20);
  transition: transform .2s ease, filter .2s ease;
  white-space: nowrap;
}

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

.btn.secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: none;
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 82px 0 76px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(6, 9, 13, 0.95) 0%, rgba(6, 9, 13, 0.78) 46%, rgba(6, 9, 13, 0.30) 100%),
    var(--hero-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .9;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #b3f0ce;
  background: rgba(0,176,80,.13);
  border: 1px solid rgba(0,176,80,.30);
  font-weight: 900;
  font-size: .85rem;
  margin-bottom: 20px;
}

.tag::before {
  content: "●";
  color: var(--green);
  font-size: .75rem;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  line-height: 1;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-subtitle {
  max-width: 680px;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: #dce1ea;
  margin-bottom: 28px;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  color: #f4f6fb;
  font-weight: 700;
}

.hero-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(34,197,94,.14);
  color: #86efac;
  font-size: .82rem;
  margin-top: 1px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -45%; right: -45%; bottom: -45%; left: -45%;
  background: conic-gradient(from 180deg, transparent, rgba(0,176,80,.28), transparent, rgba(45,87,184,.20), transparent);
  animation: spin 9s linear infinite;
  opacity: .9;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-photo {
  position: relative;
  min-height: 490px;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  /* Fix Android: background-image aplicado via JS inline style — máxima compatibilidade */
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-photo::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.82) 100%);
}

.hero-photo-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.hero-photo-content h2 {
  font-size: 1.65rem;
  line-height: 1.12;
  margin-bottom: 8px;
}

.hero-photo-content p {
  color: #e7e9ef;
  max-width: 420px;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.54);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-weight: 900;
  font-size: .85rem;
  color: #fff;
}

section {
  padding: 78px 0;
  overflow-x: hidden; /* Fix Android: seções não causam scroll horizontal */
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title {
  max-width: 780px;
}

.eyebrow {
  display: inline-block;
  color: var(--purple-2);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.04rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat {
  padding: 24px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
  color: #fff;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
  font-size: .93rem;
}

/* === SOBRE / MURAL === */
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 20px;
  align-items: stretch;
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  align-self: start;
}

.about-mosaic-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
}

.about-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.35s ease;
}

.about-mosaic-item:hover img {
  transform: scale(1.07);
}

.about-box {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.045));
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 44px);
}

.about-box p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  color: #eef2f8;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(0,176,80,.14);
  color: #86efb0;
  font-weight: 950;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--card-strong);
  border-color: rgba(0,176,80,.30);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0,176,80,.28), rgba(45,87,184,.18));
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}

/* === ARTISTAS === */
.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.filter-btn {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #dbe1ec;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(45,87,184,.20);
  border-color: rgba(45,87,184,.42);
  color: #fff;
}

.artists-grid,
.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Fix Android: usa height explícita + background-image em div (máxima compatibilidade) */
.artist-card,
.photo-card {
  position: relative;
  min-height: 315px;
  height: 315px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  max-width: 100%;
}

/* Fix Android: background-image em div em vez de <img> + object-fit */
/* background-size:cover funciona no Android 4+; object-fit em img falha em WebViews antigos */
.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .35s ease, filter .35s ease;
}

.artist-card:hover .card-bg,
.photo-card:hover .card-bg {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.artist-card::after,
.photo-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.03) 20%, rgba(0,0,0,.84) 100%);
  z-index: 1;
}

.card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
}

.card-content h3 {
  font-size: 1.28rem;
  margin-bottom: 4px;
}

.card-content p {
  color: #dbe1ec;
  font-size: .93rem;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.14);
  color: #f4f6fb;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 10px;
  backdrop-filter: blur(8px);
}

.wide-card {
  grid-column: span 2;
}

/* === GALERIA / PORTFÓLIO === */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #101722;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 18px;
}

.video-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.video-info p {
  color: var(--muted);
  font-size: .92rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: process;
}

.process-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  min-height: 235px;
}

.process-card::before {
  counter-increment: process;
  content: "0" counter(process);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(45,87,184,.18);
  color: #93c5fd;
  font-weight: 950;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--muted);
  font-size: .95rem;
}

/* === CONTATO / RODAPÉ === */
.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(42px, 7vw, 86px) 26px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 30% 0%, rgba(0,176,80,.26), transparent 34%),
    radial-gradient(circle at 70% 100%, rgba(45,87,184,.22), transparent 32%),
    rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  color: #e6eaf1;
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
}

.contact-card strong {
  display: block;
  margin-bottom: 4px;
}

.contact-card span,
.contact-card a {
  color: #d9deea;
  font-size: .94rem;
}

footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted-2);
  font-size: .92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* === MODAL / STORY === */
.modal {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 999;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(10px);
  padding: 16px;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.modal.active {
  display: flex;
}

.modal-card {
  width: min(680px, 96vw);
  max-height: 92vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(0,0,0,.7));
  border: 1px solid rgba(0,176,80,.22);
  border-radius: 28px;
  box-shadow:
    0 0 0 4px rgba(0,176,80,.07),
    0 0 0 8px rgba(45,87,184,.05),
    0 32px 80px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.10);
  position: relative;
  outline: 1px solid rgba(255,255,255,.06);
  outline-offset: 4px;
}

.modal-media {
  display: block;
  width: 100%;
  max-height: 75vh;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.modal-content {
  padding: 22px;
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.modal-content p {
  color: var(--muted);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 1000;
}

/* Modal catálogo de artista */
.artist-modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.artist-modal-photo-side {
  position: relative;
  background: #060a10;
  border-radius: 28px 0 0 28px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0,176,80,.15);
  box-shadow: inset 0 0 60px rgba(0,176,80,.05), inset 4px 0 24px rgba(45,87,184,.06);
}

.artist-modal-main-img {
  width: 100%;
  flex: 1;
  object-fit: contain;
  max-height: 52vh;
  background: #060a10;
  padding: 16px;
}

.artist-modal-gallery {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  flex-wrap: wrap;
  background: rgba(0,0,0,0.4);
}

.artist-modal-thumb {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.artist-modal-thumb:hover,
.artist-modal-thumb.active {
  border-color: var(--purple);
}

.artist-modal-info-side {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 92vh;
  -webkit-overflow-scrolling: touch;
}

.artist-modal-pill {
  display: inline-block;
  background: rgba(0,176,80,0.15);
  color: var(--purple);
  border: 1px solid rgba(0,176,80,0.3);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
}

.artist-modal-name {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.artist-modal-local {
  color: var(--muted-2);
  font-size: 0.9rem;
  margin: 0;
}

.artist-modal-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.artist-modal-video-notice {
  background: rgba(45,87,184,0.12);
  border: 1px solid rgba(45,87,184,0.28);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.86rem;
  color: var(--purple-2);
}

.artist-modal-no-photos {
  font-size: 0.86rem;
  color: var(--muted-2);
  font-style: italic;
}

.artist-modal-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00B050, #0B5D3B);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: auto;
}

.artist-modal-whatsapp:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.artist-modal-videos {
  margin-top: 8px;
}

.artist-modal-videos-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--purple-2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.artist-modal-video-item {
  margin-bottom: 14px;
}

.artist-modal-video-item p {
  font-size: 0.82rem;
  color: var(--muted-2);
  margin-bottom: 5px;
}

.artist-modal-video-item video {
  width: 100%;
  border-radius: 10px;
  background: #000;
  max-height: 200px;
}

/* Carrossel do artista */
.artist-modal-card {
  width: min(960px, 96vw) !important;
}

.artist-modal-layout {
  grid-template-columns: 560px 1fr !important;
}

.artist-carousel {
  position: relative;
  background: #060a10;
  border-radius: 28px 0 0 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 560px;
  max-width: 560px;
}

.carousel-media-wrap {
  width: 560px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060a10;
  position: relative;
  overflow: hidden;
}

.carousel-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-media-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

/* YouTube / embed — wrapper responsivo 16:9 sem inline style */
.yt-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 — calculado sobre a largura do container */
  background: #000;
  border-radius: inherit;
}

.yt-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
  display: block;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 16px;
  background: rgba(0,0,0,.5);
}

.carousel-btn {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(0,176,80,.35);
  border-color: rgba(0,176,80,.5);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-counter {
  font-size: 0.82rem;
  color: var(--muted);
  min-width: 48px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  flex-wrap: wrap;
  background: rgba(0,0,0,.4);
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--purple);
  transform: scale(1.3);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
}

/* === UTILITÁRIOS INLINE → CLASSES (remove necessidade de style-src unsafe-inline) === */

/* Logo */
.logo-img { height: 42px; width: auto; display: block; }

/* Botões CTA (contato) */
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Rodapé */
.footer-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer-instagram { color: var(--purple-2); text-decoration: none; font-size: 0.85rem; }
.footer-privacy { color: #9298a4; text-decoration: none; font-size: 0.82rem; opacity: .75; }

/* Info dentro do contact-card */
.contact-info { display: block; color: #d9deea; font-size: .94rem; }

/* Elementos e seções ocultos por padrão */
#artistModalNoPhotos { display: none; }
.section-hidden { display: none; }

/* === BOTÃO FLUTUANTE WHATSAPP (mobile) === */
.whatsapp-float {
  display: none; /* oculto no desktop */
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 998;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@media (max-width: 820px) {
  .whatsapp-float {
    display: flex;
  }
}

/* === COOKIES === */
#cookieBanner {
  display: none; /* oculto por padrão — JS exibe após 800ms */
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 92%);
  background: rgba(17,17,17,0.97);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  padding: 18px 22px;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
}

#cookieBanner p {
  flex: 1;
  font-size: .84rem;
  color: #c6cbd4;
  margin: 0;
  min-width: 180px;
}

#cookieBanner a {
  color: var(--purple-2);
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn-refuse {
  background: transparent;
  color: #9298a4;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .82rem;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn-accept:hover { opacity: .88; }
.cookie-btn-refuse:hover { color: #fff; border-color: rgba(255,255,255,.35); }

/* === RESPONSIVO === */
@media (max-width: 1040px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  /* Centralizar conteúdo hero quando empilhado em 1 coluna */
  .hero-grid > div:first-child {
    text-align: center;
  }
  .hero-list {
    text-align: left;
    width: 100%;
    margin-bottom: 34px;
  }
  .hero-buttons {
    justify-content: center;
  }

  .hero-photo {
    min-height: 420px;
  }

  .about-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid,
  .videos-grid,
  .process,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .artists-grid,
  .photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  /* Ocultar Instagram no header mobile para não comprimir o logo */
  .nav-instagram {
    display: none;
  }

  /* Centralizar títulos de seção no mobile */
  .section-title {
    text-align: center;
  }
  .section-title p {
    margin-left: auto;
    margin-right: auto;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 86vw);
    height: 100vh;
    height: 100dvh; /* Fix Android: usa dvh quando disponível */
    padding: 80px 28px 28px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(7, 10, 15, .97);
    border-left: 1px solid rgba(255,255,255,.1);
    transition: right .25s ease;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu.active {
    right: 0;
  }

  /* Botão X visível só no menu mobile aberto */
  .menu.active .menu-close-btn {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar {
    justify-content: flex-start;
  }

  .artists-grid,
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-card {
    grid-column: span 1;
  }

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

  /* Fix modal no Android: padding menor */
  .modal {
    padding: 12px;
  }

  .artist-modal-card {
    width: 96vw !important;
  }

  .artist-modal-layout {
    grid-template-columns: 1fr !important;
  }

  .artist-carousel {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 28px 28px 0 0;
  }

  .carousel-media-wrap {
    width: 100% !important;
    height: 56vw !important;
    min-height: 220px;
  }

  .artist-modal-info-side {
    padding: 22px 18px;
    max-height: none;
  }
}

@media (max-width: 700px) {
  .artist-modal-layout {
    grid-template-columns: 1fr;
  }

  .artist-modal-photo-side {
    border-radius: 28px 28px 0 0;
    min-height: 220px;
  }

  .artist-modal-info-side {
    padding: 22px 18px;
    max-height: none;
  }
}

@media (max-width: 560px) {
  .top-alert {
    font-size: .78rem;
  }

  .nav {
    min-height: 68px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 56px 0 54px;
  }

  h1 {
    letter-spacing: -1.5px;
  }

  .hero-buttons,
  .hero-buttons .btn,
  .btn.full-mobile {
    width: 100%;
  }

  section {
    padding: 56px 0;
  }

  .stats,
  .services-grid,
  .artists-grid,
  .photos-grid,
  .videos-grid,
  .process {
    grid-template-columns: 1fr;
  }

  /* Cards em 1 coluna no mobile */
  .artist-card,
  .photo-card {
    min-height: 280px;
    height: 280px;
  }

  .hero-photo {
    min-height: 340px;
  }

  .about-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Centralizar título de seção em telas muito pequenas */
  .section-head {
    text-align: center;
  }

  /* Rodapé empilhado */
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
