/* =====================================================
   MORIAH DIGITAL — Design System
   agenciamktmoriah.com.br
===================================================== */

:root {
  --navy:       #0D1B3E;
  --navy-h:     #152E62;
  --navy-light: #E4EDF7;
  --gold:       #C89A38;
  --gold-h:     #D4AE60;
  --gold-light: #F5EDD6;
  --white-warm: #FAFAF8;
  --gray:       #5C6580;
  --border:     #C2CAD8;
  --text:       #1A1A2E;
  --dark-bg:    #07102A;

  --font:    'Raleway', sans-serif;
  --nav-h:   80px;
  --max-w:   1200px;
  --radius:  12px;
  --ease:    cubic-bezier(.4,0,.2,1);

  --shadow:    0 4px 24px rgba(13,27,62,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,.18);
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--white-warm);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font);
  font-size: 1rem;
}

/* ── TIPOGRAFIA ─────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.18; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 600; }
p  { line-height: 1.75; color: var(--gray); }

.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: #fff; }

/* ── LAYOUT ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section        { padding: 96px 0; }
.section--sm    { padding: 64px 0; }
.section--navy  { background: var(--navy); }
.section--light { background: var(--navy-light); }
.section--dark  { background: var(--dark-bg); }

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(200,154,56,.35);
  border-radius: 100px;
}

.section__header            { max-width: 640px; margin-bottom: 56px; }
.section__header--center    { text-align: center; margin-left: auto; margin-right: auto; }
.section__header h2         { margin-bottom: 16px; }

.section--navy .section__header h2,
.section--navy h2           { color: #fff; }
.section--navy p            { color: rgba(255,255,255,.68); }
.section--navy .section__tag { border-color: rgba(200,154,56,.4); }

.section__cta { text-align: center; margin-top: 48px; }

/* ── BOTÕES ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: .4px;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200,154,56,.35);
}
.btn--gold:hover {
  background: var(--gold-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,154,56,.45);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover {
  background: var(--navy-h);
  transform: translateY(-2px);
}

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

.btn--outline-white {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--gold-light); }

.btn--lg   { padding: 18px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── NAV ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
  background: transparent;
}
.nav--scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo svg { height: 38px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links {
  display: flex;
  align-items: center;
}
.nav__item { position: relative; }

.nav__link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: 7px;
  transition: color .2s, background .2s;
  letter-spacing: .2px;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.08); }

.nav__link--caret::after {
  content: ' ▾';
  font-size: 0.65rem;
  opacity: .7;
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all .22s var(--ease);
  z-index: 100;
  border: 1px solid var(--border);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: background .15s;
}
.nav__dropdown a:hover { background: var(--navy-light); }
.nav__dropdown a .dd-icon {
  width: 30px; height: 30px;
  background: var(--gold-light);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.nav__dropdown .dd-sep {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}
.nav__dropdown .dd-all {
  font-size: 0.78rem;
  color: var(--gold) !important;
  font-weight: 600 !important;
  justify-content: center;
}

.nav__cta { margin-left: 16px; padding: 10px 22px; }

/* Hamburguer */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.nav__hamburger:hover { background: rgba(255,255,255,.1); }
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--navy);
  z-index: 999;
  padding: calc(var(--nav-h) + 20px) 20px 40px;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu a, .mobile-menu button.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 13px 16px;
  border-radius: 10px;
  transition: all .2s;
  width: 100%;
  text-align: left;
  font-family: var(--font);
}
.mobile-menu a:hover, .mobile-menu button.m-link:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.mobile-sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 12px;
  margin-bottom: 4px;
}
.mobile-sub.open { display: flex; }
.mobile-sub a {
  font-size: 0.85rem;
  padding: 10px 14px;
  color: rgba(255,255,255,.6);
}

.mobile-sep { height: 1px; background: rgba(255,255,255,.08); margin: 8px 0; }

.mobile-cta { margin-top: 20px; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  backdrop-filter: blur(3px);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 50%, rgba(200,154,56,.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(21,46,98,.7) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 56px;
  padding-bottom: 80px;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 7px 16px;
  border: 1px solid rgba(200,154,56,.4);
  border-radius: 100px;
}
.hero__label-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

.hero__headline {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.14;
  margin-bottom: 24px;
}
.hero__headline .text-gold { color: var(--gold); }

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  line-height: 1.78;
  margin-bottom: 40px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero image */
.hero__image { position: relative; }

.hero__frame {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.hero__frame-border {
  position: absolute;
  inset: -3px;
  border-radius: 27px;
  background: linear-gradient(135deg, var(--gold) 0%, rgba(200,154,56,.3) 50%, var(--gold) 100%);
  z-index: 0;
}

.hero__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.hero__badge {
  position: absolute;
  bottom: 36px;
  left: -28px;
  z-index: 10;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 140px;
}
.hero__badge-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__badge-lbl {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hero__badge2 {
  position: absolute;
  top: 40px;
  right: -24px;
  z-index: 10;
  background: var(--gold);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}
.hero__badge2 strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(200,154,56,.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: .35; }
  50%       { opacity: 1; }
}

/* ── STATS ──────────────────────────────────────── */
.stats {
  background: var(--gold);
  padding: 52px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  text-align: center;
  padding: 8px 20px;
  position: relative;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.28);
}

.stats__number {
  display: block;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stats__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ── PROBLEMA / SOLUÇÃO ─────────────────────────── */
.problema__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.problema__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.problema__item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.problema__icon {
  width: 44px; height: 44px;
  background: var(--navy-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.problema__item h3 { font-size: 0.95rem; margin-bottom: 6px; }
.problema__item p  { font-size: 0.845rem; line-height: 1.6; }

.solucao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

.solucao__content h2 { margin-bottom: 18px; }
.solucao__content p  { font-size: 1.02rem; margin-bottom: 28px; }

.solucao__pillars {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}
.solucao__pillar {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.solucao__pillar-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.solucao__image { position: relative; }
.solucao__image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.solucao__deco {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 55%; height: 55%;
  background: var(--gold-light);
  border-radius: 20px;
  z-index: 1;
}

/* ── SERVIÇOS ───────────────────────────────────── */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.servico-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.servico-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.servico-card:hover::after { transform: scaleX(1); }

.servico-card__icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: background .3s;
}
.servico-card:hover .servico-card__icon { background: var(--gold); }

.servico-card__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.servico-card__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 16px;
}
.servico-card__price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.servico-card__price::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  opacity: .5;
}
.servico-card__link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, gap .2s;
}
.servico-card__link:hover { color: var(--gold); gap: 10px; }

/* ── PARA QUEM ──────────────────────────────────── */
.para-quem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.persona-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px 28px;
  text-align: center;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.persona-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.persona-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--navy);
}

.persona-card__emoji { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.persona-card__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.persona-card__desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 18px;
}
.persona-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.persona-card__link:hover { gap: 9px; }

/* ── PORTFÓLIO ──────────────────────────────────── */
.portfolio__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gray);
  background: #fff;
  border: 1px solid var(--border);
  transition: all .2s var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

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

.portfolio__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--navy-light);
  cursor: pointer;
}
.portfolio__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.portfolio__item:hover img { transform: scale(1.06); }

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.92) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .28s;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.portfolio__item:hover .portfolio__overlay { opacity: 1; }

.portfolio__item-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.portfolio__item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.portfolio__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 2.2rem;
}
.portfolio__placeholder-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  padding: 0 16px;
}

/* ── DEPOIMENTOS ────────────────────────────────── */
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.depoimento-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.depoimento-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(200,154,56,.45);
  transform: translateY(-4px);
}

.depoimento-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.depoimento-card__text {
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(255,255,255,.75);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}
.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depoimento-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.depoimento-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.depoimento-card__role {
  font-size: 0.75rem;
  color: rgba(255,255,255,.45);
}

/* ── SOBRE ──────────────────────────────────────── */
.sobre__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre__image {
  position: relative;
}
.sobre__image img {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.sobre__image-deco {
  position: absolute;
  top: -18px; left: -18px;
  width: 58%; height: 50%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: 1;
  opacity: .45;
}

.sobre__text .section__tag { margin-bottom: 8px; }
.sobre__text h2 { margin-bottom: 16px; }
.sobre__text p  { margin-bottom: 18px; font-size: 1rem; }

.sobre__bullets {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 26px 0;
}
.sobre__bullet {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.sobre__bullet-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.sobre__divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.sobre__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.sobre__stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.sobre__stat-label {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray);
}

/* ── CTA FINAL ──────────────────────────────────── */
.cta-final {
  background: var(--navy);
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,154,56,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 {
  color: #fff;
  max-width: 640px;
  margin: 0 auto 18px;
}
.cta-final p {
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}
.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-final__note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--dark-bg);
  padding: 72px 0 32px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 30px;
}

.footer__tagline {
  font-size: 0.86rem;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
  max-width: 250px;
  margin: 14px 0 22px;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all .2s;
  letter-spacing: 0;
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 9px; }
.footer__col-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer__col-links a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,.28); }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.28);
  transition: color .2s;
}
.footer__legal a:hover { color: rgba(255,255,255,.55); }

/* ── ANIMAÇÕES ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible     { opacity: 1; transform: translateY(0); }
.fade-up.d1          { transition-delay: .1s; }
.fade-up.d2          { transition-delay: .2s; }
.fade-up.d3          { transition-delay: .3s; }
.fade-up.d4          { transition-delay: .4s; }
.fade-up.d5          { transition-delay: .5s; }

/* ── UTILITÁRIOS ────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── RESPONSIVO ─────────────────────────────────── */
@media (max-width: 1024px) {
  .para-quem__grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__main       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__badge        { left: -10px; }
  .hero__badge2       { right: -10px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 64px 0; }

  .nav__menu      { display: none; }
  .nav__hamburger { display: flex; }

  .hero .container { padding-top: 40px; padding-bottom: 64px; }
  .hero__content   {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero__actions   { justify-content: center; }
  .hero__image     { order: -1; }
  .hero__frame     { max-width: 280px; }
  .hero__badge     { left: 0; bottom: 20px; }
  .hero__badge2    { right: 0; top: 20px; }

  .stats__grid     { grid-template-columns: repeat(2, 1fr); }
  .stats__item + .stats__item::before { display: none; }
  .stats__item     { border-bottom: 1px solid rgba(255,255,255,.15); padding: 20px; }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4) { border-bottom: none; }

  .problema__grid  { grid-template-columns: 1fr; }
  .solucao         { grid-template-columns: 1fr; gap: 40px; }
  .solucao__image  { display: none; }

  .servicos__grid  { grid-template-columns: 1fr; }
  .para-quem__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos__grid { grid-template-columns: 1fr; }

  .sobre__content  { grid-template-columns: 1fr; gap: 0; }
  .sobre__image    { display: none; }
  .sobre__stats    { gap: 24px; }
}

@media (max-width: 480px) {
  .hero__headline       { font-size: 2rem; }
  .para-quem__grid      { grid-template-columns: 1fr; }
  .portfolio__grid      { grid-template-columns: 1fr; }
  .footer__main         { grid-template-columns: 1fr; }
  .footer__bottom       { flex-direction: column; text-align: center; }
  .cta-final__actions   { flex-direction: column; align-items: center; }
  .btn--lg              { padding: 16px 28px; }
}
