/* ============================================================
   CAPI WEB CRAFT — Landing Page
   Paleta: #DDAE18 (ouro) · #0C0C0A (preto) · #FFFFFF (branco)
   ============================================================ */

/* Miranda Sans — open source, hospedada no GitHub do autor */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

@font-face {
  font-family: 'Miranda Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://raw.githubusercontent.com/maxthunberg/miranda-sans/main/fonts/variable/MirandaSans%5Bwght%5D.woff2') format('woff2');
}

/* Crescente — fonte local */
@font-face {
  font-family: 'Crescente';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/public/fonts/Crescent-Regular.ttf') format('truetype');
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Variáveis ────────────────────────────────────────────── */
:root {
  --gold:        #DDAE18;
  --gold-dark:   #b08d0f;
  --gold-light:  #f5d96b;
  --black:       #0C0C0A;
  --black-soft:  #1a1a17;
  --gray-dark:   #2e2e2a;
  --gray-mid:    #6b6860;
  --gray-light:  #c8c6bf;
  --white:       #ffffff;
  --off-white:   #f7f5ef;
  --line:        rgba(12,12,10,0.1);

  --display: 'Bricolage Grotesque', sans-serif;
  --body-title: 'Miranda Sans', system-ui, sans-serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

/* Suavização para fonte display em todos os headings */
h1, h2 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size-adjust: none;
}
/* ── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

/* ── Tipografia ───────────────────────────────────────────── */
.serif { font-family: var(--display); }

.display-heading {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-studio {
  background: rgba(247, 245, 239, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.navbar-studio .navbar-brand {
  text-decoration: none;
  padding: 0;
}

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

.logo-footer {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.logo-wordmark span {
  color: var(--gold);
}



.navbar-studio .nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 0.3rem 0.9rem !important;
  transition: color 0.2s;
}

.navbar-studio .nav-link:hover { color: var(--black); }

.btn-nav {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--black);
  background: transparent;
  color: var(--black);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-nav:hover {
  background: var(--black);
  color: var(--white);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: stretch;
}

.hero-left {
  padding: 6rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.hero-right {
  background: var(--black);
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,174,24,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

/* ── Botões ───────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.85rem 2rem;
  border: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-outline-dark-custom {
  background: transparent;
  color: var(--black);
  font-size: 0.85rem;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid var(--black);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
}

.btn-outline-dark-custom:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Stat grid no hero ────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}

.stat-item {
  background: var(--black-soft);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s;
}

.stat-item:hover { background: var(--gray-dark); }

.stat-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
}

/* ── Seção Dor (dark) ─────────────────────────────────────── */
.pain-section {
  background: var(--black);
  color: var(--white);
  padding: 7rem 0;
}

.pain-section .section-label { color: rgba(255,255,255,0.3); }
.pain-section .section-label::before { background: var(--gold); }

.pain-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 560px;
}

.pain-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color 0.25s, background 0.25s;
}

.pain-card:hover {
  border-color: var(--gold);
  background: var(--gray-dark);
}

.pain-icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.pain-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pain-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

/* ── Seção Valor ──────────────────────────────────────────── */
.value-section { padding: 7rem 0; }

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.value-card:hover { border-color: rgba(221,174,24,0.4); }
.value-card:hover::after { width: 100%; }

.value-num {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.value-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin: 0;
}

/* ── Processo ─────────────────────────────────────────────── */
.process-section {
  background: var(--off-white);
  padding: 7rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.process-step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  min-width: 52px;
  line-height: 1;
  opacity: 0.7;
}

.step-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin: 0;
}

/* ── Prova / Depoimento ───────────────────────────────────── */
.proof-section {
  background: var(--black);
  color: var(--white);
  padding: 7rem 0;
}

.proof-section .section-label { color: rgba(255,255,255,0.3); }
.proof-section .section-label::before { background: var(--gold); }

.testimonial-block {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.03);
}

.testimonial-block blockquote {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin: 0 0 1rem;
}

.testimonial-block cite {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.05em;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.proof-logo {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-weight: 500;
}

/* ── Qualificação ─────────────────────────────────────────── */
.qualify-section { padding: 7rem 0; }

.qualify-text p {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.qualify-text strong { color: var(--black); }

.qualify-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualify-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--black);
}

.qualify-list li:last-child { border-bottom: none; }

.qualify-list li .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.qualify-list li.no { color: var(--gray-mid); }

.qualify-list li.no .dot {
  background: transparent;
  border: 1.5px solid var(--gray-light);
}

/* ── CTA Final ────────────────────────────────────────────── */
.cta-section {
  background: var(--gold);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--black-soft);
  opacity: 0.6;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(12,12,10,0.65);
  margin-bottom: 2.5rem;
}

.btn-cta-dark {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
  border: none;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
  transition: background 0.2s, transform 0.15s;
}

.btn-cta-dark:hover {
  background: var(--black-soft);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(12,12,10,0.45);
  margin-top: 1.25rem;
}

/* ── Footer ───────────────────────────────────────────────── */

.footer-studio {
    background: var(--black);
    color: rgba(255, 255, 255, 0.35);
    padding: 2rem 0;
    font-size: 0.78rem;
    border-top: 3px solid var(--gold);
}

/* Nova regra para a LOGO */
.footer-studio .logo-footer {
    width: 8vw; /* 30% da largura da janela do navegador */
    height: auto;
    min-width: 200px; /* Dica: define um tamanho mínimo para não sumir no celular */
}

.footer-studio a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-studio a:hover { color: var(--gold); }

.footer-studio .brand {
    font-family: var(--display);
    /* Removi o font-size: 2rem; para não conflitar com a imagem se houver texto */
    color: var(--white);
}

.footer-studio .brand span { color: var(--gold); }

/* ── Animações ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-1 { animation: fadeUp 0.65s ease both 0.1s; }
.anim-2 { animation: fadeUp 0.65s ease both 0.22s; }
.anim-3 { animation: fadeUp 0.65s ease both 0.34s; }
.anim-4 { animation: fadeUp 0.65s ease both 0.46s; }
.anim-5 { animation: fadeUp 0.65s ease both 0.58s; }

/* ── Divisor ouro ─────────────────────────────────────────── */
.gold-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ── Responsivo ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-left {
    padding: 4rem 2rem 3rem;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .hero-right { padding: 3rem 2rem; }
}

@media (max-width: 767.98px) {
  .hero-section { padding-top: 70px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .proof-logos { gap: 1.5rem; }
}


/* ── Tipografia — hierarquia de fontes ───────────────────── */
h3, h4, h5, h6 {
  font-family: var(--body-title);
}

.navbar-studio .nav-link,
.btn-gold,
.btn-outline-dark-custom,
.btn-outline-white,
.btn-nav,
.btn-cta-dark,
.section-label {
  font-family: var(--sans);
}
