/* ============================================================
   QUINTO CONTINENTE — style.css
   Sistema de design centralizado
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:     #D42B2B;
  --accent-dim: rgba(212,43,43,0.10);
  --bg:         #0C0C0C;
  --bg2:        #121212;
  --bg3:        #181818;
  --surface:    #222222;
  --line:       rgba(255,255,255,0.06);
  --line2:      rgba(255,255,255,0.10);
  --text:       #EFEFEF;
  --muted:      #444444;
  --muted2:     #777777;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --nav-h:      88px;
  --site-pad:   clamp(1.5rem, 5vw, 4rem);
  --max-w:      1400px;

  /* White Section Styling */
  --bg-white:   #F7F6F4;
  --text-dark:  #1A1A1A;
  --muted-dark: #5C5C5C;
  --line-dark:  rgba(0,0,0,0.08);
}



html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--site-pad);
  padding-right: var(--site-pad);
  width: 100%;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted2); }

/* ── Custom Cursor ─────────────────────────────────────────── */
/* Removido */

/* ── Navigation ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: center;
  padding: 1.5rem var(--site-pad);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0) 100%);
  transition: background .3s, border-color .3s, padding .3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w);
}
nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line2);
  padding: 0.8rem var(--site-pad);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { width: 120px; height: 120px; display: block; transition: width .3s, height .3s; }
nav.scrolled .nav-logo img { width: 80px; height: 80px; }
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted2); text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 0.65rem 1.4rem; border-radius: 100px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.nav-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,88,88,0.3); }

#wa-nav-btn { background: #25D366; }
#wa-nav-btn:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.3); }



/* Hamburger (mobile) */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--muted2); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 190;
  background: var(--bg);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text);
  text-decoration: none; transition: color .2s;
  text-align: center;
}
.nav-mobile a:hover { color: var(--accent); }

/* ── Page header (inner pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) max(var(--site-pad), calc((100% - var(--max-w)) / 2)) 5rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--line2);
}
.page-hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 800;
  line-height: 1.0; letter-spacing: -0.03em;
  color: var(--text); max-width: 720px;
  margin-bottom: 1.5rem;
}
.page-hero-sub {
  font-size: 1rem; font-weight: 300;
  line-height: 1.8; color: var(--muted2); max-width: 560px;
}
.page-hero-sub strong { color: var(--text); font-weight: 400; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--muted2);
  margin-bottom: 2.5rem;
}
.breadcrumb a { color: var(--muted2); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--muted); }

/* ── Sections ──────────────────────────────────────────────── */
section { 
  padding: 7rem max(var(--site-pad), calc((100% - var(--max-w)) / 2)); 
}

.s-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.s-sub, .s-sub p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted2);
}
.s-sub p {
  margin-bottom: 1rem;
}
.s-sub p:last-child {
  margin-bottom: 0;
}

/* ── Alternância de Seções (Light/Dark) ────────────────────── */
.section-white {
  background: var(--bg-white);
  color: var(--text-dark);
}
.section-white .s-title,
.section-white .s-title *,
.section-white h2,
.section-white h3,
.section-white h4,
.section-white .card-title,
.section-white .dif-title,
.section-white .stat-title,
.section-white .artist-name,
.section-white .gallery-item-title {
  color: var(--text-dark) !important;
}
.section-white .s-sub,
.section-white .s-sub strong,
.section-white p,
.section-white p strong,
.section-white .card-desc,
.section-white .dif-desc,
.section-white .stat-sub,
.section-white .gallery-item-cat,
.section-white .breadcrumb a,
.section-white .breadcrumb span {
  color: var(--muted-dark) !important;
}
.section-white .card,
.section-white .dif,
.section-white .artist-card,
.section-white .flex-card,
.section-white .gallery-item {
  background: #FFFFFF;
  border-color: var(--line-dark);
}
.section-white .card:hover,
.section-white .dif:hover,
.section-white .artist-card:hover,
.section-white .flex-card:hover,
.section-white .gallery-item:hover {
  background: #F0EFEF;
}
.section-white .flex-card-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}
.section-white .flex-card-title {
  color: var(--text-dark) !important;
}
.section-white .flex-card-desc {
  color: var(--muted-dark) !important;
}
.section-white .cards-wrap {
  background: var(--line-dark);
  border-color: var(--line-dark);
}
.section-white .card-icon {
  border-color: var(--line-dark);
  background: rgba(0, 0, 0, 0.02);
}
.section-white .card:hover .card-icon {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.section-white .card-idx {
  color: var(--muted-dark);
}
.section-white .btn-outline {
  border-color: var(--line-dark);
  color: var(--text-dark);
}
.section-white .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.section-white .stat-row {
  border-bottom-color: var(--line-dark);
}
.section-white .stat-row:hover {
  background: rgba(0, 0, 0, 0.02);
}
.section-white .stat-box {
  border-color: var(--line-dark);
}
.section-white .divider {
  background: var(--line-dark);
}
.section-white .form-box {
  background: #FFFFFF;
  border-color: var(--line-dark);
}
.section-white .fi,
.section-white .ft,
.section-white .fs {
  background: #FFFFFF;
  border-color: var(--line-dark);
  color: var(--text-dark);
}
.section-white .fi:focus,
.section-white .ft:focus,
.section-white .fs:focus {
  border-color: var(--accent);
}
.section-white .fs option {
  background: #FFFFFF;
  color: var(--text-dark);
}
.section-white .fl {
  color: var(--muted-dark);
}

/* Custom local page styles adapted for white sections */
.section-white .manifesto-quote {
  color: var(--text-dark) !important;
}
.section-white .manifesto-quote em {
  color: var(--accent) !important;
}
.section-white .manifesto-body p {
  color: var(--muted-dark) !important;
}
.section-white .manifesto-body p strong {
  color: var(--text-dark) !important;
}
.section-white .tl-list::before {
  background: var(--line-dark) !important;
}
.section-white .tl-title {
  color: var(--text-dark) !important;
}
.section-white .tl-desc {
  color: var(--muted-dark) !important;
}
.section-white .tl-year {
  color: var(--accent) !important;
}
.section-white .tl-dot {
  box-shadow: 0 0 0 4px rgba(212,43,43,.10) !important;
}
.section-white .search-input {
  background: #FFFFFF !important;
  border-color: var(--line-dark) !important;
  color: var(--text-dark) !important;
}
.section-white .search-input:focus {
  border-color: var(--accent) !important;
}
.section-white .qs-cta h2 {
  color: var(--text-dark) !important;
}
.section-white .qs-cta p {
  color: var(--muted-dark) !important;
}
.section-white .s-label {
  color: var(--accent) !important;
}
.section-white strong {
  color: var(--text-dark) !important;
}

.section-dark {
  background: var(--bg);
  color: var(--text);
}

section.hero { 
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ── Hero (novo — 2 colunas humanizado) ────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 5rem) 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212, 43, 43, 0.03) 0%, transparent 65%);
}
.hero-left {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.04em; color: var(--text);
}
.hero h1 .hl {
  color: var(--accent);
  background: none; -webkit-text-fill-color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem; font-weight: 300;
  line-height: 1.7; color: var(--muted2);
  max-width: 680px;
}
.hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero-rule { display: none; }


@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 4rem;
  }
  .hero-right { display: none; }
}


.s-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem;
}
.s-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 800;
  line-height: 1.0; letter-spacing: -0.03em;
  color: var(--text); max-width: 700px;
}
.s-sub {
  font-size: 0.975rem; font-weight: 300;
  line-height: 1.8; color: var(--muted2);
  max-width: 600px; margin-top: 1.5rem;
}
.s-sub strong { color: var(--text); font-weight: 400; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-main {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 1rem 2rem; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,88,88,0.3); }
.btn-main .arr { transition: transform .2s; }
.btn-main:hover .arr { transform: translateX(5px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text); background: transparent;
  padding: 1rem 2rem; border-radius: 100px;
  text-decoration: none; border: 1px solid var(--line2); cursor: pointer;
  transition: border-color .25s, color .25s, transform .25s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ── Cards grid ────────────────────────────────────────────── */
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }

.cards-wrap {
  background: var(--line2);
  border: 1px solid var(--line2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.card:hover { background: var(--bg3); }
.card-bar {
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.card:hover .card-bar { width: 100%; }
.card-idx {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.12em; color: var(--muted);
  margin-bottom: 1.75rem;
}
.card-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--line2); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color .3s, background .3s;
}
.card:hover .card-icon { border-color: var(--accent); background: var(--accent-dim); }
.card-icon svg { width: 16px; height: 16px; stroke: var(--muted2); transition: stroke .3s; }
.card:hover .card-icon svg { stroke: var(--accent); }
.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.card-desc {
  font-size: 0.85rem; font-weight: 300;
  line-height: 1.75; color: var(--muted2);
}
.card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  transition: gap .2s;
}
.card-link:hover { gap: 0.8rem; }

/* ── Service Cards (GRID layout — clean off-white redesign) ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: #F3F1EE;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.svc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .35s;
}
.svc-card:hover {
  background: #FAFAF8;
  border-color: rgba(212,43,43,.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.svc-card:hover::before { opacity: 1; }

.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.svc-card:hover .svc-icon-wrap {
  background: rgba(212,43,43,0.08);
  border-color: rgba(212,43,43,.2);
}
.svc-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: #444444;
  transition: stroke .3s;
}
.svc-card:hover .svc-icon-wrap svg { stroke: var(--accent); }

.svc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: #141414;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.svc-desc {
  font-size: 0.84rem; font-weight: 400;
  line-height: 1.78; color: #555555;
  flex: 1;
}

/* ── Stat rows ─────────────────────────────────────────────── */
.stat-box { border: 1px solid var(--line2); border-radius: var(--radius-lg); overflow: hidden; }
.stat-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.stat-row:last-child { border-bottom: none; }
.stat-row:hover { background: var(--surface); }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.04em; color: var(--accent);
  min-width: 72px; line-height: 1;
}
.stat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem;
}
.stat-sub { font-size: 0.78rem; font-weight: 300; color: var(--muted2); }

/* ── Diferencial pill ──────────────────────────────────────── */
.dif-pill {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.58rem;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-dim);
  padding: 0.28rem 0.65rem; border-radius: 100px;
  margin-bottom: 1.25rem;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-box {
  background: var(--bg3); border: 1px solid var(--line2);
  border-radius: var(--radius-xl); padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fl {
  display: block;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted2); margin-bottom: 0.45rem;
}
.fi, .ft, .fs {
  width: 100%; background: var(--surface);
  border: 1px solid var(--line2); border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 300;
  color: var(--text); outline: none;
  transition: border-color .25s; -webkit-appearance: none;
}
.ft { resize: vertical; min-height: 120px; }
.fi::placeholder, .ft::placeholder { color: var(--muted); }
.fi:focus, .ft:focus, .fs:focus { border-color: var(--accent); }
.fs {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.fs option { background: #1E1E1E; }
.btn-form {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 1.05rem 2rem; border-radius: 10px;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s; margin-top: 0.5rem;
}
.btn-form:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,88,88,0.25); }
.btn-form .arr { transition: transform .2s; }
.btn-form:hover .arr { transform: translateX(4px); }
.form-ok {
  display: none; text-align: center; margin-top: 0.85rem;
  font-size: 0.78rem; color: var(--accent);
  font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.05em;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 4.5rem max(var(--site-pad), calc((100% - var(--max-w)) / 2)) 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--line); margin-bottom: 1.75rem;
}
.f-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 0.2rem; }
.f-sub { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.f-desc { font-size: 0.83rem; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 250px; margin-bottom: 1.5rem; }
.f-social { display: flex; gap: 0.5rem; }
.f-s {
  width: 32px; height: 32px; border: 1px solid var(--line2); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: border-color .25s, background .25s;
}
.f-s:hover { border-color: var(--accent); background: var(--accent-dim); }
.f-s svg { width: 13px; height: 13px; fill: var(--muted2); }
.f-col-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); margin-bottom: 1.2rem;
}
.f-links { list-style: none; }
.f-links li { margin-bottom: 0.55rem; }
.f-links a { font-size: 0.83rem; font-weight: 300; color: var(--muted); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--accent); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; }
.footer-bot p { font-size: 0.73rem; font-weight: 300; color: var(--muted); }
.footer-bot a { color: var(--muted2); text-decoration: none; }
.footer-bot a:hover { color: var(--accent); }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── Chips / tags ──────────────────────────────────────────── */
.chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted2); border: 1px solid var(--line2);
  padding: 0.35rem 0.85rem; border-radius: 100px;
}

/* ── Divider ───────────────────────────────────────────────── */
.divider { height: 1px; background: var(--line2); margin: 0; }

/* ── Blog promo strip ──────────────────────────────────────── */
.blog-strip {
  background: var(--bg3); border: 1px solid var(--line2);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.blog-strip-text { font-size: 0.9rem; font-weight: 300; color: var(--muted2); line-height: 1.6; }
.blog-strip-text strong { color: var(--text); font-weight: 500; }

/* ── Hero Internal ─────────────────────────────────────────── */
.hero-internal {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) max(var(--site-pad), calc((100% - var(--max-w)) / 2)) 5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-internal-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-internal::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,12,12,0.9) 0%, rgba(12,12,12,0.5) 50%, rgba(12,12,12,0) 100%),
              linear-gradient(180deg, rgba(12,12,12,0.5) 0%, var(--bg) 100%);
  z-index: 1;
}
.hero-internal-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 800px;
  display: flex; flex-direction: column; gap: 1.5rem;
  text-align: left;
}
.hero-internal .s-label { justify-content: flex-start; margin-bottom: 0.5rem; }
.hero-internal h1 { 
  font-family: 'Space Grotesk', sans-serif; 
  font-size: clamp(2.5rem, 6vw, 4.5rem); 
  font-weight: 800; 
  line-height: 1.05; 
  color: var(--text); 
  margin-bottom: 0.5rem;
}
.hero-internal h1 em { font-style: normal; color: var(--accent); }
.hero-internal-sub { 
  font-size: 1.1rem; 
  font-weight: 300; 
  color: var(--muted); 
  line-height: 1.6; 
  max-width: 600px; 
}
.hero-internal-actions { 
  display: flex; gap: 1rem; margin-top: 1.5rem; 
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* ── Dynamic Text Sections ─────────────────────────────────── */
.txt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Flex Image Grid ────────────────────────────────────────── */
.flex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
.flex-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
  text-decoration: none;
  
  /* default para 3 colunas */
  flex: 0 1 calc(33.333% - 1.34rem);
  min-width: 290px;
}

/* Ajustes de colunas flexíveis baseadas no número de cards */
.grid-cols-4-flex .flex-card {
  flex: 0 1 calc(25% - 1.5rem);
}
.grid-cols-2-flex .flex-card {
  flex: 0 1 calc(50% - 1rem);
}

@media (min-width: 1025px) {
  .flex-card {
    aspect-ratio: 10/9; /* Aumenta a altura dos cards em 20% no Desktop */
  }
}
.flex-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.flex-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  transition: background 0.3s;
}
.flex-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(255, 88, 88, 0.15);
}
.flex-card:hover .flex-card-bg {
  transform: scale(1.06);
}
.flex-card:hover .flex-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.flex-card-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  text-align: left;
}
.flex-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.flex-card-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .flex-grid {
    gap: 1.5rem;
  }
  .flex-card {
    flex: 0 1 calc(50% - 0.75rem) !important;
  }
}
@media (max-width: 768px) {
  .flex-grid {
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  .flex-card {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 2.25rem 1.75rem;
    aspect-ratio: 16/10;
  }
}
/* ══ RESPONSIVE ════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .card-grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-logo img { width: 60px; height: 60px; }
  .nav-links, .nav-btn { display: none; }
  .nav-hamburger { display: flex; }
  nav, section, footer, .page-hero { padding-left: 1.5rem; padding-right: 1.5rem; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .card { padding: 2.5rem 1.5rem; }
  .stat-row { padding: 1.25rem 1rem; flex-direction: column; align-items: flex-start; gap: .75rem; }
  .form-box { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bot { flex-direction: column; gap: 0.5rem; text-align: center; }
  .blog-strip { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; gap: 1rem; }
  .svc-card { padding: 2rem 1.5rem; }
  .txt-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}

/* ── Artistas ──────────────────────────────────────────────── */
.artistas-marquee-section {
  padding: 4rem 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.marquee-container {
  display: flex;
  gap: 2rem;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 150s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.artist-card {
  flex: 0 0 280px;
  background: var(--bg2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s, border-color 0.3s;
}
.artist-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.artist-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.artist-img svg {
  width: 40px;
  height: 40px;
  color: var(--muted);
}
.artist-info {
  padding: 1.5rem;
  text-align: center;
}
.artist-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Artists Page Grid */
.artists-page-section {
  padding: 4rem 2rem 8rem;
  max-width: 1400px;
  margin: 0 auto;
}
.search-container {
  margin-bottom: 4rem;
  position: relative;
}
.search-input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--line2);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.search-input:focus {
  outline: none;
  border-color: var(--accent);
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 768px) {
  nav { padding: 1rem var(--site-pad); }
  .nav-logo img { width: 94px; height: 94px; }
  nav.scrolled .nav-logo img { width: 72px; height: 72px; }
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .nav-hamburger { display: flex; }

  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .artist-card { flex: 0 0 240px; }
}

/* ── Galeria Dinâmica ───────────────────────────────────────── */
.gallery-page-section {
  padding: 4rem max(var(--site-pad), calc((100% - var(--max-w)) / 2)) 8rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line2);
  padding-bottom: 1rem;
}

.gallery-tab-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  background: transparent;
  border: 1px solid transparent;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-tab-btn:hover {
  color: var(--text);
  background: var(--surface);
}

.gallery-tab-btn.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(255, 88, 88, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: var(--bg2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(255, 88, 88, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.gallery-item-cat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }
}

