:root {
  --gold: hsl(40, 60%, 55%);
  --gold-light: hsl(40, 70%, 75%);
  --purple: hsl(270, 50%, 35%);
  --purple-light: hsl(270, 50%, 55%);
  --bg: hsl(240, 15%, 6%);
  --bg2: hsl(240, 15%, 8%);
  --bg-dark: hsl(240, 15%, 5%);
  --border: hsl(270, 30%, 25%);
  --text: hsl(45, 20%, 85%);
  --text-muted: hsl(45, 10%, 55%);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav .logo { margin-left: 40px; }

nav .logo-icon {
  width: 52px; height: 52px;
  font-size: 22px;
}

nav .logo-name { font-size: 16px; }

nav .logo-sub { font-size: 11px; }

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: hsla(240, 15%, 6%, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--purple-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 400;
  background: hsla(240, 15%, 8%, 0.6);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.logo-sub {
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-family: 'Sora', sans-serif;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:not(.btn-cta):hover { color: var(--gold); }
.nav-links a.btn-cta { color: var(--gold-light); }
.nav-links a.btn-cta:hover { background: var(--gold-light); color: var(--bg); }

.btn-cta {
  background: transparent;
  color: var(--gold-light);
  padding: 14px 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold-light);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-cta:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-1px);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 80px 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, hsla(270, 40%, 12%, 0.6) 0%, transparent 60%);
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, hsla(270, 50%, 15%, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-circle {
  flex-shrink: 0;
  width: 300px; height: 300px;
  border: 1.5px solid var(--purple-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  background: radial-gradient(circle at center, hsl(240, 20%, 10%) 0%, hsl(240, 15%, 6%) 100%);
  box-shadow: 0 0 30px hsla(270, 60%, 50%, 0.2), 0 0 80px hsla(270, 60%, 40%, 0.08);
}

.hero-logo-circle::before { display: none; }

.hero-s {
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-brand-name {
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.22em;
  font-size: 18px;
  font-weight: 400;
}

.hero-brand-sub {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-family: 'Sora', sans-serif;
  font-weight: 300;
}

.hero-content { max-width: 580px; }

.hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--gold-light);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-content h1 span { color: var(--purple-light); }

.hero-content p {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.7;
}

.hero-content p:last-of-type { margin-bottom: 36px; }

/* ── SECTION BASE ── */
section { padding: 100px 60px; }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  text-align: center;
  color: var(--gold-light);
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

.section-title span { color: var(--purple-light); }

/* ── SOBRE ── */
#sobre { background: var(--bg2); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.sobre-col p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 18px;
}

.sobre-col p strong {
  color: var(--gold);
}

.sobre-col p em {
  color: var(--gold);
  font-style: italic;
}

/* ── QUEM SOU ── */
#quem-sou {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}

.founder-card {
  flex-shrink: 0;
  width: 300px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
}

.founder-avatar {
  width: 90px; height: 90px;
  border: 1px solid var(--purple-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 400;
}

.founder-name {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 2px;
}

.founder-role {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 1px;
}

.quem-sou-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 28px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.quem-sou-content h2 span { color: var(--purple-light); }

.quem-sou-content p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
  color: var(--text);
}

.quem-sou-content p strong { color: var(--gold); }
.quem-sou-content p em { color: var(--gold); font-style: italic; }

/* ── DIFERENCIAL ── */
#diferencial {
  background: var(--bg2);
  text-align: center;
}

.icons-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.icon-circle {
  width: 68px; height: 68px;
  border: 2px solid var(--purple-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 26px;
}

#diferencial h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--gold-light);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

#diferencial h2 span { color: var(--purple-light); }

#diferencial p {
  max-width: 680px;
  margin: 0 auto 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

#diferencial .btn-cta { margin-top: 40px; }

/* ── DEPOIMENTOS ── */
/* ── DEPOIMENTOS CARROSSEL ── */
#depoimentos {
  padding: 100px 0;
}

#depoimentos .depo-header {
  text-align: center;
  padding: 0 60px;
  margin-bottom: 60px;
}

#depoimentos .depo-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

#depoimentos .depo-header h2 span { color: var(--purple-light); }

#depoimentos .depo-header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
  overflow: hidden;
}

.carousel-track-outer {
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.depo-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 40px 32px;
  position: relative;
  flex: 0 0 42vw;
  max-width: 580px;
  transition: border-color 0.3s, box-shadow 0.3s, opacity 0.3s;
  display: flex;
  flex-direction: column;
  opacity: 0.45;
}

.depo-card.active {
  opacity: 1;
}

.depo-card.active {
  border-color: hsla(270, 50%, 55%, 0.5);
  box-shadow: 0 0 30px hsla(270, 50%, 40%, 0.15);
  opacity: 1;
}

.depo-quote-icon {
  color: var(--purple-light);
  margin-bottom: 14px;
  opacity: 0.85;
  display: block;
}

.depo-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.depo-author {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 16px;
  font-family: 'Sora', sans-serif;
  margin-bottom: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.depo-role {
  color: var(--text-muted);
  font-size: 13px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: border-color 0.3s, background 0.3s;
}

.carousel-btn:hover {
  border-color: var(--purple-light);
  background: hsla(270, 50%, 35%, 0.2);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.carousel-dot.active {
  background: var(--purple-light);
  width: 24px;
  border-radius: 4px;
}

/* ── CTA FINAL ── */
#cta-final {
  text-align: center;
  background: linear-gradient(135deg, #0d0d12 0%, #13101e 100%);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,63,160,0.1) 0%, transparent 70%);
  pointer-events: none;
}

#cta-final h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

#cta-final h2 span { color: var(--purple-light); }

#cta-final p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
}

footer .logo { margin-left: 40px; }

footer .logo-icon {
  width: 52px; height: 52px;
  font-size: 22px;
}

footer .logo-name { font-size: 16px; }

footer .logo-sub { font-size: 11px; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 80px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 80px;
  text-align: center;
}

footer p {
  color: var(--text-muted);
  font-size: 13px;
}

footer a {
  color: var(--text);
  text-decoration: none;
}

.footer-social {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}

.footer-social:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

/* ── MOBILE ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,13,18,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(123,63,160,0.2);
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }

  #hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
    gap: 40px;
  }

  .hero-logo-circle { width: 240px; height: 240px; }
  .hero-s { font-size: 48px; }

  .sobre-grid { grid-template-columns: 1fr; gap: 0; }

  #quem-sou {
    flex-direction: column;
    padding: 80px 24px;
    text-align: center;
  }

  section { padding: 80px 24px; }
  #depoimentos { padding: 80px 0; }
  .footer-top { flex-direction: column; gap: 20px; text-align: center; padding: 28px 24px; }

  .carousel-wrapper { padding: 0 40px; }
  .depo-card { flex: 0 0 80vw; }
}

/* ── ANIMAÇÕES ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
