/*
Theme Name:  Multiverse
Theme URI:   https://multiverse.com.br
Author:      Multiverse Studio
Author URI:  https://multiverse.com.br
Description: Tema oficial da Multiverse — Estratégia & Design de Marcas. Dark editorial com Cormorant Garamond + DM Sans, animações suaves e arquitetura modular para WordPress.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: multiverse
Tags:        dark, editorial, branding, one-page, portfolio, custom-colors, custom-logo, featured-images, full-width-template, theme-options

This theme, like WordPress, is licensed under the GPL.
*/

/* ─── CSS CUSTOM PROPERTIES ──────────────────────────────────────────── */
:root {
  --mv-verde:      #28C9B2;
  --mv-verde-dark: #167D6F;
  --mv-verde-light:#7FE0D0;
  --mv-azul:       #1E3A5F;
  --mv-preto:      #121212;
  --mv-off:        #1A1A1A;
  --mv-roxo:       #6B4E9F;
  --mv-coral:      #F25C54;
  --mv-ambar:      #F9A826;
  --mv-cinza:      #9DA3A7;
  --mv-cinza-claro:#E6E8EA;
  --mv-cinza-medio:#9DA3A7;
  --mv-branco:     #ffffff;

  --mv-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --mv-sans:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --mv-radius: 0px;
  --mv-transition: 0.3s ease;
  --mv-shadow: 0 8px 48px rgba(0,0,0,0.4);
  --mv-section-pad: 120px 48px;
  --mv-section-pad-sm: 80px 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--mv-preto);
  color: var(--mv-cinza-claro);
  font-family: var(--mv-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--mv-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--mv-branco);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: clamp(18px, 2vw, 26px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin-bottom: 1.5rem; }
p:last-child { margin-bottom: 0; }

em, i { font-style: italic; }
strong, b { font-weight: 500; color: var(--mv-branco); }

a {
  color: var(--mv-verde);
  text-decoration: none;
  transition: color var(--mv-transition);
}
a:hover { color: var(--mv-verde-light); }

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

/* ─── LAYOUT ─────────────────────────────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: var(--mv-section-pad);
}

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

.text-verde    { color: var(--mv-verde); }
.text-cinza    { color: var(--mv-cinza); }
.text-white    { color: var(--mv-branco); }
.text-serif    { font-family: var(--mv-serif); }
.text-italic   { font-style: italic; }

.bg-preto  { background-color: var(--mv-preto); }
.bg-off    { background-color: var(--mv-off); }
.bg-azul   { background-color: var(--mv-azul); }

/* ─── SECTION LABELS ─────────────────────────────────────────────────── */
.section-label {
  font-family: var(--mv-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mv-verde);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--mv-verde);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn,
button,
input[type="submit"],
input[type="button"] {
  font-family: var(--mv-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: all var(--mv-transition);
  border: none;
  outline: none;
  text-decoration: none;
}

.btn-primary {
  color: var(--mv-preto);
  background: var(--mv-verde);
  padding: 16px 36px;
}
.btn-primary:hover {
  background: var(--mv-verde-dark);
  color: var(--mv-branco);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--mv-cinza);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 32px;
}
.btn-ghost:hover {
  border-color: var(--mv-verde);
  color: var(--mv-branco);
  background: rgba(40,201,178,0.06);
}

.btn-link {
  color: var(--mv-cinza);
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-link::after { content: '→'; transition: transform 0.25s; }
.btn-link:hover  { color: var(--mv-branco); }
.btn-link:hover::after { transform: translateX(4px); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────────── */
.mv-cursor {
  width: 8px;
  height: 8px;
  background: var(--mv-verde);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.mv-cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(40,201,178,0.35);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s, height 0.2s, border-color 0.2s;
  transform: translate(-50%, -50%);
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: linear-gradient(to bottom, rgba(18,18,18,0.95) 0%, transparent 100%);
  transition: background 0.4s, padding 0.4s;
}
#site-header.scrolled {
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-logo img {
  height: 22px;
  width: auto;
  opacity: 0.95;
}
.site-logo:hover { opacity: 1; }

#primary-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
#primary-nav a {
  font-family: var(--mv-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mv-cinza);
  text-decoration: none;
  transition: color 0.25s;
}
#primary-nav a:hover,
#primary-nav .current-menu-item > a,
#primary-nav .current_page_item > a {
  color: var(--mv-verde);
}

.header-cta {
  font-family: var(--mv-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mv-preto);
  background: var(--mv-verde);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.header-cta:hover {
  background: var(--mv-verde-dark);
  color: var(--mv-branco);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--mv-cinza);
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu */
#mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,18,18,0.99);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
#mobile-nav.open { display: flex; }
#mobile-nav ul { list-style: none; text-align: center; }
#mobile-nav li { margin-bottom: 8px; }
#mobile-nav a {
  font-family: var(--mv-serif);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.25s;
}
#mobile-nav a:hover { color: var(--mv-verde); }
#mobile-nav-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 24px;
  color: var(--mv-cinza);
  cursor: pointer;
  background: none;
  border: none;
}

/* ─── HERO ───────────────────────────────────────────────────────────── */
.mv-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}
.mv-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(30,58,95,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(107,78,159,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 85% 85%, rgba(40,201,178,0.06) 0%, transparent 55%);
  z-index: 0;
}
.mv-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
.mv-hero__line {
  position: absolute;
  top: 0; right: 48px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(40,201,178,0.2) 40%, transparent 100%);
  z-index: 0;
}
.mv-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.mv-hero__eyebrow {
  font-family: var(--mv-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mv-verde);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}
.mv-hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--mv-verde);
  opacity: 0.6;
  flex-shrink: 0;
}
.mv-hero__fixed {
  font-family: var(--mv-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--mv-branco);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}
.mv-hero__rotating-wrap {
  height: clamp(70px, 9vw, 115px);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}
.mv-hero__rotating {
  font-family: var(--mv-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  font-style: italic;
  color: var(--mv-verde);
  line-height: 1.08;
  letter-spacing: -0.01em;
  display: block;
  transition: transform 0.7s cubic-bezier(0.77,0,0.18,1), opacity 0.5s ease;
}
.mv-hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--mv-cinza);
  max-width: 480px;
  margin-top: 40px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.mv-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.mv-hero__scroll {
  position: absolute;
  bottom: 48px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.mv-hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mv-cinza);
  writing-mode: vertical-rl;
}
.mv-hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--mv-verde), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── SOBRE ──────────────────────────────────────────────────────────── */
.mv-sobre {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mv-sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mv-sobre__title {
  font-family: var(--mv-serif);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--mv-branco);
  margin-bottom: 0;
}
.mv-sobre__title em { font-style: italic; color: var(--mv-verde); }
.mv-sobre__p {
  font-size: 17px;
  font-weight: 300;
  color: #bbb;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* ─── FILOSOFIA ──────────────────────────────────────────────────────── */
.mv-filosofia {
  background: var(--mv-off);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mv-filosofia__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(30,58,95,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.mv-filosofia__content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.mv-filosofia__quote {
  font-family: var(--mv-serif);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--mv-branco);
  margin-bottom: 48px;
}
.mv-filosofia__quote em { font-style: italic; color: var(--mv-verde); }
.mv-filosofia__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 72px;
  text-align: left;
}
.mv-filosofia__item {
  background: var(--mv-off);
  padding: 40px 36px;
  transition: background 0.3s;
}
.mv-filosofia__item:hover { background: rgba(40,201,178,0.04); }
.mv-filosofia__num {
  font-family: var(--mv-serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 16px;
}
.mv-filosofia__item-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mv-verde);
  margin-bottom: 14px;
  font-family: var(--mv-sans);
}
.mv-filosofia__item p {
  font-size: 15px;
  color: var(--mv-cinza);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── SERVIÇOS ───────────────────────────────────────────────────────── */
.mv-servicos__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.mv-servicos__header p {
  font-size: 17px;
  color: var(--mv-cinza);
  line-height: 1.8;
  font-weight: 300;
}
.mv-servicos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.mv-servico {
  background: var(--mv-preto);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.mv-servico::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--mv-verde);
  transition: height 0.4s ease;
}
.mv-servico:hover { background: rgba(40,201,178,0.03); }
.mv-servico:hover::before { height: 100%; }
.mv-servico__num {
  font-family: var(--mv-serif);
  font-size: 13px;
  color: rgba(255,255,255,0.18);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}
.mv-servico__title {
  font-family: var(--mv-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--mv-branco);
  margin-bottom: 16px;
  line-height: 1.2;
}
.mv-servico__desc {
  font-size: 14px;
  color: var(--mv-cinza);
  line-height: 1.8;
  font-weight: 300;
  max-width: 360px;
}

/* ─── PORTFÓLIO ──────────────────────────────────────────────────────── */
.mv-portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.mv-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mv-portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1e1e1e;
}
.mv-portfolio-item.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.mv-portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
  filter: brightness(0.75) saturate(0.9);
}
.mv-portfolio-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.65) saturate(1.1);
}
.mv-portfolio-item__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.mv-portfolio-item:hover .mv-portfolio-item__info { transform: translateY(0); }
.mv-portfolio-item__tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mv-verde);
  margin-bottom: 6px;
}
.mv-portfolio-item__title {
  font-family: var(--mv-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--mv-branco);
}

/* ─── INVERSO LAB ────────────────────────────────────────────────────── */
.mv-inverso {
  background: var(--mv-azul);
  position: relative;
  overflow: hidden;
}
.mv-inverso__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(107,78,159,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(40,201,178,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.mv-inverso__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mv-inverso__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mv-inverso__label::before {
  content: '';
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.mv-inverso__title {
  font-family: var(--mv-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: var(--mv-branco);
  line-height: 1.08;
  margin-bottom: 32px;
}
.mv-inverso__title em { font-style: italic; color: var(--mv-verde); }
.mv-inverso__p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 48px;
}
.mv-inverso__pillars { display: flex; flex-direction: column; gap: 1px; }
.mv-inverso__pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 28px 32px;
  transition: background 0.3s, border-color 0.3s;
}
.mv-inverso__pillar:hover {
  background: rgba(40,201,178,0.06);
  border-color: rgba(40,201,178,0.2);
}
.mv-inverso__pillar-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mv-verde);
  margin-bottom: 8px;
  font-family: var(--mv-sans);
}
.mv-inverso__pillar p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─── NÚMEROS ────────────────────────────────────────────────────────── */
.mv-numeros {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
}
.mv-numeros__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.mv-numero {
  background: var(--mv-preto);
  padding: 52px 48px;
  transition: background 0.3s;
}
.mv-numero:hover { background: rgba(40,201,178,0.03); }
.mv-numero__val {
  font-family: var(--mv-serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--mv-branco);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.mv-numero__val sup {
  font-size: 0.4em;
  color: var(--mv-verde);
  font-family: var(--mv-sans);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-left: 4px;
}
.mv-numero__label { font-size: 13px; color: var(--mv-cinza); font-weight: 300; line-height: 1.4; }
.mv-numero__sub { font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; }

/* ─── CITAÇÃO ────────────────────────────────────────────────────────── */
.mv-citacao {
  background: var(--mv-off);
  text-align: center;
}
.mv-citacao__text {
  font-family: var(--mv-serif);
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--mv-branco);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.3;
}
.mv-citacao__autor {
  font-family: var(--mv-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mv-cinza);
}

/* ─── CTA FINAL ──────────────────────────────────────────────────────── */
.mv-cta {
  position: relative;
  overflow: hidden;
}
.mv-cta__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 60%, rgba(30,58,95,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.mv-cta__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.mv-cta__title {
  font-family: var(--mv-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--mv-branco);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.mv-cta__title em { font-style: italic; color: var(--mv-verde); }
.mv-cta__desc {
  font-size: 17px;
  color: var(--mv-cinza);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 460px;
}
.mv-cta__actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

/* ─── SINGLE POST / PAGE ─────────────────────────────────────────────── */
.mv-page-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mv-page-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 75% 35%, rgba(30,58,95,0.28) 0%, transparent 65%);
  pointer-events: none;
}
.mv-page-hero h1 {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.mv-content {
  padding: var(--mv-section-pad);
  max-width: 860px;
  margin: 0 auto;
}
.mv-content p { font-size: 17px; color: #bbb; line-height: 1.9; margin-bottom: 28px; }
.mv-content h2, .mv-content h3 { margin-bottom: 24px; margin-top: 48px; }
.mv-content a { color: var(--mv-verde); text-decoration: underline; text-decoration-color: rgba(40,201,178,0.3); text-underline-offset: 4px; }
.mv-content ul, .mv-content ol { list-style: disc; padding-left: 24px; margin-bottom: 24px; }
.mv-content ul li, .mv-content ol li { color: #bbb; font-size: 16px; line-height: 1.8; margin-bottom: 8px; }
.mv-content blockquote {
  border-left: 2px solid var(--mv-verde);
  padding: 24px 32px;
  margin: 40px 0;
  background: rgba(40,201,178,0.04);
}
.mv-content blockquote p {
  font-family: var(--mv-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--mv-branco);
  margin-bottom: 0;
}
.mv-content img {
  width: 100%;
  height: auto;
  margin: 40px 0;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
#site-footer {
  background: var(--mv-off);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 48px 40px;
}
.mv-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.mv-footer__brand img { height: 20px; opacity: 0.85; margin-bottom: 20px; }
.mv-footer__brand p { font-size: 13px; color: var(--mv-cinza); line-height: 1.75; font-weight: 300; max-width: 260px; margin-bottom: 20px; }
.mv-footer__brand-location { font-size: 12px; color: rgba(255,255,255,0.2); }
.mv-footer__col-title { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; font-family: var(--mv-sans); }
.mv-footer__col ul { list-style: none; }
.mv-footer__col ul li { margin-bottom: 12px; }
.mv-footer__col ul a { font-size: 14px; color: var(--mv-cinza); text-decoration: none; transition: color 0.25s; font-weight: 300; }
.mv-footer__col ul a:hover { color: var(--mv-verde); }
.mv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.mv-footer__copy { font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }
.mv-footer__social { display: flex; gap: 24px; }
.mv-footer__social a { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.25s; }
.mv-footer__social a:hover { color: var(--mv-verde); }

/* ─── GUTENBERG BLOCKS ───────────────────────────────────────────────── */
.wp-block-image img { border-radius: 0; }
.wp-block-quote {
  border-left: 2px solid var(--mv-verde) !important;
  padding: 24px 32px !important;
  background: rgba(40,201,178,0.04);
  margin: 40px 0;
}
.wp-block-quote p {
  font-family: var(--mv-serif) !important;
  font-size: 22px !important;
  font-style: italic !important;
  color: var(--mv-branco) !important;
}
.wp-block-separator { border-color: rgba(255,255,255,0.1) !important; }
.wp-block-button__link {
  font-family: var(--mv-sans) !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  background: var(--mv-verde) !important;
  color: var(--mv-preto) !important;
  border-radius: 0 !important;
  padding: 16px 36px !important;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .mv-sobre__grid,
  .mv-servicos__header,
  .mv-inverso__grid,
  .mv-footer__grid { grid-template-columns: 1fr; gap: 48px; }
  .mv-numeros__grid { grid-template-columns: repeat(2, 1fr); }
  .mv-filosofia__grid { grid-template-columns: 1fr; }
  .mv-servicos__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --mv-section-pad: 80px 24px; }
  .container, .container-narrow { padding: 0 24px; }

  #site-header { padding: 20px 24px; }
  #site-header.scrolled { padding: 16px 24px; }
  #primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .mv-hero { padding: 0 24px 60px; }
  .mv-hero__line, .mv-hero__scroll { display: none; }
  .mv-hero__actions { flex-direction: column; align-items: flex-start; gap: 16px; }

  .mv-page-hero { padding: 0 24px 60px; }
  .mv-portfolio__grid { grid-template-columns: 1fr; }
  .mv-portfolio-item.featured { grid-column: span 1; aspect-ratio: 4/3; }
  .mv-numeros__grid { grid-template-columns: 1fr 1fr; }
  .mv-footer__grid { grid-template-columns: 1fr; }
  .mv-cta__actions { flex-direction: column; align-items: flex-start; }
  .mv-portfolio__header { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 480px) {
  .mv-numeros__grid { grid-template-columns: 1fr; }
  .mv-numero { padding: 40px 24px; }
}
