/* ======================================================
   MICHELLE RIGOPOULOS — main.css v2.0 (consolidado)
====================================================== */

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

:root {
  --cream: #f5f2ed;
  --cream2: #ede9e2;
  --warm-white: #faf8f5;
  --dark: #1a1814;
  --dark2: #2a2620;
  --gold: #b89a6a;
  --gold-light: #d4b88a;
  --text: #3a3530;
  --text-light: #7a736a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
  --navbar-h: 80px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ======================================================
   NAVBAR
====================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0 5%;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26,24,20,.97);
  transition: background .4s ease, box-shadow .4s ease;
}
/* Só na home a navbar começa transparente */
.home .navbar {
  background: rgba(26,24,20,.6);
}
.navbar.scrolled {
  background: rgba(26,24,20,.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(0,0,0,.2);
}

/* Logo */
.nav-logo {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  cursor: pointer;
}
.logo-mr {
  font-family: var(--serif) !important;
  font-weight: 300 !important;
  font-size: 20px !important;
  letter-spacing: .28em !important;
  color: #fff !important;
  line-height: 1 !important;
  display: block !important;
  text-transform: uppercase !important;
}
.logo-name {
  font-family: var(--serif) !important;
  font-weight: 300 !important;
  font-size: 7px !important;
  letter-spacing: .45em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.55) !important;
  line-height: 1 !important;
  display: block !important;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links > li > a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-links > li > a:hover { color: var(--gold-light) !important; }
.nav-links > li > a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-sub {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,24,20,.98);
  list-style: none;
  min-width: 240px;
  padding: 8px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
  z-index: 9999;
}
/* Ponte invisível para não fechar ao mover o mouse */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px; right: -20px;
  height: 16px;
}
.nav-dropdown:hover .nav-sub { display: block; }
.nav-sub:hover { display: block; }
.nav-sub li a {
  display: block;
  padding: 11px 24px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65) !important;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  white-space: nowrap;
}
.nav-sub li a::after { display: none !important; }
.nav-sub li a:hover { color: var(--gold) !important; padding-left: 32px; }

.nav-cta {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark) !important;
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  transition: background .3s;
}
.nav-cta:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: #fff;
  transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ======================================================
   HERO HOME
====================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1814 0%, #2e2820 40%, #1a1814 100%);
}
.hero-img-area {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,24,20,.82) 0%, rgba(26,24,20,.55) 45%, rgba(26,24,20,.18) 100%);
  z-index: 1;
}
.hero-img-area img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  animation: kenBurns 14s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translateX(0) translateY(0); }
  100% { transform: scale(1.08) translateX(-2%) translateY(-1%); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 10vh;
  max-width: 680px;
}
.hero-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .95;
  color: #fff;
  margin-bottom: 32px;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .12em;
  line-height: 1.9;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  right: 5%; bottom: 10vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-size: 8px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .5; }
}

/* ======================================================
   BUTTONS
====================================================== */
.btn-primary {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 32px;
  text-decoration: none;
  display: inline-block;
  transition: background .3s, transform .3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .3s;
}
.btn-ghost::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: currentColor;
  transition: width .3s;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost:hover::after { width: 50px; }
.btn-submit {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  transition: background .3s, transform .3s;
  align-self: flex-start;
  margin-top: 12px;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ======================================================
   SECTION SHARED
====================================================== */
.section-tag {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 1;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ======================================================
   NUMBERS BAR
====================================================== */
.numbers-bar {
  background: var(--dark2);
  padding: 52px 5%;
  display: flex;
  justify-content: center;
  gap: clamp(40px, 6vw, 100px);
  flex-wrap: wrap;
}
.num-item { text-align: center; }
.num-value {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.num-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 8px;
}

/* ======================================================
   SOBRE
====================================================== */
.sobre {
  padding: 120px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #ffffff;
}
.sobre-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  margin: 28px 0;
}
.sobre-text-small {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .06em;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 40px;
}
.sobre-creds { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.sobre-cred {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.sobre-cred::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.sobre-img-frame {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  background: transparent;
  overflow: hidden;
}
.sobre-img-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.sobre-quote {
  position: absolute;
  bottom: -30px; left: -30px;
  background: var(--dark);
  padding: 28px 32px;
  max-width: 280px;
}
.sobre-quote p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.sobre-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.sobre-right { position: relative; }

/* ======================================================
   SERVIÇOS ACCORDION
====================================================== */
.servicos { background: var(--cream); padding: 120px 5%; }
.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  flex-wrap: wrap;
  gap: 24px;
}
.servicos-header-right {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .08em;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 360px;
}
.servicos-accordion { border-top: 1px solid rgba(0,0,0,.08); }
.accordion-item { border-bottom: 1px solid rgba(0,0,0,.08); overflow: hidden; }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}
.accordion-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  color: var(--gold);
  min-width: 36px;
}
.accordion-title {
  flex: 1;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--dark);
  transition: color .3s;
}
.accordion-item.open .accordion-title { color: var(--gold); }
.accordion-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.accordion-item.open .accordion-icon { background: var(--gold); border-color: var(--gold); }
.accordion-icon svg { width: 14px; height: 14px; transition: transform .4s; }
.accordion-item.open .accordion-icon svg { transform: rotate(45deg); }
.accordion-item.open .accordion-icon svg path { stroke: var(--dark); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.accordion-body-inner {
  padding: 0 0 48px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.accordion-desc {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
}
.accordion-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.accordion-list li {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}
.accordion-list li::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ======================================================
   NEUROARQUITETURA
====================================================== */
.neuro {
  background: var(--dark);
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}
.neuro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.neuro-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-bottom: 32px;
}
.neuro-title em { font-style: italic; color: var(--gold); }
.neuro-phrase {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 48px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.neuro-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.neuro-pillar {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s;
}
.neuro-pillar:hover { border-color: rgba(184,154,106,.3); }
.neuro-pillar-icon {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  opacity: .6;
  margin-bottom: 12px;
  line-height: 1;
}
.neuro-pillar-title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
}
.neuro-pillar-text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
}
.neuro-senses { display: flex; flex-direction: column; gap: 1px; }
.neuro-sense {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(255,255,255,.03);
  transition: background .3s;
}
.neuro-sense:hover { background: rgba(255,255,255,.06); }
.neuro-sense-num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  color: var(--gold);
  min-width: 24px;
}
.neuro-sense-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  flex: 1;
  transition: color .3s;
}
.neuro-sense:hover .neuro-sense-name { color: rgba(255,255,255,.95); }
.neuro-sense-desc {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: right;
  max-width: 140px;
}

/* ======================================================
   SENSE IT
====================================================== */
.senseit { background: var(--cream2); overflow: hidden; }
.senseit-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.senseit-img {
  position: relative;
  background: var(--dark2);
  overflow: hidden;
}
.senseit-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .85;
}
.senseit-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,24,20,.3) 0%, rgba(26,24,20,.6) 100%);
  z-index: 1;
}
.senseit-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.senseit-eyebrow {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.senseit-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.senseit-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 12px;
}
.senseit-title em { font-style: italic; display: block; color: var(--gold); }
.senseit-subtitle {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}
.senseit-desc {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 36px;
}
.senseit-phrase {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  margin-bottom: 40px;
}
.senseit-brands { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.senseit-brand {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 7px 14px;
  border: 1px solid rgba(0,0,0,.1);
  transition: border-color .3s, color .3s;
}
.senseit-brand:hover { border-color: var(--gold); color: var(--gold); }

/* ======================================================
   CASES — HOME GRID
====================================================== */
.cases { background: var(--warm-white); padding: 120px 5%; }
.cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; flex-wrap: wrap; gap: 24px; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 480px 380px 380px;
  gap: 3px;
}
.case-item {
  position: relative;
  background: var(--cream2);
  overflow: hidden;
  cursor: pointer;
}
.case-item:nth-child(1) { grid-column: span 2; }
.case-item:nth-child(6) { grid-column: span 2; }
.case-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform .6s ease;
}
.case-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}
.case-bg img:first-child { opacity: .82; }
.case-bg img.active { opacity: .82; }
.case-bg img:not(.active):not(:first-child) { opacity: 0; }
.case-item:hover .case-bg { transform: scale(1.04); }
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.05) 55%);
  z-index: 1;
}
.case-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  z-index: 2;
}
.case-category {
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.case-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}
.case-location {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
}

/* ======================================================
   PROJETOS — MOSAICO (página /projetos)
====================================================== */
.projetos-page { padding-top: var(--navbar-h); }
.projetos-page-header {
  background: var(--dark);
  padding: 100px 5% 80px;
  text-align: center;
}
.projetos-page-header .section-title { color: #fff; }
.projetos-page-header .section-tag { justify-content: center; }
.projetos-page-header .section-tag::before { display: none; }
.projetos-mosaico {
  background: var(--dark2);
  padding: 3px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 400px;
  gap: 3px;
}
.projeto-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  height: 400px;
}
/* Destaque — span 2 */
.projeto-card.destaque {
  grid-column: span 2;
  height: 500px;
}
.projeto-card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--dark);
}
.projeto-card-bg img,
.projeto-card-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.projeto-card:hover .projeto-card-bg img,
.projeto-card:hover .projeto-card-bg video { transform: scale(1.05); }
.projeto-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.1) 55%);
  transition: background .4s ease;
  z-index: 1;
}
.projeto-card:hover .projeto-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 55%);
}
.projeto-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  z-index: 2;
}
.projeto-card-cat {
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.projeto-card-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  display: block;
}
.projeto-card-loc {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
  display: block;
}
.projeto-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  opacity: 0;
  transition: opacity .3s ease;
}
.projeto-card:hover .projeto-card-arrow { opacity: 1; }
.projeto-card-arrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}

/* Vídeo — overlay escuro como fallback */
.projeto-card-bg-video {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1814 0%, #2a2218 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.projeto-card-bg-video::after {
  content: '▶';
  font-size: 48px;
  color: rgba(255,255,255,.15);
}
.projeto-card-bg-video video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .7;
}

@media (max-width: 960px) {
  .projetos-mosaico { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .projeto-card { height: 300px; }
  .projeto-card.destaque { grid-column: span 2; height: 360px; }
}
@media (max-width: 600px) {
  .projetos-mosaico { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .projeto-card { height: 280px; }
  .projeto-card.destaque { grid-column: span 1; height: 280px; }
}

/* ======================================================
   MENTORIAS
====================================================== */
.mentorias { background: var(--dark); padding: 120px 5%; }
.mentorias-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mentorias-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 28px;
}
.mentorias-title em { font-style: italic; color: var(--gold); }
.mentorias-desc {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 48px;
}
.mentorias-topics { display: flex; flex-direction: column; }
.mentoria-topic {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .3s;
}
.mentoria-topic:hover { color: rgba(255,255,255,.95); }
.mentoria-topic::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .8;
  flex-shrink: 0;
  transition: opacity .3s, width .3s;
}
.mentoria-topic:hover::before { opacity: 1; width: 40px; }
.mentorias-visual { position: relative; overflow: hidden; border-radius: 2px; }
.mentorias-visual video {
  width: 100%; height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  opacity: .85;
}

/* ======================================================
   CONTATO
====================================================== */
.contato { background: var(--cream); padding: 120px 5%; }
.contato-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contato-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 32px;
}
.contato-title em { font-style: italic; color: var(--gold); }
.contato-desc {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 48px;
}
.contato-info { display: flex; flex-direction: column; gap: 28px; margin-bottom: 48px; }
.contato-info-item { display: flex; flex-direction: column; gap: 6px; }
.contato-info-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.contato-info-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--dark);
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-input, .form-select, .form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.15);
  padding: 12px 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color .3s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--gold); }
.form-textarea { resize: none; height: 100px; }
.form-select { cursor: pointer; }

/* ======================================================
   FOOTER
====================================================== */
.footer,
body .footer,
.site-footer {
  background: var(--dark) !important;
  padding: 72px 5% 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 40px;
}
.footer-desc {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  margin-top: 20px;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-contact-item {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  line-height: 2;
}
.footer-contact-item a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .3s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-family: var(--sans); font-size: 9px; font-weight: 300; letter-spacing: .1em; color: rgba(255,255,255,.2); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { font-family: var(--sans); font-size: 8px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.25); text-decoration: none; transition: color .3s; }
.footer-socials a:hover { color: var(--gold); }

/* WhatsApp */
.wa-wrap { position: fixed; right: 28px; bottom: 28px; z-index: 9998; }
.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,.35); }
.wa-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* ======================================================
   PÁGINAS INTERNAS — Hero
====================================================== */

/* Offset da navbar em todas as páginas internas */
.page-servico,
.page-case,
.projetos-page {
  padding-top: 0;
}

/* Hero padrão (foto fullscreen) */
.page-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: var(--navbar-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-hero-bg img,
.page-hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,24,20,.88) 0%, rgba(26,24,20,.55) 50%, rgba(26,24,20,.22) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 80px;
  max-width: 700px;
}
.page-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .95;
  color: #fff;
  margin: 16px 0 24px;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .12em;
  line-height: 1.9;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}

/* Hero split (vídeo + texto lado a lado) */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--navbar-h));
  margin-top: var(--navbar-h);
  overflow: hidden;
}
.page-hero-split-content {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5%;
}
.page-hero-split-content .section-tag { margin-bottom: 24px; }
.page-hero-split-media {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.page-hero-split-media video,
.page-hero-split-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ======================================================
   PÁGINAS INTERNAS — Intro, Senses, Cases, CTA
====================================================== */
.page-intro {
  background: #faf8f5;
  padding: 100px 5%;
}
.page-intro-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.page-intro-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 24px;
}
.page-intro-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .06em;
  line-height: 2;
  color: var(--text-light);
}

.page-senses { background: var(--cream); padding: 100px 5%; }
.page-senses-header { text-align: center; margin-bottom: 64px; }
.page-senses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.sense-card {
  background: #faf8f5;
  padding: 48px 36px;
  transition: background .3s;
}
.sense-card:hover { background: #fff; }
.sense-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .22em;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  opacity: .8;
}
.sense-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
}
.sense-card p {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .05em;
  line-height: 1.9;
  color: var(--text-light);
}

.page-cases { background: var(--dark); padding: 100px 5%; }
.page-cases-header { margin-bottom: 64px; }
.page-cases-header .section-title { color: #fff; }
.page-cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.page-case-item { position: relative; display: block; text-decoration: none; overflow: hidden; cursor: pointer; }
.page-case-img { height: 400px; overflow: hidden; }
.page-case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.page-case-item:hover .page-case-img img { transform: scale(1.05); }
.page-case-info { background: rgba(26,24,20,.95); padding: 28px 32px; transition: background .3s; }
.page-case-item:hover .page-case-info { background: var(--dark2); }
.page-case-cat { font-family: var(--sans); font-size: 8px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.page-case-info h3 { font-family: var(--serif); font-size: 28px; font-weight: 300; color: #fff; margin-bottom: 12px; }
.page-case-link { font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); transition: color .3s; }
.page-case-item:hover .page-case-link { color: var(--gold); }

.page-cta { background: var(--cream2); padding: 120px 5%; }
.page-cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.page-cta-inner h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 56px); font-weight: 300; color: var(--dark); line-height: 1.2; margin-bottom: 48px; }
.page-cta-inner h2 em { font-style: italic; color: var(--gold); }
.case-cta { background: var(--dark); padding: 120px 5%; }
.case-cta .page-cta-inner h2 { color: #fff; }

/* Case intro */
.case-intro { background: #faf8f5; padding: 80px 5%; }
.case-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.case-intro-text p { font-family: var(--serif); font-size: 20px; font-weight: 300; line-height: 1.75; color: var(--text); }
.case-intro-data { display: flex; flex-direction: column; gap: 24px; }
.case-data-item { display: flex; flex-direction: column; gap: 4px; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,.07); }
.case-data-label { font-family: var(--sans); font-size: 8px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.case-data-value { font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--dark); }

/* Case gallery */
.case-gallery { background: var(--dark2); padding: 3px; }
.case-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.case-gallery-item { height: 480px; overflow: hidden; }
.case-gallery-item.case-gallery-wide { grid-column: span 2; height: 600px; }
.case-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.case-gallery-item:hover img { transform: scale(1.03); }

/* Case senses */
.case-senses { background: var(--cream); padding: 100px 5%; }
.case-senses-header { text-align: center; margin-bottom: 64px; }

/* Page quote */
.page-quote { background: var(--dark); padding: 80px 5%; text-align: center; }
.page-quote blockquote { font-family: var(--serif); font-size: clamp(24px, 3vw, 40px); font-weight: 300; font-style: italic; color: rgba(255,255,255,.85); max-width: 800px; margin: 0 auto; line-height: 1.5; }
.page-quote cite { display: block; margin-top: 24px; font-family: var(--sans); font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .sobre { grid-template-columns: 1fr; }
  .sobre-quote { position: static; margin-top: 24px; }
  .neuro-grid { grid-template-columns: 1fr; }
  .senseit-inner { grid-template-columns: 1fr; }
  .senseit-img { min-height: 300px; }
  .cases-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .case-item { height: 280px; }
  .case-item:nth-child(1) { grid-column: span 2; height: 320px; }
  .case-item:nth-child(6) { grid-column: span 2; }
  .mentorias-inner { grid-template-columns: 1fr; }
  .contato-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .accordion-body-inner { grid-template-columns: 1fr; }
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-split-media { min-height: 400px; order: -1; }
  .page-cases-grid { grid-template-columns: 1fr; }
  .case-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .case-gallery-grid { grid-template-columns: 1fr; }
  .case-gallery-item.case-gallery-wide { grid-column: span 1; height: 360px; }
  .case-gallery-item { height: 300px; }
  .page-senses-grid { grid-template-columns: 1fr 1fr; }
  .projetos-mosaico { grid-template-columns: 1fr 1fr; }
  .projeto-card:nth-child(1),
  .projeto-card:nth-child(6),
  .projeto-card:nth-child(9) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .cases-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .case-item { height: 260px; }
  .case-item:nth-child(1) { grid-column: span 1; height: 260px; }
  .case-item:nth-child(6) { grid-column: span 1; }
  .page-senses-grid { grid-template-columns: 1fr; }
  .projetos-mosaico { grid-template-columns: 1fr; }
  .projeto-card:nth-child(n) { grid-column: span 1; height: 280px; }
  .page-hero { height: 70vh; }
  .numbers-bar { gap: 32px; }
}

/* ======================================================
   PÁGINA SOBRE
====================================================== */
.sobre-page-traj { background: var(--warm-white); padding: 120px 5%; }
.sobre-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.sobre-page-img {
  position: relative;
  padding-bottom: 120%;
  overflow: hidden;
}
.sobre-page-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.sobre-page-desc {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}
.sobre-page-creds {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.sobre-page-metodo { background: var(--cream); padding: 120px 5%; }
.sobre-page-metodo-inner { text-align: center; margin-bottom: 0; }

@media (max-width: 960px) {
  .sobre-page-inner { grid-template-columns: 1fr; }
}

/* ======================================================
   FLUENT FORMS — Estilo do tema
====================================================== */
.ff-el-input--content input,
.ff-el-input--content textarea,
.ff-el-input--content select {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,.15) !important;
  border-radius: 0 !important;
  padding: 12px 0 !important;
  font-family: var(--serif) !important;
  font-size: 17px !important;
  font-weight: 300 !important;
  color: var(--dark) !important;
  box-shadow: none !important;
  outline: none !important;
  width: 100% !important;
}
.ff-el-input--content input:focus,
.ff-el-input--content textarea:focus,
.ff-el-input--content select:focus {
  border-bottom-color: var(--gold) !important;
  box-shadow: none !important;
}
.ff-el-form-control-label {
  font-family: var(--sans) !important;
  font-size: 8px !important;
  font-weight: 500 !important;
  letter-spacing: .25em !important;
  text-transform: uppercase !important;
  color: var(--text-light) !important;
}
.ff_submit_btn_wrapper .ff-btn-submit {
  font-family: var(--sans) !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: var(--dark) !important;
  background: var(--gold) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 16px 32px !important;
  cursor: pointer !important;
  transition: background .3s !important;
  box-shadow: none !important;
}
.ff_submit_btn_wrapper .ff-btn-submit:hover {
  background: var(--gold-light) !important;
}
.ff-message-success {
  font-family: var(--serif) !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  color: var(--gold) !important;
  background: transparent !important;
  border: none !important;
  padding: 24px 0 !important;
}

/* Foto Sobre — mobile */
@media (max-width: 960px) {
  .sobre-img-frame {
    padding-bottom: 100%;
    max-height: 500px;
  }
  .sobre-img-frame img {
    object-position: center 15%;
  }
  .sobre-right {
    margin-bottom: 60px;
  }
  .sobre-quote {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
}

/* Foto sobre home — integra fundo branco */
.sobre-img-frame::after {
  display: none;
}

/* Mobile — remove vão branco entre foto e quote */
@media (max-width: 960px) {
  .sobre-img-frame {
    background: #fff;
    padding-bottom: 110%;
  }
  .sobre-img-frame img {
    object-position: center top;
  }
  .sobre-right {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
  }
  .sobre-quote {
    position: static !important;
    margin-top: 0 !important;
    max-width: 100% !important;
    bottom: auto !important;
    left: auto !important;
  }
}

/* Remove gap entre foto e quote no mobile */
@media (max-width: 960px) {
  .sobre-img-frame {
    padding-bottom: 0 !important;
    height: 520px !important;
    margin-bottom: 0 !important;
  }
  .sobre-quote {
    position: static !important;
    margin-top: 0 !important;
    left: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
  }
}

/* Hero — overlay mais claro, mesmo look dos cases */
.hero-img-area::before {
  background: linear-gradient(
    105deg,
    rgba(26,24,20,.52) 0%,
    rgba(26,24,20,.18) 50%,
    rgba(26,24,20,.04) 100%
  ) !important;
}