@font-face {
  font-family: 'FuturaStd';
  src: url('../assets/fonts/FuturaStd-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'FuturaStd';
  src: url('../assets/fonts/FuturaStd-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'FuturaStd';
  src: url('../assets/fonts/FuturaStd-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'FuturaStd';
  src: url('../assets/fonts/FuturaStd-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'FuturaStd';
  src: url('../assets/fonts/FuturaStd-Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

:root {
  --color-void: #060C08;
  --color-emerald: #0B5132;
  --color-gold: #B8963E;
  --color-gold-light: #D4AF5A;
  --color-white: #F5F0E8;
  --color-gray: #6B6B6B;
  --color-dark-gray: #1A1F1B;
  
  --font-sans: 'FuturaStd', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--color-white);
  background-color: var(--color-void);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Loading Overlay */
.hero-loading {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-void);
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* Video Background Wrapper */
.hero-video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: var(--color-void);
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .bg-video {
    /* Ajusta o foco do vídeo no mobile para focar na personagem com a pedra (mais para a esquerda) */
    object-position: 25% center;
  }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6,12,8,0.7) 0%, rgba(11,81,50,0.5) 50%, rgba(6,12,8,0.9) 100%);
  z-index: 1;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}

@media (min-width: 768px) {
  .header {
    padding-top: 2rem;
  }
}

.nav-pill {
  display: flex;
  align-items: center;
  background: rgba(6, 12, 8, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 150, 62, 0.2);
  border-radius: 9999px; /* Pill shape */
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  gap: 2rem;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  margin-left: 1rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  text-decoration: none;
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-gold-light);
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 0 5%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 45%;
  will-change: opacity, transform;
}

@media (max-width: 900px) {
  .hero {
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
  }
  .hero-content {
    align-items: center;
    max-width: 100%;
  }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 240, 232, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 150, 62, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.badge-icon {
  width: 12px;
  height: 12px;
  background-color: var(--color-gold);
  border-radius: 2px;
  margin-right: 0.75rem;
  transform: rotate(45deg); /* Diamond shape */
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
}

.highlight-gold {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.9);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
}

.brand-quote {
  display: block;
  margin-top: 1.2rem;
  color: var(--color-gold-light);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--color-void);
  color: var(--color-gold);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background-color: var(--color-gold);
  color: var(--color-void);
  box-shadow: 0 6px 16px rgba(184, 150, 62, 0.3);
  transform: translateY(-2px);
}

/* Manifesto Layout */
.manifesto {
  background-color: var(--color-void);
  min-height: 100vh;
  position: relative;
  z-index: 10;
  padding: 6rem 1rem 8rem;
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════
   SEÇÃO — FILOSOFIA E FOOTER
═══════════════════════════════ */
.filosofia-section {
  background-color: var(--color-void);
  padding: 8rem 1rem 4rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(184, 150, 62, 0.1);
}

.filosofia-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  margin-bottom: 6rem;
}

.filosofia-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: white;
  margin-bottom: 2.5rem;
}

.filosofia-text {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.filosofia-signature {
  margin-top: 2rem;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  width: 100%;
  background-color: #050505;
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo svg {
  width: 28px; height: 28px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  color: var(--color-gold);
  transition: color 0.3s;
}
.footer-social a:hover {
  color: white;
}
.footer-social svg {
  width: 20px; height: 20px;
}

.footer-heading {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.footer-links li a::before {
  content: '✓';
  color: var(--color-gold);
  margin-right: 8px;
  font-size: 0.8rem;
}
.footer-links li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.manifesto-container {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.manifesto-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.manifesto-label::after {
  content: "";
  height: 1px;
  flex: 1;
  margin-left: 1rem;
  background: linear-gradient(90deg, rgba(184,150,62,0.5) 0%, transparent 100%);
}

.manifesto-block {
  margin-bottom: 1rem;
}

.m-mt {
  margin-top: 1.5rem;
}

.m-mt-small {
  margin-top: 0.5rem;
}

/* Manifesto Typography */
.m-lg {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.1;
  color: var(--color-white);
}

.m-md {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
}

.m-sm {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.4;
  font-weight: 300;
}

.m-normal { font-style: normal; }
.m-italic { font-style: italic; }
.m-dim { color: rgba(245, 240, 232, 0.7); }
.m-white { color: var(--color-white); }
.m-gold-light { color: var(--color-gold-light); }

/* Pauses / Separators */
.m-pause {
  height: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184,150,62,0.5), transparent);
  margin: 1.5rem 0;
  align-self: center;
}

/* Virada Block (Animated left border) */
.m-virada {
  position: relative;
  padding-left: 2rem;
  margin: 2.5rem 0;
}

.virada-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0%; /* Will be animated to 100% via GSAP */
  background: var(--color-gold);
}

/* Assinatura */
.m-assinatura {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.m-diamond {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 150, 62, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.m-citacao {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 24px);
  font-style: italic;
  color: var(--color-white);
  max-width: 600px;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.m-marca {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}
