/* ============================================
   PERSONALIZZAT — Premium Automotive CSS
   Dark · Pink · Neon · High-Conversion
   ============================================ */

/* ---- Variables ---- */
:root {
  --pink:        #FF2D78;
  --pink-light:  #FF6BA8;
  --pink-glow:   rgba(255, 45, 120, 0.35);
  --pink-faint:  rgba(255, 45, 120, 0.08);
  --dark:        #080A0E;
  --dark-2:      #0F1218;
  --dark-3:      #151A22;
  --dark-4:      #1C232E;
  --dark-card:   #111720;
  --white:       #FFFFFF;
  --grey:        #9AA3B0;
  --grey-light:  #C4CBD5;
  --border:      rgba(255,255,255,0.07);
  --border-pink: rgba(255, 45, 120, 0.25);

  --font-main:   'Inter', sans-serif;
  --font-display:'Bebas Neue', sans-serif;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  --shadow-pink: 0 0 30px rgba(255,45,120,0.35), 0 0 60px rgba(255,45,120,0.15);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.55);
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.35);

  --trans:       0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow:  0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utility ---- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--border-pink);
  background: var(--pink-faint);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
}

.title-accent {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--grey);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-desc { margin-left: auto; margin-right: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, #C7185A 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,45,120,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FF4D8F 0%, var(--pink) 100%);
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-faint);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 1px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,45,120,0.3);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-xl { padding: 20px 48px; font-size: 1.1rem; border-radius: var(--radius-lg); }

.btn i { font-size: 1.1em; }

.pulse-btn {
  animation: pulsePink 2.5s ease-in-out infinite;
}
@keyframes pulsePink {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,45,120,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(255,45,120,0.75), 0 0 70px rgba(255,45,120,0.3); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans);
}

.navbar.scrolled {
  background: rgba(8, 10, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.logo-accent {
  color: var(--pink);
}

/* ---- Navbar logo — símbolo Z + wordmark ---- */
.nav-logo {
  display: block;
  text-decoration: none;
}

.nav-logo-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: opacity var(--trans);
}
.nav-logo:hover .nav-logo-inner { opacity: 0.85; }

/* Símbolo ZZ geométrico na navbar */
.nav-symbol {
  width: 64px;
  height: 32px;
  flex-shrink: 0;
  color: var(--white);
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));
  transition: filter var(--trans), color var(--trans);
}
.navbar.scrolled .nav-symbol {
  filter: drop-shadow(0 0 8px rgba(255,45,120,0.25));
}
.nav-logo:hover .nav-symbol {
  color: var(--pink-light);
  filter: drop-shadow(0 0 10px rgba(255,45,120,0.4));
}

/* Wordmark tipográfico na navbar */
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
  transition: color var(--trans);
}
.nav-logo:hover .nav-wordmark { color: var(--pink-light); }

/* Fallback — imagem PNG (caso ainda usada) */
.nav-logo-img {
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-light);
  transition: color var(--trans);
}

.nav-links li a:hover { color: var(--white); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--pink), #C7185A);
  color: var(--white) !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--trans);
  box-shadow: 0 2px 12px rgba(255,45,120,0.3);
}
.nav-cta:hover {
  box-shadow: var(--shadow-pink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,10,14,0.85) 0%,
    rgba(8,10,14,0.65) 50%,
    rgba(8,10,14,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-light);
  border: 1px solid var(--border-pink);
  background: rgba(255,45,120,0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: blinkDot 1.5s ease-in-out infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

.headline-accent {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 60%, #FF9BCA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.stat-plus {
  font-size: 1.2rem;
  color: var(--pink);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero brand icon (Off-White Z logo) */
.hero-logo-wrap {
  margin-bottom: 1.25rem;
}

.hero-brand-logo {
  height: 52px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.2));
  opacity: 0.95;
}

.br-desk { display: block; }

/* ============================================
   GALERIA
   ============================================ */
.galeria {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
}

.galeria::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

/* Filter Tabs */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  font-family: var(--font-main);
}

.filter-btn:hover {
  border-color: var(--pink);
  color: var(--white);
}

.filter-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(255,45,120,0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--dark);
  margin-bottom: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: var(--trans);
}

.gallery-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s ease;
  /* Tratamento premium: leve tonalidade fria, contraste alto, saturação controlada */
  filter: contrast(1.08) saturate(0.88) brightness(0.96) hue-rotate(-4deg);
}

.gallery-item:hover .gallery-img-wrap img {
  filter: contrast(1.12) saturate(1.0) brightness(1.02) hue-rotate(0deg);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,10,14,0.9) 100%);
  opacity: 0;
  transition: var(--trans);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.07); }

.gallery-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-car {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-tag {
  font-size: 0.75rem;
  color: var(--pink-light);
  background: rgba(255,45,120,0.15);
  border: 1px solid var(--border-pink);
  padding: 2px 10px;
  border-radius: 100px;
  display: inline-block;
}

.gallery-zoom {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,45,120,0.2);
  border: 1px solid var(--border-pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  flex-shrink: 0;
}

.gallery-zoom:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.gallery-item.hidden { display: none; }

.gallery-cta-wrap {
  text-align: center;
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
  padding: 100px 0;
  background: var(--dark);
}

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

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}

.service-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: linear-gradient(135deg, rgba(255,45,120,0.12), rgba(255,45,120,0.04));
  border-color: var(--border-pink);
  box-shadow: 0 0 40px rgba(255,45,120,0.1);
}

.service-card.featured::before { opacity: 1; }

.service-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--pink);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--pink-faint);
  border: 1px solid var(--border-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--pink);
  margin-bottom: 1.25rem;
  transition: var(--trans);
}

.service-card:hover .service-icon {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255,45,120,0.4);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}

.service-link:hover { gap: 10px; }

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.diferenciais-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.diff-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.diff-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,10,14,0.97) 0%,
    rgba(8,10,14,0.88) 50%,
    rgba(8,10,14,0.75) 100%
  );
}

.diff-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-left .section-title { margin-bottom: 1.25rem; }

.diff-lead {
  color: var(--grey-light);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diff-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.diff-icon {
  font-size: 1.3rem;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px rgba(255,45,120,0.5));
}

.diff-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.diff-item p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ============================================
   HYBRID GLASS HIGHLIGHT
   ============================================ */
.hybrid-section {
  padding: 0;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hybrid-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 50px 0;
  flex-wrap: wrap;
}

.hybrid-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--pink), #C7185A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(255,45,120,0.4);
}

.hybrid-text {
  flex: 1;
  min-width: 220px;
}

.hybrid-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hybrid-text p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hybrid-inner .btn { flex-shrink: 0; }

/* ============================================
   PROCESSO
   ============================================ */
.processo {
  padding: 100px 0;
  background: var(--dark-2);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0 8px;
  align-items: start;
  margin-bottom: 3rem;
}

.step-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}

.step-item:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
}
.step-item:hover::before { opacity: 1; }

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--pink-faint);
  line-height: 1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(255,45,120,0.15), rgba(255,45,120,0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.step-icon {
  font-size: 1.8rem;
  color: var(--pink);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(255,45,120,0.4));
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1rem;
  opacity: 0.4;
  padding-top: 80px;
}

.processo-cta { text-align: center; }

/* ============================================
   LOCALIZAÇÃO
   ============================================ */
.localizacao {
  padding: 100px 0;
  background: var(--dark);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.loc-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.loc-item i {
  font-size: 1.3rem;
  color: var(--pink);
  flex-shrink: 0;
  width: 22px;
  margin-top: 3px;
}

.loc-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.loc-item p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

.loc-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.loc-map iframe {
  display: block;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(0.9);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,10,14,0.9) 0%, rgba(30,5,20,0.85) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  margin-top: 1rem;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

.cta-fine {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--grey);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-logo {
  font-size: 1.4rem;
  display: block;
}

/* ---- Footer logo combo (símbolo Z + wordmark) ---- */
.footer-logo-combo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color var(--trans);
}
.footer-logo-combo:hover { color: var(--white); }

.footer-symbol-svg {
  width: 60px;
  height: 30px;
  flex-shrink: 0;
  transition: filter var(--trans);
}
.footer-logo-combo:hover .footer-symbol-svg {
  filter: drop-shadow(0 0 6px rgba(255,45,120,0.4));
  color: var(--pink-light);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}

/* Footer logo — estilo original mantido como fallback */
.footer-brand .footer-logo-wrap {
  margin-bottom: 0.25rem;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.1));
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: var(--trans);
  font-size: 1rem;
}

.footer-social a:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-faint);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links ul li a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color var(--trans);
}

.footer-links ul li a:hover { color: var(--pink); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 0.7rem;
}

.footer-contact i { color: var(--pink); font-size: 0.875rem; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--grey);
}

/* ============================================
   FLOATING BUTTONS STACK
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-buttons.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--trans);
  position: relative;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1) translateX(-4px);
}

/* WhatsApp */
.float-whatsapp {
  background: linear-gradient(135deg, #25D366, #1DA851);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: floatBounce 3s ease-in-out infinite;
}
.float-whatsapp:hover {
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}

/* Instagram */
.float-instagram {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  box-shadow: 0 4px 20px rgba(221,42,123,0.4);
  animation: floatBounce 3s ease-in-out infinite 0.3s;
}
.float-instagram:hover {
  box-shadow: 0 6px 30px rgba(221,42,123,0.65);
}

/* TikTok */
.float-tiktok {
  background: linear-gradient(135deg, #010101, #69C9D0, #EE1D52);
  background: #010101;
  border: 1px solid rgba(105,201,208,0.4);
  box-shadow: 0 4px 20px rgba(238,29,82,0.35);
  animation: floatBounce 3s ease-in-out infinite 0.6s;
}
.float-tiktok:hover {
  box-shadow: 0 6px 30px rgba(238,29,82,0.5);
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.float-btn:hover { animation: none; }

/* Tooltips */
.float-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark-3);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid var(--border);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: 0;
  border-left-color: var(--border);
}

.float-btn:hover .float-tooltip { opacity: 1; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
  cursor: pointer;
}

.lightbox-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
}

.lb-img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  transition: opacity 0.2s ease;
}

.lb-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.lb-close:hover { background: var(--pink); border-color: var(--pink); }

.lb-prev, .lb-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  flex-shrink: 0;
}

.lb-prev:hover, .lb-next:hover {
  background: var(--pink);
  border-color: var(--pink);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-aos] { transition-property: transform, opacity !important; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: span 2;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .diff-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .diff-left { text-align: center; }
  .diff-lead { max-width: 100%; }
  .diff-left .section-title { text-align: center; }
  .diff-left .btn { margin-left: auto; margin-right: auto; display: flex; width: fit-content; }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .step-connector { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .loc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(8,10,14,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 90px 28px 28px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    color: var(--white);
  }

  .nav-links li:last-child { border-bottom: none; padding-top: 16px; }

  .nav-toggle { display: flex; z-index: 1001; }

  .hero-headline { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.25rem; }
  .br-desk { display: none; }
  .hero-brand-logo { height: 40px; max-width: 260px; }
  .nav-logo-img { height: 28px; }
  .nav-symbol { width: 52px; height: 26px; }
  .nav-wordmark { font-size: 1.05rem; letter-spacing: 0.1em; }

  /* Floating buttons mobile */
  .floating-buttons {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .float-tooltip { display: none; }

  /* Navbar logo mobile */
  .nav-logo-img {
    height: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .gallery-item:nth-child(7),
  .gallery-item:nth-child(13) {
    grid-column: span 1;
  }

  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: span 1; max-width: 100%; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hybrid-inner { flex-direction: column; text-align: center; align-items: center; }

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

  .lightbox-container { flex-direction: column; max-width: 95vw; }
  .lb-img { max-width: 92vw; }
  .lb-prev, .lb-next { position: absolute; bottom: -60px; }
  .lb-prev { left: 30%; }
  .lb-next { right: 30%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .gallery-item { aspect-ratio: 4/3; }

  .hero-stats .stat-divider { display: none; }
  .stat-item { flex-direction: row; align-items: center; gap: 8px; }
}

/* ============================================
   PINK GLOW DECORATIONS
   ============================================ */
.galeria::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.processo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,45,120,0.4), transparent);
  pointer-events: none;
}

.processo { position: relative; }

/* ============================================
   IMAGE LOADING STATES
   ============================================ */
.gallery-img-wrap img {
  background: var(--dark-4);
  min-height: 200px;
}

.gallery-img-wrap img[src=""],
.gallery-img-wrap img:not([src]) {
  opacity: 0;
}

/* ============================================
   CURSOR CUSTOM (desktop only)
   ============================================ */
@media (pointer: fine) {
  .gallery-item {
    cursor: zoom-in;
  }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink-light); }

/* Selection */
::selection { background: rgba(255,45,120,0.3); color: var(--white); }

/* ============================================================
   IDENTIDADE VISUAL PREMIUM — Símbolo geométrico + Logo
   ============================================================ */

/* SVG do símbolo geométrico como marca d'água inline via CSS */
.section-symbol-bg {
  position: relative;
}
.section-symbol-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 208 100'%3E%3Crect x='0' y='0' width='100' height='20' fill='%23ffffff'/%3E%3Crect x='0' y='80' width='100' height='20' fill='%23ffffff'/%3E%3Cpolygon points='80,20 100,20 20,80 0,80' fill='%23ffffff'/%3E%3Crect x='0' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='76' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='0' y='56' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='76' y='56' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='108' y='0' width='100' height='20' fill='%23ffffff'/%3E%3Crect x='108' y='80' width='100' height='20' fill='%23ffffff'/%3E%3Cpolygon points='188,20 208,20 128,80 108,80' fill='%23ffffff'/%3E%3Crect x='108' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='184' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='108' y='56' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='184' y='56' width='24' height='24' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* Aplicar marca d'água nas seções-chave */
.galeria,
.servicos,
.processo {
  position: relative;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 208 100'%3E%3Crect x='0' y='0' width='100' height='20' fill='%23ffffff'/%3E%3Crect x='0' y='80' width='100' height='20' fill='%23ffffff'/%3E%3Cpolygon points='80,20 100,20 20,80 0,80' fill='%23ffffff'/%3E%3Crect x='0' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='76' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='0' y='56' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='76' y='56' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='108' y='0' width='100' height='20' fill='%23ffffff'/%3E%3Crect x='108' y='80' width='100' height='20' fill='%23ffffff'/%3E%3Cpolygon points='188,20 208,20 128,80 108,80' fill='%23ffffff'/%3E%3Crect x='108' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='184' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='108' y='56' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='184' y='56' width='24' height='24' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Garantir que conteúdo dos filhos fique sobre a marca d'água */
.servicos > .container,
.processo > .container {
  position: relative;
  z-index: 1;
}

/* ---- Símbolo no footer ---- */
.footer-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 0.75rem;
}
.footer-symbol svg {
  width: 28px;
  height: 28px;
  opacity: 0.5;
  transition: opacity var(--trans);
}
.footer-symbol:hover svg { opacity: 0.85; }

/* ---- Divisor de seção com símbolo ---- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 3rem;
  max-width: 300px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,45,120,0.4));
}
.section-divider::after {
  background: linear-gradient(90deg, rgba(255,45,120,0.4), transparent);
}
.section-divider-icon {
  width: 48px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ---- Tratamento premium hero logo ---- */
.hero-brand-logo {
  filter: drop-shadow(0 2px 20px rgba(255,255,255,0.18)) drop-shadow(0 0 40px rgba(255,45,120,0.12));
}

/* ---- Navbar logo refinada ---- */
.nav-logo-img {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.08));
  transition: filter var(--trans), opacity var(--trans);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.22));
  opacity: 1;
}

/* ---- Cards de serviço — símbolo sutil no hover ---- */
.service-card {
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 208 100'%3E%3Crect x='0' y='0' width='100' height='20' fill='%23FF2D78'/%3E%3Crect x='0' y='80' width='100' height='20' fill='%23FF2D78'/%3E%3Cpolygon points='80,20 100,20 20,80 0,80' fill='%23FF2D78'/%3E%3Crect x='0' y='20' width='24' height='24' fill='%23FF2D78'/%3E%3Crect x='76' y='20' width='24' height='24' fill='%23FF2D78'/%3E%3Crect x='0' y='56' width='24' height='24' fill='%23FF2D78'/%3E%3Crect x='76' y='56' width='24' height='24' fill='%23FF2D78'/%3E%3Crect x='108' y='0' width='100' height='20' fill='%23FF2D78'/%3E%3Crect x='108' y='80' width='100' height='20' fill='%23FF2D78'/%3E%3Cpolygon points='188,20 208,20 128,80 108,80' fill='%23FF2D78'/%3E%3Crect x='108' y='20' width='24' height='24' fill='%23FF2D78'/%3E%3Crect x='184' y='20' width='24' height='24' fill='%23FF2D78'/%3E%3Crect x='108' y='56' width='24' height='24' fill='%23FF2D78'/%3E%3Crect x='184' y='56' width='24' height='24' fill='%23FF2D78'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: rotate(15deg) scale(0.8);
  pointer-events: none;
}
.service-card:hover::after {
  opacity: 0.07;
  transform: rotate(0deg) scale(1);
}

/* ---- Galeria container refinado ---- */
.gallery-grid {
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

/* ---- Overlay mais elegante ---- */
.gallery-overlay {
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 40%,
    rgba(8,10,14,0.6) 70%,
    rgba(8,10,14,0.95) 100%
  );
  padding: 20px;
}

/* ---- Section header centralizado com divisor ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-desc {
  margin: 0.75rem auto 0;
}

/* ---- Processo steps refinados ---- */
.step-item {
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* ---- CTA final com símbolo ---- */
.cta-content {
  position: relative;
}
.cta-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 208 100'%3E%3Crect x='0' y='0' width='100' height='20' fill='%23ffffff'/%3E%3Crect x='0' y='80' width='100' height='20' fill='%23ffffff'/%3E%3Cpolygon points='80,20 100,20 20,80 0,80' fill='%23ffffff'/%3E%3Crect x='0' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='76' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='0' y='56' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='76' y='56' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='108' y='0' width='100' height='20' fill='%23ffffff'/%3E%3Crect x='108' y='80' width='100' height='20' fill='%23ffffff'/%3E%3Cpolygon points='188,20 208,20 128,80 108,80' fill='%23ffffff'/%3E%3Crect x='108' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='184' y='20' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='108' y='56' width='24' height='24' fill='%23ffffff'/%3E%3Crect x='184' y='56' width='24' height='24' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* ---- Imagem de fundo da seção diferenciais — tratamento premium ---- */
.diff-bg-img {
  filter: contrast(1.1) saturate(0.75) brightness(0.85) hue-rotate(-5deg);
}

/* ---- Imagem CTA final — tratamento premium ---- */
.cta-bg-img {
  filter: contrast(1.15) saturate(0.7) brightness(0.8) hue-rotate(-8deg);
}
