/* ==========================================================================
   BORTOLUCI REFERÊNCIA — IDENTIDADE VISUAL PRETO & DOURADO OFICIAL 2026
   Cores Oficiais Cartaz: Ink (#0a0a0a), Paper (#e8e6dc), Gold (#F1B51C), Gold Bright (#FFC72C)
   ========================================================================== */

:root {
  --ink: #0a0a0a;
  --ink-card: #141414;
  --ink-card-hover: #1c1c1c;
  --paper: #ffffff;
  --gold: #F1B51C;
  --gold-bright: #FFC72C;
  --gold-hover: #FFD54F;
  --acid: #F1B51C;
  --acid-glow: rgba(241, 181, 28, 0.4);
  --orange: #f04d25;
  --orange-glow: rgba(240, 77, 37, 0.4);
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(241, 181, 28, 0.4);

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-body: 'Manrope', sans-serif;

  --container-max: 1320px;
  --header-height: 105px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Textura de Ruído Característica */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Utilities */
.section {
  padding: 110px 5vw;
  max-width: var(--container-max);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--gold) !important;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 1 !important;
  display: block;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(232, 230, 220, 0.5);
  letter-spacing: 0.12em;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.highlight-acid {
  color: var(--acid);
  font-style: normal;
}

.highlight-orange {
  color: var(--orange);
  font-style: normal;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--acid);
  padding-bottom: 6px;
  transition: var(--transition-fast);
}

.text-link:hover {
  color: var(--acid);
  transform: translateX(4px);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-acid {
  background: var(--acid);
  color: var(--ink);
}

.btn-acid:hover {
  background: var(--gold-hover);
  box-shadow: 0 4px 25px var(--acid-glow);
  transform: translateY(-2px);
}

.btn-outline-paper {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line-strong);
}

.btn-outline-paper:hover {
  border-color: var(--paper);
  background: rgba(232, 230, 220, 0.08);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition-fast);
}

.brand img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
  opacity: 0.85;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--acid);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acid);
  color: var(--ink);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header-cta:hover {
  background: var(--gold-hover);
  transform: scale(1.03);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--paper);
  margin: 6px 0;
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
  overflow: hidden;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: contrast(1.1) brightness(1.18) saturate(1.2);
  image-rendering: -webkit-optimize-contrast;
  transform: translate3d(0, 0, 0);
  transition: opacity 1s ease-in-out;
  will-change: opacity, transform;
}

.hero-image-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 7s ease-out;
  transform: scale(1.04);
  z-index: 1;
}

.hero-image-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.1) 45%, rgba(10, 10, 10, 0.65) 100%),
    radial-gradient(circle at center, transparent 30%, rgba(10, 10, 10, 0.5) 100%);
  pointer-events: none;
}

.hero-badge-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5vw;
}

.hero-channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--acid);
  color: var(--paper);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-channel-badge:hover {
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-2px);
}

.yt-dot {
  display: inline-block;
  animation: pulseBlink 1.5s infinite;
}

@keyframes pulseBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: auto;
  padding: 60px 5vw 110px;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(217, 255, 56, 0.1);
  border: 1px solid rgba(217, 255, 56, 0.35);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px var(--acid); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4.2rem, 13vw, 9.5rem);
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 960px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--paper);
  opacity: 0.95;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.round-link {
  width: 56px;
  height: 56px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-size: 24px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.round-link:hover {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
  transform: rotate(45deg);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--acid);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(232, 230, 220, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Marquee em Laranja Vibrante Real Bortoluci */
.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: var(--orange);
  color: var(--ink);
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-slide 24s linear infinite;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   ARTISTAS EM DESTAQUE
   ========================================================================== */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

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

.artist-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: var(--ink-card);
  border: 1px solid var(--line);
  transition: var(--transition-normal);
}

.artist-card.featured {
  grid-column: span 2;
}

.artist-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.artist-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.artist-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, transparent 55%);
  z-index: 1;
}

.artist-info {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.artist-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.artist-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.artist-desc {
  font-size: 0.88rem;
  color: rgba(232, 230, 220, 0.75);
  margin-bottom: 14px;
}

.btn-card {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition-fast);
}

.btn-card:hover {
  color: var(--acid);
}

/* ==========================================================================
   CATÁLOGO COMPLETO & ABAS
   ========================================================================== */

/* ==========================================================================
   CATÁLOGO COMPLETO & ABAS (COM FUNDO DE ARTISTAS REAL DO POSTER)
   ========================================================================== */

.catalogue-section {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--line);
}

.catalogue-search-wrapper {
  width: min(340px, 100%);
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-group svg {
  position: absolute;
  left: 14px;
  color: rgba(232, 230, 220, 0.45);
  pointer-events: none;
}

.search-input-group input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-input-group input:focus {
  border-color: var(--acid);
}

/* Abas de Categorias */
.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-top: 24px;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--paper);
  color: var(--acid);
}

.tab-btn.active {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
  font-weight: 700;
}

/* Resultados do Catálogo */
.catalogue-results {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.catalogue-group {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.catalogue-group:last-child {
  border-bottom: 1px solid var(--line);
}

.catalogue-group h4 {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gold);
  color: #000000;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px var(--acid-glow);
}

.name-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
}

.name-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(232, 230, 220, 0.12);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.name-grid a:hover {
  color: var(--acid);
}

.name-grid a span {
  color: var(--acid);
}

.no-results {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: rgba(232, 230, 220, 0.6);
  padding: 30px 0;
}

/* ==========================================================================
   SERVIÇOS / SPOTLIGHT (FUNDO AMARELO ÁCIDO REAL BORTOLUCI)
   ========================================================================== */

.spotlight {
  background: var(--acid);
  color: var(--ink);
  margin-top: 80px;
}

.spotlight .eyebrow {
  color: var(--ink);
  opacity: 0.85;
}

.spotlight .section-number {
  color: rgba(10, 10, 10, 0.5);
}

.spotlight .section-head {
  border-color: rgba(10, 10, 10, 0.25);
}

.spotlight-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 7vw;
  padding-top: 40px;
}

.spotlight .section-title {
  color: var(--ink);
}

.spotlight .section-title span {
  color: var(--orange);
}

.spotlight .btn-ink {
  background: var(--ink);
  color: var(--paper);
  margin-top: 36px;
}

.spotlight .btn-ink:hover {
  background: #1c1c1c;
  transform: translateY(-2px);
}

.service-list {
  border-top: 1px solid rgba(10, 10, 10, 0.35);
}

.service-list article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.35);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
}

.service-list .service-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
}

.service-list h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.service-list p {
  grid-column: 2;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: 6px;
  opacity: 0.88;
}

/* ==========================================================================
   SOBRE A AGÊNCIA (FAIXA INCLINADA BORTOLUCI)
   ========================================================================== */

.about {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}

.about-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  padding: 10px 0;
  transform: rotate(-2deg) scale(1.03);
  z-index: 5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.about-stripe-track {
  display: flex;
  white-space: nowrap;
  animation: aboutStripeSlide 22s linear infinite;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes aboutStripeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6vw;
  padding-top: 40px;
}

.about-text .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text p {
  color: rgba(232, 230, 220, 0.8);
  margin-bottom: 24px;
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fact-tag {
  border: 1px solid var(--line);
  padding: 7px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* ==========================================================================
   SOBRE NOSSA EMPRESA
   ========================================================================== */

.about-company {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 100px 5vw;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6vw;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-company-content .lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--paper);
  margin-bottom: 28px;
  font-weight: 500;
}

.about-company-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 992px) {
  .about-company-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PROGRAMA PARA CERIMONIALISTAS & ASSESSORIAS
   ========================================================================== */

.cerimonialistas {
  background: var(--ink-card);
  border-top: 1px solid var(--line);
  padding: 110px 5vw;
}

.cerimonialistas-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6vw;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.cerimonialistas-info .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--paper);
  margin-top: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

.cerimonialistas-desc {
  color: rgba(232, 230, 220, 0.75);
  margin-bottom: 32px;
  font-size: 0.98rem;
}

.cerimonialistas-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: var(--transition-fast);
}

.feature-card:hover {
  border-color: var(--acid);
  background: rgba(217, 255, 56, 0.04);
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.feature-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 2px;
}

.feature-card p {
  font-size: 0.85rem;
  color: rgba(232, 230, 220, 0.7);
  margin: 0;
}

.cerimonialistas-actions {
  display: flex;
  gap: 16px;
}

.cerimonialistas-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.cerimonialistas-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  transition: var(--transition-normal);
}

.cerimonialistas-media:hover .cerimonialistas-img {
  transform: scale(1.04);
  filter: brightness(1);
}

.cerimonialistas-card-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--acid);
  padding: 18px;
  border-radius: 8px;
}

.float-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.cerimonialistas-card-float p {
  font-size: 0.88rem;
  color: var(--paper);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 992px) {
  .cerimonialistas-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTATO (FUNDO LARANJA VIBRANTE REAL BORTOLUCI)
   ========================================================================== */

.contact {
  background: var(--orange);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding: 90px 5vw;
}

.contact .eyebrow {
  color: var(--ink);
  opacity: 0.85;
}

.contact .section-title {
  color: var(--ink);
}

.contact .section-title span {
  color: var(--paper);
}

.contact-desc {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 24px;
  line-height: 1.6;
  max-width: 360px;
}

.direct-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(10, 10, 10, 0.45);
  padding-bottom: 8px;
}

.direct-card:hover {
  opacity: 0.8;
}

/* Form Real Bortoluci */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

input, select, textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.65);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition-fast);
}

input::placeholder, textarea::placeholder {
  color: rgba(10, 10, 10, 0.55);
}

input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--ink);
}

select option {
  background: var(--ink);
  color: var(--paper);
}

textarea {
  height: 80px;
  resize: vertical;
}

.btn-submit {
  background: var(--ink);
  color: var(--paper);
  margin-top: 10px;
  align-self: flex-start;
}

.btn-submit:hover {
  background: #1f1f1f;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  min-height: 20px;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

.site-footer {
  padding: 52px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: flex-end;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 150px;
  max-height: 48px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--acid);
}

.footer-info {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.6;
  text-transform: uppercase;
  text-align: right;
  color: rgba(232, 230, 220, 0.7);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 900px) {
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artist-card.featured {
    grid-column: span 1;
  }

  .spotlight-layout, .about-grid, .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-info {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 72px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav, .header-cta {
    display: none;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 24px 5vw;
    background: var(--ink);
    flex-direction: column;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .section-number {
    display: none;
  }
}

/* ==========================================================================
   INTRO SCREEN / PRELOADER ESTILO GR6 & LOVE FUNK
   ========================================================================== */

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #08080a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s ease;
}

.intro-screen.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.intro-content {
  position: relative;
  width: 100%;
  max-width: 680px;
  text-align: center;
  padding: 0 24px;
}

.intro-phase {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.intro-phase.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.intro-logo-wrap {
  margin-bottom: 24px;
  position: relative;
}

.intro-logo {
  max-width: 420px;
  height: auto;
  object-fit: contain;
  animation: introLogoFade 1.6s ease-in-out infinite alternate;
}

@keyframes introLogoFade {
  0% { transform: scale(1); opacity: 0.95; }
  100% { transform: scale(1.03); opacity: 1; }
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(217, 255, 56, 0.1);
  border: 1px solid rgba(217, 255, 56, 0.4);
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.intro-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.intro-partners-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 0.95;
}

.partner-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.partner-logo-item {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.partner-logo-item:hover {
  border-color: var(--acid);
  background: rgba(217, 255, 56, 0.08);
  transform: translateY(-3px);
}

.partner-logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
}

/* Banner de Parceiros no Corpo Principal */
.partners-section {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 5vw;
  border-top: 1px solid var(--line);
}

.partners-section .eyebrow,
.cerimonialistas .eyebrow,
.about-company .eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--gold) !important;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  opacity: 1 !important;
  line-height: 1.1;
  text-shadow: 0 0 25px rgba(241, 181, 28, 0.3);
}

.justify-center {
  justify-content: center;
  text-align: center;
}

.partners-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.partner-bar-img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(30%) contrast(1.1);
  transition: var(--transition-normal);
}

.partner-bar-img:hover {
  opacity: 1;
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.06);
}

.intro-skip {
  position: absolute;
  top: 28px;
  right: 4vw;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 100000;
}

.intro-skip:hover {
  border-color: var(--acid);
  color: var(--acid);
  transform: scale(1.04);
}

.intro-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.intro-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--acid));
  transition: width 0.1s linear;
}