/* =========================================================
   Tear One — Landing Page de captação de clientes
   Consultoria Financeira Empresarial
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0e1a;
  --bg-soft: #0d1322;
  --bg-card: #101a2e;
  --bg-card-2: #14203a;
  --bg-elevated: #182440;
  --text: #eef2f8;
  --text-soft: #c7d0e0;
  --muted: #93a1ba;
  --gold: #e8b13f;
  --gold-2: #f4cf7a;
  --gold-deep: #c8921f;
  --line: rgba(148, 163, 184, 0.14);
  --line-gold: rgba(232, 177, 63, 0.28);
  --whatsapp: #25d366;
  --whatsapp-dark: #1eb657;
  --danger: #ef6a6a;
  --ok: #4cd98b;
  --warn: #f0b13f;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 18px 44px -18px rgba(232, 177, 63, 0.45);
  --nav-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --ivory: #F4E7CF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(232, 177, 63, 0.35);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.35rem;
}

.section {
  padding: 1rem 0;
  position: relative;
}

@media (min-width: 900px) {
  .section {
    padding: 1.25rem 0;
  }
}

.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232, 177, 63, 0.08);
  border: 1px solid var(--line-gold);
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.section__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1rem;
}

.section__head .section__label {
  margin-bottom: 1.1rem;
}

.section__head .section__sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: 13px;
  font-weight: 600;
  font-size: 0.96rem;
  font-family: var(--font-body);
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), filter 0.2s var(--ease);
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #101525;
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px -18px rgba(232, 177, 63, 0.55);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 16px 40px -16px rgba(37, 211, 102, 0.5);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.btn--ghost {
  background: rgba(232, 177, 63, 0.06);
  color: var(--text);
  border: 1px solid var(--line-gold);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.05rem 1.9rem;
  font-size: 1.02rem;
  border-radius: 14px;
}

.btn--block {
  width: 100%;
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 26, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 36px -18px rgba(0, 0, 0, 0.6);
  background: rgba(10, 14, 26, 0.92);
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid;
  place-items: center;
  color: #101525;
  overflow: hidden;
  box-shadow: 0 8px 20px -8px rgba(232, 177, 63, 0.7);
}

.nav__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav__logo-text strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ivory);
}

.nav__logo-text small {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ivory);
  opacity: 0.85;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a:not(.btn) {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
}

.nav__links a:not(.btn):hover {
  color: var(--gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

@media (max-width: 820px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem 1.35rem calc(1.25rem);
    background: rgba(10, 14, 26, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    padding: 0.8rem 0.9rem;
    border-radius: 10px;
  }

  .nav__links a:hover {
    background: rgba(232, 177, 63, 0.08);
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--nav-h) + 3.5rem);
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: -34%;
  right: -14%;
  width: 62%;
  max-width: 720px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 177, 63, 0.2) 0%, transparent 62%);
}

.hero__bg::after {
  content: "";
  position: absolute;
  bottom: -46%;
  left: -12%;
  width: 55%;
  max-width: 640px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, transparent 60%);
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

.hero__grid {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero__lead {
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  justify-content: center;
}

.hero__proof {
  justify-content: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-2);
  background: rgba(232, 177, 63, 0.09);
  border: 1px solid var(--line-gold);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.hero__badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(232, 177, 63, 0.6);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 177, 63, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(232, 177, 63, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 177, 63, 0);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
}

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

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 1.9rem;
  max-width: 34rem;
}

.hero__lead strong {
  color: var(--gold-2);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.1rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero__proof-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- História ---------- */
.history {
  border-top: 1px solid var(--line);
}

.history__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .history__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.history__text p {
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.history__text p strong {
  color: var(--gold-2);
}

.history__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.history__stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

.history__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-2);
}

.history__stat small {
  font-size: 0.8rem;
  color: var(--muted);
}

.history__visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(150deg, var(--bg-card-2), var(--bg-card));
  box-shadow: var(--shadow);
}

.history__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history__visual-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.history__visual-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 177, 63, 0.16), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(59, 130, 246, 0.14), transparent 55%);
}

.history__visual-placeholder .mock {
  position: relative;
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.history__visual-placeholder .mock p {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 240px;
}

/* ---------- Equipe ---------- */
.team {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.team__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 177, 63, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.team-card--mock {
  border-style: dashed;
}

.team-card__top {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(232, 177, 63, 0.55);
  box-shadow: 0 10px 24px -10px rgba(232, 177, 63, 0.45);
  display: grid;
  place-items: center;
  background: var(--bg-card-2);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__avatar span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gold);
}

.team-card--mock .team-card__avatar {
  background: linear-gradient(135deg, #2a3a5e, #1c2740);
  border: 1px dashed var(--line-gold);
  box-shadow: none;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
}

.team-card__role {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.15rem;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.team-card__tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid var(--line);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.team-card__bio {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.team-card__bio p + p {
  margin-top: 0.6rem;
}

.team-card .btn {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
}

.mock-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}

.mock-note svg {
  flex-shrink: 0;
}

/* ---------- Diagnóstico / Quiz ---------- */
.quiz {
  position: relative;
  overflow: hidden;
}

.quiz::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 177, 63, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.quiz__wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.quiz__card {
  background: linear-gradient(170deg, var(--bg-card-2) 0%, var(--bg-card) 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quiz__card-inner {
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

/* Progress */
.quiz__progress {
  padding: 1.4rem 1.6rem 0;
}

.quiz__progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.quiz__progress-meta strong {
  color: var(--gold-2);
}

.quiz__progress-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.14);
  overflow: hidden;
}

.quiz__progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  width: 0;
  transition: width 0.5s var(--ease);
}

/* Screens */
.quiz__screen {
  display: none;
  animation: screen-in 0.45s var(--ease);
}

.quiz__screen.active {
  display: block;
}

@keyframes screen-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz__question {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 1.7rem;
}

.quiz__options {
  display: grid;
  gap: 0.8rem;
}

.quiz__option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1.15rem;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}

.quiz__option:hover {
  border-color: var(--line-gold);
  background: rgba(232, 177, 63, 0.06);
  transform: translateX(4px);
}

.quiz__option.selected {
  border-color: var(--gold);
  background: rgba(232, 177, 63, 0.12);
  box-shadow: inset 0 0 0 1px rgba(232, 177, 63, 0.4);
}

.quiz__option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  flex-shrink: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quiz__option.selected .quiz__option-radio {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 4px var(--gold);
}

.quiz__nav {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.quiz__nav .btn {
  min-width: 120px;
}

.quiz__error {
  display: none;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--danger);
  background: rgba(239, 106, 106, 0.1);
  border: 1px solid rgba(239, 106, 106, 0.3);
  padding: 0.7rem 1rem;
  border-radius: 12px;
}

.quiz__error.visible {
  display: block;
}

/* Gate form */
.gate__intro {
  text-align: center;
  margin-bottom: 1.6rem;
}

.gate__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(232, 177, 63, 0.18), rgba(232, 177, 63, 0.06));
  border: 1px solid var(--line-gold);
  color: var(--gold);
}

.gate__intro h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.gate__intro p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto;
}

.gate__intro p strong {
  color: var(--gold-2);
}

.gate__fields {
  display: grid;
  gap: 1rem;
}

.gate__field {
  display: grid;
  gap: 0.4rem;
}

.gate__field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-soft);
}

.gate__field label span {
  color: var(--gold);
}

.gate__field input {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: rgba(148, 163, 184, 0.07);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gate__field input::placeholder {
  color: rgba(147, 161, 186, 0.7);
}

.gate__field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 177, 63, 0.18);
}

.gate__consent {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.gate__consent a {
  color: var(--gold-2);
  text-decoration: underline;
}

.gate__submit {
  margin-top: 0.6rem;
}

/* Result */
.result__head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.result__ring-wrap {
  width: 148px;
  height: 148px;
  margin: 0 auto 1.1rem;
  position: relative;
}

.result__ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.result__ring-track {
  fill: none;
  stroke: rgba(148, 163, 184, 0.14);
  stroke-width: 10;
}

.result__ring-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.2s var(--ease) 0.2s;
  transition-timing-function: var(--ease);
}

.result__ring-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.result__ring-label strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  display: block;
}

.result__ring-label small {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result__head h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.result__head p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

.result__summary {
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.1rem;
}

.result__summary p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.result__summary strong {
  color: var(--gold-2);
}

.result__points {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.result__point {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-soft);
  padding: 0.75rem 1rem;
  background: rgba(76, 217, 139, 0.05);
  border: 1px solid rgba(76, 217, 139, 0.18);
  border-radius: 12px;
}

.result__point svg {
  color: var(--ok);
  flex-shrink: 0;
  margin-top: 2px;
}

.result__cta {
  text-align: center;
  padding-top: 0.4rem;
}

.result__cta p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Loading */
.quiz__loading {
  text-align: center;
  padding: 2rem 0;
}

.spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  border: 4px solid rgba(232, 177, 63, 0.2);
  border-top-color: var(--gold);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.quiz__loading p {
  color: var(--muted);
}

/* ---------- CTA final ---------- */
.cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(232, 177, 63, 0.1) 0%, transparent 40%);
}

.cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.cta__inner h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-2);
}

.cta__inner p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.9rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.cta__note {
  margin-top: 1.4rem;
  font-size: 0.84rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.cta__note svg {
  color: var(--gold);
}

/* ---------- Footer ---------- */
.footer {
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 760px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__brand .nav__logo-mark {
  width: 36px;
  height: 36px;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer__logo-text strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ivory);
}

.footer__logo-text small {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.46rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ivory);
  opacity: 0.85;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}

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

.footer__bottom {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 760px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ---------- Botão WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 44px -12px rgba(37, 211, 102, 0.7);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.2s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  top: calc(var(--nav-h) + 1rem);
  right: 1.4rem;
  z-index: 1100;
  max-width: 340px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast__icon {
  flex-shrink: 0;
  color: var(--gold);
}

.toast--error .toast__icon {
  color: var(--danger);
}

.toast p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.toast strong {
  color: var(--gold-2);
}

/* =========================================================
   Novas seções (baseadas na proposta comercial)
   ========================================================= */

/* ---------- Metodologia (pilares) ---------- */
.pillars__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .pillars__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pillar {
  position: relative;
  background: linear-gradient(165deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.5rem;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.5;
}

.pillar:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
}

.pillar__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(232, 177, 63, 0.1);
  border: 1px solid var(--line-gold);
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Transformação (antes/depois) ---------- */
.transform__rows {
  display: grid;
  gap: 0.9rem;
  max-width: 860px;
  margin: 0 auto;
}

.transform__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.2rem;
}

.transform__row:hover {
  border-color: var(--line-gold);
}

.transform__col {
  font-size: 0.95rem;
  line-height: 1.4;
}

.transform__col--before {
  color: var(--muted);
  text-align: right;
}

.transform__col--before::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  margin-right: 0.5rem;
}

.transform__col--after {
  color: var(--gold-2);
  font-weight: 600;
}

.transform__col--after::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  margin-right: 0.5rem;
}

.transform__arrow {
  color: var(--gold);
  display: grid;
  place-items: center;
}

@media (max-width: 560px) {
  .transform__row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }

  .transform__col--before {
    text-align: center;
  }

  .transform__arrow svg {
    transform: rotate(90deg);
  }
}

/* ---------- Nossa entrega (serviços) ---------- */
.services__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.service-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px -20px rgba(232, 177, 63, 0.25);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(232, 177, 63, 0.18), rgba(232, 177, 63, 0.05));
  border: 1px solid var(--line-gold);
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Diferencial ---------- */
.diff__band {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(165deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow);
  text-align: center;
}

.diff__band .section__title {
  margin-bottom: 1.8rem;
}

.diff__band .section__label {
  display: inline-flex;
  justify-content: center;
}

.diff__chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}

.diff__chip {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid var(--line);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
}

.diff__chip--final {
  color: #101525;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
}

.diff__arrow {
  color: var(--gold);
  display: grid;
  place-items: center;
}

.diff__text {
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

.diff__text strong {
  color: var(--gold-2);
}

/* ---------- Como trabalhamos (jornada) ---------- */
.steps {
  border-top: 1px solid var(--line);
}

.steps__grid {
  display: grid;
  gap: 1.25rem;
  counter-reset: none;
}

@media (min-width: 640px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .steps__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  padding-top: 3.2rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.step-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
}

.step-card__num {
  position: absolute;
  top: -14px;
  left: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #101525;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 10px 24px -8px rgba(232, 177, 63, 0.6);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

.steps__note {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.steps__note strong {
  color: var(--gold-2);
}

/* ---------- Valores ---------- */
.values__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.value-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(232, 177, 63, 0.1);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
}
