*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0d1117;
  --ink-soft: #3a4250;
  --muted: #7c8594;
  --accent: #c8a96e;
  --accent2: #1a3a5c;
  --bg: #f8f5f0;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../img/noise.svg");
  pointer-events: none;
  z-index: 0;
}

/* ══ STICKY NAV ══════════════════════════════ */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 6vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 17, 23, 0);
  backdrop-filter: blur(0px);
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    box-shadow 0.4s;
}
.sticky-nav.scrolled {
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: var(--ink) !important;
  padding: 0.45rem 1.25rem;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--ink) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 101;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease-in-out;
  transform-origin: 1px 1px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 99;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, -2px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 2px);
  }
}

/* ══ HERO ════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle 600px at 20% 55%,
      rgba(26, 58, 92, 0.45) 0%,
      rgba(13, 17, 23, 0) 70%
    ),
    radial-gradient(
      circle 600px at 80% 20%,
      rgba(200, 169, 110, 0.06) 0%,
      rgba(13, 17, 23, 0) 60%
    ),
    var(--ink);
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 5vw 5rem 6vw;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-name span {
  display: block;
  color: var(--accent);
}

.hero-tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  text-decoration: none;
  transition: all 0.3s;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.btn::after {
  content: "\2192";
}
.btn.no-anim {
  opacity: 1;
  animation: none;
}

.hero-fine-print {
  margin-top: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-right {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
  filter: brightness(0.88) contrast(1.05);
}
.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      #0d1117 0%,
      var(--ink) 15%,
      rgba(13, 17, 23, 0) 50%
    ),
    linear-gradient(to top, var(--ink) 0%, rgba(13, 17, 23, 0) 30%),
    linear-gradient(to bottom, var(--ink) 0%, rgba(13, 17, 23, 0) 15%);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 6vw;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s forwards;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200, 169, 110, 0.6), transparent);
  animation: scrollPulse 2s infinite;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .hero-left {
    padding: 7rem 6vw 2.5rem;
    order: 1;
  }
  .hero-right {
    height: 55vw;
    order: 2;
    margin-top: -1px;
  }
  .hero-right::after {
    background:
      linear-gradient(
        to bottom,
        var(--ink) 0%,
        var(--ink) 8%,
        rgba(13, 17, 23, 0) 35%
      ),
      linear-gradient(to top, var(--ink) 0%, rgba(13, 17, 23, 0) 35%);
  }
  .scroll-indicator {
    display: none;
  }
}

/* ══ SHARED ══════════════════════════════════ */
section {
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6vw;
}
.section-label {
  font-size: 1.5rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
  font-weight: bold;
}

/* ══ CONVERGÊNCIA ════════════════════════════ */
.convergencia {
  background: var(--white);
  padding: 10rem 0 8rem;
}

.convergencia-header {
  margin-bottom: 5rem;
}
.convergencia-header h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.convergencia-intro {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  max-width: 560px;
}

.dualidades {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--line);
}
.dualidade {
  background: var(--white);
  padding: 3rem;
  transition: background 0.3s;
}
.dualidade:hover {
  background: #faf8f4;
}

.dualidade-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.dualidade h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}
.dualidade p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.dualidade-pergunta {
  font-size: 0.87rem;
  font-style: italic;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.dualidade-pergunta strong {
  color: var(--accent2);
  font-style: normal;
}

/* ══ MANIFESTO ═══════════════════════════════ */
.manifesto {
  background: var(--accent2);
  padding: 12rem 0;
  overflow: hidden;
  position: relative;
}
.manifesto::before {
  content: "\201C";
  position: absolute;
  top: -4rem;
  left: 2vw;
  font-family: "Playfair Display", serif;
  font-size: 32rem;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
}
.manifesto-inner {
  max-width: 780px;
}
.manifesto h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 3rem;
}
.manifesto p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  margin-bottom: 1.75rem;
}
.manifesto-destaque {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--accent) !important;
  font-weight: 700;
  line-height: 1.3 !important;
}
.manifesto-bold {
  color: var(--white) !important;
  font-weight: 500;
}
.manifesto-bridge {
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ══ ESFERAS ═════════════════════════════════ */
.esferas {
  background: var(--bg);
  padding: 8rem 0;
}
.esferas-header {
  margin-bottom: 4rem;
}
.esferas-header h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  line-height: 1.0 !important;
}
.esferas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.esfera {
  background: var(--bg);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.esfera:hover {
  background: var(--white);
}
.esfera-num {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.2);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}
.esfera h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.esfera-sub {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 1.25rem;
  display: block;
}
.esfera p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.esfera-pergunta {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: auto;
}

@media (max-width: 900px) {
  .esferas-grid {
    grid-template-columns: 1fr;
  }
  .dualidades {
    grid-template-columns: 1fr;
  }
}

/* ══ CTA ═════════════════════════════════════ */
.cta {
  background: var(--accent);
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "O PROMPT";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Playfair Display", serif;
  font-size: 17vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta .section-label {
  color: rgba(13, 17, 23, 0.4);
}
.cta h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.35;
}
.cta p {
  color: rgba(13, 17, 23, 0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.cta .btn {
  background: var(--ink);
  color: var(--white);
  margin: 0 auto;
  animation: none;
  opacity: 1;
}
.cta .btn:hover {
  background: var(--accent2);
  color: var(--white);
}
.cta-fine {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(13, 17, 23, 0.4);
}

/* ══ FOOTER ══════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 3.5rem 6vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  text-align: right;
}

@media (max-width: 600px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-copy {
    text-align: center;
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ENTRADA ─────────────────────── */
.hero-entrada {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--accent);
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

/* ── DOBRA 3 — PROBLEMA ───────────────── */
.problema {
  padding: 8rem 0;
  background: var(--bg);
}
.problema-inner {
  max-width: 720px;
  margin: 0 auto;
}
.problema-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.problema-sub {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2rem;
}
.problema-texto {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 1.25rem;
}
.problema-pergunta {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--accent) !important;
  margin-top: 2rem;
  font-weight: 700;
  line-height: 1.3 !important;
}

/* ── DOBRA 6 — NEWSLETTER ─────────────── */
.newsletter {
  padding: 6rem 0;
  background: var(--white);
}
.newsletter-inner {
  max-width: 780px;
  margin-left: 0;
  text-align: left;
}
.newsletter-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.newsletter-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.newsletter-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  text-align: left;
}
.newsletter-body strong {
  color: var(--accent);
}

/* Scroll fixes for offline viewing */
html,
body {
  overflow: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
  min-height: 100% !important;
  scroll-behavior: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Force visibility - many sites use JS animations for initial display */
body,
.wrapper,
main,
#__next,
#app,
.page,
.content {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Disable loader/preloader overlays */
.loader,
.preloader,
.loading,
[class*="loader"],
[class*="preloader"] {
  display: none !important;
  opacity: 0 !important;
}

/* Show elements that might be hidden for animation */
.word-inner,
.char,
.line,
[data-aos],
[data-scroll],
.hero-text span,
.hero-fade,
[class*="hero"] span {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Reset Tailwind animation utility classes */
.translate-y-full,
.translate-x-full,
.-translate-y-full,
.-translate-x-full,
.translate-y-1\/2,
.-translate-y-1\/2,
.translate-y-\[100\%\],
.translate-y-\[110\%\] {
  transform: none !important;
}

/* Force visibility on common hidden-for-animation patterns */
.opacity-0,
[class*="opacity-0"] {
  opacity: 1 !important;
}

/* Reset scale transforms used for animations */
.scale-0,
.scale-50,
.scale-75 {
  transform: none !important;
}

html.lenis,
html.lenis-smooth,
body.lenis,
body.lenis-smooth,
.lenis-wrapper,
.lenis-content,
[data-lenis-prevent],
[data-scroll-container] {
  overflow: visible !important;
  height: auto !important;
}

/* Fix flex containers that might cut off content */
body.flex.items-center,
body.flex.justify-center {
  align-items: flex-start !important;
  min-height: 100vh;
  height: auto !important;
}

/* Ensure main content scrolls */
main,
#__next,
#__nuxt,
#app,
.main-content {
  overflow: visible !important;
  height: auto !important;
}
