/*
Theme Name: Mônica Durão
Theme URI: https://monicadurao.com.br
Author: Mônica Durão
Description: Tema personalizado — Arquiteta de Autoridade Invisível
Version: 1.0
*/

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

:root {
  --bg:         #0a0a0a;
  --surface:    #111111;
  --surface-2:  #161616;
  --gold:       #c9a027;
  --gold-light: #e8c547;
  --white:      #f5f5f0;
  --muted:      #888888;
  --border:     #222222;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --max-w:      1100px;
  --radius:     8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

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

.section { padding: 100px 0; }
.section--dark { background: var(--bg); }
.section--surface { background: var(--surface); }
.section--surface2 { background: var(--surface-2); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 40px;
}

/* ─── BOTÕES ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 160, 39, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* ─── HEADER / NAV ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.site-logo span { color: var(--gold); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--white); }

.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: #0a0a0a !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.875rem !important;
}
.nav-cta:hover { background: var(--gold-light); color: #0a0a0a !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 100px;
}

.hero-content { padding: 80px 0; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 160, 39, 0.1);
  border: 1px solid rgba(201, 160, 39, 0.25);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 520px;
}

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(201,160,39,0.3), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ─── IDENTIFICAÇÃO ────────────────────────────────────── */
.identification { padding: 100px 0; }

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

.identification-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.id-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.id-card:hover {
  transform: translateX(4px);
  border-left-color: var(--gold-light);
}
.id-card p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
}

.anchor-phrase {
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(201, 160, 39, 0.08);
  border: 1px solid rgba(201, 160, 39, 0.2);
  border-radius: var(--radius);
}
.anchor-phrase p {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.6;
}

/* ─── O QUE EU FAÇO ────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text p strong {
  color: var(--white);
  font-weight: 600;
}

.about-principles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.principle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.principle-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(201,160,39,0.1);
  border: 1px solid rgba(201,160,39,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}
.principle p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.principle p strong { color: var(--white); }

/* ─── MÉTODO DAI ───────────────────────────────────────── */
.method-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.method-intro .section-subtitle { margin: 0 auto; }

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.method-step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.method-step:hover {
  transform: translateY(-4px);
  border-color: rgba(201,160,39,0.3);
}

.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,160,39,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.step-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.step-outcome {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ─── NÚMEROS ──────────────────────────────────────────── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.number-card {
  background: var(--surface);
  padding: 48px 32px;
  text-align: center;
}

.number-value {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.number-label {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

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

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  transition: transform 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,160,39,0.15);
  border: 1px solid rgba(201,160,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}
.author-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── QUEM SOU EU ──────────────────────────────────────── */
.bio-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.bio-image {
  position: relative;
}
.bio-image img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}
.bio-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #0a0a0a;
  padding: 20px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,160,39,0.3);
}
.bio-badge strong { font-size: 1.4rem; display: block; }

.bio-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}
.bio-text p strong { color: var(--white); }

.bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.credential {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ─── SERVIÇOS ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.service-card:hover {
  border-color: rgba(201,160,39,0.3);
  transform: translateY(-4px);
}

.service-step {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-desc {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.service-items li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}

/* ─── CTA FINAL ────────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 120px 0;
}
.final-cta .section-title {
  max-width: 760px;
  margin: 0 auto 24px;
}
.final-cta .section-subtitle {
  margin: 0 auto 48px;
  max-width: 580px;
  text-align: center;
}

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── RESPONSIVO ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; padding-top: 80px; }
  .hero-image { display: none; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .identification-grid,
  .about-split,
  .bio-split { grid-template-columns: 1fr; gap: 48px; }

  .method-steps { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .menu-toggle { display: flex; }

  .bio-badge { right: 0; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .method-steps { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
