:root {
  --navy-dark: #061425;
  --navy: #0B192B;
  --gold: #C19545;
  --gold-light: #DAAF76;
  --green-light: #7ED957;
  --green-lighter: #A6E88F;
  --accent-blue: #6FA8DC;
  --accent-rose: #E0879B;
  --accent-violet: #A78BDB;
  --white: #FFFFFF;
  --gray-light: #DEDEDF;
  --gray-text: #404048;
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

/* ===== Shared ===== */

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section__container--narrow {
  max-width: 800px;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.eyebrow--center {
  text-align: center;
}

.section__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 20px;
}

.section__heading--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-right: 12px;
  margin-top: 2px;
}

.btn {
  display: inline-block;
  padding: 22px 52px;
  border-radius: 34px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn--primary {
  background-color: var(--green-light);
  color: var(--navy-dark);
}

.btn--primary:hover {
  background-color: var(--green-lighter);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--green-light);
  border: 1px solid var(--green-light);
}

.btn--outline:hover {
  background-color: rgba(126, 217, 87, 0.1);
}

/* scroll reveal: visível por padrão; JS só adiciona o efeito quando consegue rodar */
.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Header ===== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background-color: rgba(6, 20, 37, 0.9);
  box-shadow: 0 1px 0 rgba(193, 149, 69, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.header__cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 20px;
  border-radius: 30px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header__cta {
  border-color: var(--green-light);
  color: var(--green-light);
}

.header__cta:hover {
  background-color: var(--green-light);
  color: var(--navy-dark);
}

/* ===== 1. Hero ===== */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #14305c 0%, #0d2040 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
}

.hero__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
  width: 100%;
}

.hero__content {
  flex: 0 1 45%;
  color: var(--white);
}

.hero__content .eyebrow {
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 620px;
  letter-spacing: -0.01em;
}

.hero__headline .highlight {
  color: var(--gold);
}

.hero__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
  max-width: 530px;
}

.hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero__benefits strong {
  color: var(--white);
  font-weight: 700;
}

.hero__benefit-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 3px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero .btn--primary {
  border-radius: 10px;
  padding: 23px 54px;
  box-shadow: 0 10px 26px rgba(126, 217, 87, 0.28);
}

.hero__microcopy {
  font-size: 0.8rem;
  color: rgba(222, 222, 223, 0.55);
  padding-left: 4px;
}

.hero__media {
  position: absolute;
  right: calc(12% + 40px);
  bottom: 0;
  height: 89%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 130%;
  aspect-ratio: 1 / 1;
  max-width: 620px;
  bottom: 5%;
  right: 10%;
  background: radial-gradient(circle, rgba(43, 92, 145, 0.34) 0%, rgba(11, 25, 43, 0) 68%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.hero__photo {
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero__photo-img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}

/* ===== 2. Vídeo ===== */

.video-section {
  background-color: #0a0a0a;
  padding: 100px 40px;
}

.video-section__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.video-section__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.video-section__intro {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 36px;
}

.video-section__thumbnail {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 10;
  margin: 0 auto 36px;
  border-radius: 8px;
  overflow: hidden;
}

.video-section__placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  background-color: rgba(193, 149, 69, 0.05);
}

.video-section__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-section__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ===== 3. Capacidades ===== */

.capabilities-section {
  background: linear-gradient(160deg, #14305c 0%, #0d2040 100%);
  padding: 100px 40px;
}

.capabilities-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

.capabilities-section__media {
  flex: 1;
}

.capabilities-section__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.capabilities-section__content {
  flex: 1;
  color: var(--white);
}

.capabilities-section__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.35;
  margin-bottom: 36px;
}

.capabilities-section__heading .highlight {
  color: var(--gold);
}

.capabilities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 40px;
}

.capabilities-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.capabilities-list strong {
  color: var(--gold);
  font-weight: 700;
}

.capabilities-list__arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

/* ===== 4. O que seu site precisa ter ===== */

.value-section {
  background-color: var(--navy);
  padding: 110px 40px;
}

.value-section__container {
  max-width: 860px;
  margin: 0 auto;
}

.value-section__heading {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 36px;
}

.value-section__heading .highlight {
  color: var(--gold);
}

.value-section__lead {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-light);
  max-width: 620px;
  margin: 0 auto 18px;
}

.value-section__lead strong {
  color: var(--white);
  font-weight: 700;
}

.value-section__lead--accent {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.value-section__lead--accent .highlight {
  color: var(--gold);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 56px;
}

.value-card {
  --card-accent: var(--gold);
  --card-accent-soft: rgba(193, 149, 69, 0.14);
  position: relative;
  background-color: var(--navy-dark);
  border: 1px solid rgba(193, 149, 69, 0.15);
  border-left: 3px solid var(--card-accent);
  border-radius: 10px;
  padding: 30px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-accent);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.value-card:nth-child(2) {
  --card-accent: var(--accent-blue);
  --card-accent-soft: rgba(111, 168, 220, 0.14);
}

.value-card:nth-child(3) {
  --card-accent: var(--accent-rose);
  --card-accent-soft: rgba(224, 135, 155, 0.14);
}

.value-card:nth-child(4) {
  --card-accent: var(--accent-violet);
  --card-accent-soft: rgba(167, 139, 219, 0.14);
}

.value-card:nth-child(5) {
  --card-accent: var(--green-light);
  --card-accent-soft: rgba(126, 217, 87, 0.14);
}

.value-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--card-accent-soft);
  color: var(--card-accent);
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-card__icon {
  transform: scale(1.1) rotate(-6deg);
}

.value-card__icon svg {
  width: 22px;
  height: 22px;
}

.value-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

.value-card p strong {
  color: var(--gold-light);
  font-weight: 700;
}

.js-ready .value-card {
  transform: translateY(28px) scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card.is-visible {
  transform: translateY(0) scale(1);
}

.value-card:hover.is-visible {
  transform: translateY(-6px) scale(1);
}

.js-ready .value-card:nth-child(1) { transition-delay: 0s; }
.js-ready .value-card:nth-child(2) { transition-delay: 0.08s; }
.js-ready .value-card:nth-child(3) { transition-delay: 0.16s; }
.js-ready .value-card:nth-child(4) { transition-delay: 0.24s; }
.js-ready .value-card:nth-child(5) { transition-delay: 0.32s; }

.value-section__closing {
  margin-top: 60px;
  padding-top: 44px;
  border-top: 1px solid rgba(193, 149, 69, 0.3);
  text-align: center;
}

.value-section__closing-heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 22px;
}

.value-section__closing-heading .highlight {
  color: var(--gold);
}

.value-section__closing-intro {
  color: var(--gray-light);
  font-size: 0.98rem;
  margin-bottom: 40px;
}

.value-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  margin-bottom: 24px;
}

.value-benefit-card {
  background-color: var(--navy-dark);
  border: 1px solid rgba(193, 149, 69, 0.15);
  border-radius: 10px;
  padding: 24px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.value-benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 149, 69, 0.4);
}

.value-benefit-card__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}

.value-benefit-card__icon svg {
  width: 22px;
  height: 22px;
}

.value-benefit-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--white);
  margin-bottom: 8px;
}

.value-benefit-card p {
  color: var(--gray-light);
  font-size: 0.85rem;
  line-height: 1.55;
}

.value-benefit-hero {
  position: relative;
  text-align: center;
  background-color: rgba(193, 149, 69, 0.06);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 40px 36px;
  margin-bottom: 56px;
  box-shadow: 0 0 40px rgba(193, 149, 69, 0.12);
}

.value-benefit-hero__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.value-benefit-hero__icon svg {
  width: 30px;
  height: 30px;
}

.value-benefit-hero__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--gold);
  max-width: 500px;
  margin: 0 auto 12px;
}

.value-benefit-hero__text {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}

.value-section__final {
  padding-top: 40px;
  border-top: 1px solid rgba(193, 149, 69, 0.3);
}

.value-section__final-lead {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.value-section__final-heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: var(--white);
  max-width: 560px;
  margin: 0 auto;
}

.value-section__final-heading .highlight {
  color: var(--gold);
}

/* ===== 3B. Redes sociais x website ===== */

.social-section {
  background: #ffffff;
  padding: 120px 40px;
}

.social-section__container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.social-section__eyebrow-text {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.social-section__quote {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.4;
  color: var(--navy-dark);
  margin-bottom: 40px;
}

.social-section__lead {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--navy-dark);
  max-width: 620px;
  margin: 0 auto 24px;
}

.social-section__paragraph {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #1e1e24;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Frase de destaque intermediária, com sublinhado em degradê sutil */
.social-section__highlight {
  position: relative;
  display: table;
  margin: 46px auto 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  line-height: 1.4;
  color: var(--navy-dark);
  text-align: center;
  padding-bottom: 16px;
}

.social-section__highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #d6249f, #fd5949, #f7b955);
}

.social-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 10px 0 64px;
}

.social-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #1e1e24;
  font-size: 0.95rem;
  line-height: 1.65;
}

.social-list strong {
  color: var(--navy-dark);
  font-weight: 700;
}

.social-list__arrow {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #d6249f, #fd5949, #f7b955);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Tríade de destaque visual */
.social-triad {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 34px 20px;
  margin-bottom: 64px;
  border-top: 1px solid rgba(11, 25, 43, 0.1);
  border-bottom: 1px solid rgba(11, 25, 43, 0.1);
}

.social-triad span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-dark);
}

.social-triad span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(11, 25, 43, 0.2);
  margin-left: 24px;
  vertical-align: middle;
}

.social-triad__accent {
  background: linear-gradient(90deg, #d6249f, #fd5949, #f7b955);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Metáfora final, com tratamento tipográfico institucional */
.social-section__metaphor {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.5;
  color: var(--navy-dark);
  max-width: 640px;
  margin: 0 auto 30px;
}

.social-section__punchline {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1e1e24;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== 3C. Cliente Persona ===== */

.persona-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #14305c 0%, #0d2040 100%);
  padding: 120px 40px;
}

.persona-section__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.persona-intro {
  text-align: center;
  margin-bottom: 4px;
}

.persona-section__heading {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--white);
}

.persona-section__heading .highlight {
  color: var(--gold);
}

/* Perguntas */

.persona-question {
  text-align: center;
  margin: 60px 0 4px;
}

.persona-question__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.35;
  color: var(--white);
}

.persona-question__heading .highlight {
  color: var(--gold);
}

/* Nuvens de resposta */

.persona-cloud {
  position: relative;
  max-width: 480px;
  margin-top: 40px;
  padding: 36px 34px 32px;
  background-color: var(--navy-dark);
  border: 1px solid rgba(193, 149, 69, 0.25);
  border-radius: 60px 100px 80px 90px / 90px 70px 100px 80px;
}

.persona-cloud__tail {
  position: absolute;
  top: -30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.persona-cloud--left .persona-cloud__tail {
  right: 56px;
  align-items: flex-end;
}

.persona-cloud--right .persona-cloud__tail {
  left: 56px;
  align-items: flex-start;
}

.persona-cloud__tail span {
  display: block;
  border-radius: 50%;
  background-color: var(--navy-dark);
  border: 1px solid rgba(193, 149, 69, 0.25);
}

.persona-cloud__tail span:nth-child(1) {
  width: 16px;
  height: 16px;
}

.persona-cloud__tail span:nth-child(2) {
  width: 11px;
  height: 11px;
}

.persona-cloud__tail span:nth-child(3) {
  width: 7px;
  height: 7px;
}

.persona-cloud__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.persona-cloud p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.persona-cloud p:last-child {
  margin-bottom: 0;
}

.persona-cloud p strong {
  color: var(--white);
  font-weight: 700;
}

.persona-cloud p.persona-chapter__lead {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
}

/* Linha da nuvem + conector humano-persona-empresa */

.persona-cloud-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.persona-cloud-row--reverse {
  flex-direction: row-reverse;
}

.persona-cloud-row .persona-cloud {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

.persona-connect {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.persona-connect__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.persona-connect__icon svg {
  width: 22px;
  height: 22px;
}

.persona-connect__icon--human {
  background-color: rgba(111, 168, 220, 0.14);
  color: var(--accent-blue);
}

.persona-connect__icon--cat {
  background-color: rgba(193, 149, 69, 0.14);
  color: var(--gold);
  width: 52px;
  height: 52px;
}

.persona-connect__icon--cat svg {
  width: 28px;
  height: 28px;
}

.persona-connect__icon--business {
  background-color: rgba(126, 217, 87, 0.14);
  color: var(--green-light);
}

.persona-connect__line {
  width: 1px;
  height: 22px;
  background-color: rgba(193, 149, 69, 0.35);
}

.persona-triad__accent strong {
  color: var(--gold);
}

/* ===== 4. Solução (dúvida) ===== */

.doubt-section {
  background-color: #0a0a0a;
  padding: 110px 40px;
}

.doubt-section__container {
  max-width: 760px;
  margin: 0 auto;
}

.doubt-section__eyebrow-text {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.doubt-section__quote {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 40px;
}

.doubt-section__lead {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 24px;
}

.doubt-section__paragraph {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.doubt-section__paragraph strong {
  color: #ffffff;
  font-weight: 700;
}

.doubt-section__paragraph--center {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.doubt-section__mosaic-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 40px;
}

.doubt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 44px 0 60px;
}

.doubt-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.doubt-list strong {
  color: #ffffff;
  font-weight: 700;
}

.doubt-list__arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.doubt-section__closing-heading {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: #ffffff;
  max-width: 640px;
  margin: 0 auto 28px;
}

.doubt-section__closing-heading .highlight-navy {
  color: var(--gold);
}

.doubt-section__punchline {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 620px;
  margin: 36px auto 0;
}

/* ===== 5B. Para quem é / não é ===== */

.fit-section {
  background: linear-gradient(160deg, #14305c 0%, #0d2040 100%);
  padding: 100px 40px;
}

.fit-section__container {
  max-width: 1100px;
  margin: 0 auto;
}

.fit-section__heading {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.4;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 50px;
}

.fit-section__heading .highlight {
  color: var(--gold);
}

.fit-section__heading--secondary {
  margin-top: 80px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fit-card {
  border: 1px solid;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fit-card--yes {
  border-color: rgba(193, 149, 69, 0.35);
  background-color: rgba(193, 149, 69, 0.04);
}

.fit-card--no {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.02);
}

.fit-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.fit-card__icon--yes {
  background-color: var(--gold);
  color: var(--navy-dark);
}

.fit-card__icon--no {
  background-color: rgba(179, 58, 58, 0.85);
  color: var(--white);
}

.fit-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.fit-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.fit-card p strong {
  color: var(--white);
  font-weight: 700;
}

.fit-card p em {
  font-style: italic;
  color: var(--gray-light);
}

/* ===== 6. Portfólio ===== */

.portfolio-section {
  background-color: var(--navy);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.portfolio-card {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.portfolio-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  margin-bottom: 18px;
  overflow: hidden;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.portfolio-card__image::after {
  content: '🔍  clique para ver o site';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 20, 37, 0.72);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portfolio-card:hover .portfolio-card__image::after {
  opacity: 1;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.04);
}

.portfolio-card__category {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.portfolio-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.portfolio-card p {
  color: var(--gray-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Modal de visualização do portfólio */

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.portfolio-modal.is-open {
  display: flex;
}

.portfolio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 37, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.portfolio-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  height: 100%;
  max-height: 800px;
  background-color: var(--navy-dark);
  border: 1px solid rgba(193, 149, 69, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.portfolio-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(193, 149, 69, 0.2);
  flex-shrink: 0;
}

.portfolio-modal__title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.portfolio-modal__close {
  background: none;
  border: 1px solid rgba(193, 149, 69, 0.4);
  color: var(--gold-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.portfolio-modal__close:hover {
  background-color: rgba(193, 149, 69, 0.15);
}

.portfolio-modal__scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.portfolio-modal__scroll img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== 7. Por que escolher ===== */

.why-section {
  background-color: var(--navy-dark);
}

.why-section__grid {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.why-section__intro {
  flex: 1;
}

.why-section__intro p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-list {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== 9. Sobre ===== */

.about-section {
  background: linear-gradient(160deg, #14305c 0%, #0d2040 100%);
}

.about-section__grid {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-section__media {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.about-section__photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  background-color: rgba(193, 149, 69, 0.05);
}

.about-section__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-section__badge {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
}

.about-section__badge-ring {
  width: 100%;
  height: 100%;
}

.about-section__badge-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  fill: var(--gold-light);
  text-transform: uppercase;
}

.about-section__badge-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 8px;
  background-color: var(--navy-dark);
  border-radius: 50%;
}

.about-section__content {
  flex: 1;
  color: var(--white);
}

.about-section__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--gold);
  margin-bottom: 20px;
}

.about-section__content p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-section__content p strong {
  color: var(--gold-light);
}

/* ===== 8. Prova social por dados ===== */

.proof-section {
  background-color: var(--navy);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.proof-card {
  background-color: var(--navy-dark);
  border: 1px solid rgba(193, 149, 69, 0.2);
  border-radius: 10px;
  padding: 32px 26px;
  text-align: center;
}

.proof-card__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.proof-card p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.proof-card__source {
  display: block;
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.proof-card__source:hover {
  color: var(--green-light);
  text-decoration: underline;
}

.proof-section__note {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
}


/* ===== 10. Depoimentos ===== */

.testimonials-section {
  background-color: var(--navy);
}

.testimonials-section__note {
  text-align: center;
  color: var(--gray-light);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card--placeholder {
  border: 2px dashed var(--gold);
  border-radius: 8px;
  padding: 26px;
  background-color: rgba(193, 149, 69, 0.05);
}

.testimonial-card--placeholder p {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.testimonial-card--placeholder span {
  color: var(--gray-light);
  font-size: 0.8rem;
}

/* ===== 11. Oferta ===== */

.offer-section {
  background: linear-gradient(160deg, #14305c 0%, #0d2040 100%);
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  margin: 50px auto 40px;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.offer-bonus {
  max-width: 900px;
  margin: 8px auto 46px;
  padding-top: 34px;
  border-top: 1px solid rgba(193, 149, 69, 0.15);
}

.offer-bonus__label {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green-light);
  margin-bottom: 24px;
}

.offer-bonus__featured {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 28px 30px;
  margin-bottom: 20px;
  text-align: center;
  background-image: linear-gradient(var(--navy-dark), var(--navy-dark)),
    linear-gradient(90deg, #4285F4, #EA4335 33%, #FBBC05 66%, #34A853);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.offer-bonus__featured-tag {
  display: inline-block;
  background-color: var(--green-light);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.offer-bonus__featured h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.offer-bonus__featured p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.offer-bonus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.offer-bonus__item {
  background-color: var(--navy);
  border: 1px solid rgba(193, 149, 69, 0.15);
  border-radius: 8px;
  padding: 22px 20px;
}

.offer-bonus__item h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.offer-bonus__item p {
  color: var(--gray-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

.offer-section__cta {
  text-align: center;
}

/* ===== 8B. O que você ganha ===== */

.gains-section {
  background-color: var(--navy);
}

.gains-section .eyebrow {
  color: var(--gold);
}

.gains-section__heading {
  color: var(--white);
}

.gains-section__heading .highlight {
  color: var(--gold);
}

.gains-section__lead {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-light);
  max-width: 680px;
  margin: 0 auto 16px;
}

.gains-section__subheading {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin: 30px auto 34px;
}

.gains-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 720px;
  margin: 0 auto 10px;
}

.gains-list li {
  display: flex;
  align-items: flex-start;
}

.gains-list li h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gains-list li p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.55;
}

.gains-section .offer-bonus {
  margin-top: 30px;
}

.gains-section .offer-bonus__featured p {
  margin-bottom: 12px;
}

.gains-section .offer-bonus__featured p:last-of-type {
  margin-bottom: 0;
}

.offer-bonus__note {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gray-light);
  opacity: 0.7;
}

.gains-section__closing {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--white);
  max-width: 620px;
  margin: 44px auto 40px;
}

/* ===== 9A. Investimento ===== */

.invest-section {
  background-color: var(--navy-dark);
  padding: 120px 40px;
}

.invest-section__container {
  max-width: 880px;
  margin: 0 auto;
}

.invest-intro {
  text-align: center;
  margin-bottom: 90px;
}

.invest-intro__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  color: var(--white);
  max-width: 700px;
  margin: 24px auto 40px;
}

.invest-intro__sub {
  color: var(--gray-light);
  font-size: 1rem;
  margin-bottom: 10px;
}

.invest-intro__quote {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--gold-light);
  max-width: 620px;
  margin: 0 auto 28px;
}

.invest-intro__text {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 16px;
}

.invest-intro__text strong {
  color: var(--white);
}

.invest-compare {
  background-color: var(--navy);
  border: 1px solid rgba(193, 149, 69, 0.15);
  border-radius: 14px;
  padding: 46px 40px;
  margin-bottom: 70px;
}

.invest-compare__list {
  display: flex;
  flex-direction: column;
}

.invest-compare__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(193, 149, 69, 0.12);
}

.invest-compare__row:first-child {
  padding-top: 0;
}

.invest-compare__label {
  color: var(--gray-light);
  font-size: 0.95rem;
}

.invest-compare__value {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.invest-compare__total {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 2px solid var(--gold);
  text-align: center;
}

.invest-compare__total-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.invest-compare__total-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--gold);
}

.invest-compare__note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(193, 149, 69, 0.12);
  color: var(--gray-light);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.invest-shift {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
  padding: 40px 0;
  border-top: 1px solid rgba(193, 149, 69, 0.25);
  border-bottom: 1px solid rgba(193, 149, 69, 0.25);
}

.invest-shift__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--white);
  margin-bottom: 16px;
}

.invest-shift__heading .highlight {
  color: var(--gold);
}

.invest-shift p {
  color: var(--gray-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

.invest-deliverables {
  margin-bottom: 90px;
}

.invest-deliverables__heading {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin-bottom: 44px;
}

.invest-deliverables__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.invest-card {
  position: relative;
  background-color: var(--navy);
  border: 1px solid rgba(193, 149, 69, 0.15);
  border-radius: 10px;
  padding: 30px 26px;
}

.invest-card:nth-child(5) {
  grid-column: 1 / -1;
}

.invest-card__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.invest-card__icon svg {
  width: 26px;
  height: 26px;
}

.invest-card h4 {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.invest-card p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.invest-card--bonus {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--navy), var(--navy)),
    linear-gradient(90deg, #4285F4, #EA4335 33%, #FBBC05 66%, #34A853);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.invest-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: var(--green-light);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.invest-anchor {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.invest-anchor__heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 18px;
}

.invest-anchor__lead {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.invest-anchor__price {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--gray-light);
  text-decoration: line-through;
  text-decoration-color: rgba(193, 149, 69, 0.6);
  text-decoration-thickness: 2px;
  margin-bottom: 22px;
}

.invest-anchor__note {
  color: var(--gray-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

.invest-anchor__note strong {
  color: var(--white);
}

.invest-offer-card {
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 56px 40px;
  margin: 0 auto 90px;
  max-width: 640px;
  box-shadow: 0 0 0 1px rgba(193, 149, 69, 0.15), 0 30px 80px rgba(193, 149, 69, 0.15), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.invest-offer-card__tag {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.invest-offer-card__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
}

.invest-offer-card__price {
  margin-bottom: 30px;
}

.invest-offer-card__price-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 4.6rem);
  color: var(--gold);
  line-height: 1;
}

.invest-offer-card__price-note {
  display: block;
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.invest-offer-card__checklist {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin: 0 auto 32px;
}

.invest-offer-card__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  font-size: 0.95rem;
}

.invest-offer-card__scarcity {
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.invest-offer-card__scarcity-note {
  color: var(--gray-light);
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto 30px;
}

.invest-offer-card__cta {
  width: 100%;
  max-width: 380px;
}

.invest-offer-card__microcopy {
  margin-top: 16px;
  color: var(--gray-light);
  font-size: 0.82rem;
}

.invest-timeline {
  max-width: 640px;
  margin: 0 auto 90px;
  text-align: center;
}

.invest-timeline__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--white);
  margin-bottom: 24px;
}

.invest-timeline p {
  color: var(--gray-light);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.invest-timeline p strong {
  color: var(--white);
}

.invest-timeline__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 28px 0;
}

.invest-timeline__points li {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
}

.invest-timeline__days {
  display: block;
  margin: 20px 0 26px;
}

.invest-timeline__days-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
}

.invest-timeline__days-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 8px;
}

.invest-timeline p.invest-timeline__highlight {
  display: inline-block;
  background-color: rgba(193, 149, 69, 0.08);
  border: 1px solid rgba(193, 149, 69, 0.3);
  border-radius: 10px;
  padding: 18px 24px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
  margin-top: 8px;
}

.invest-manifesto {
  background-color: #0a0a0a;
  border-radius: 16px;
  padding: 70px 44px;
  text-align: center;
  margin-bottom: 60px;
}

.invest-manifesto__heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--white);
  margin-bottom: 34px;
}

.invest-manifesto__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 34px;
}

.invest-manifesto__list li {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.5;
}

.invest-manifesto__closing {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.invest-manifesto__closing-sub {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.6;
}

.invest-manifesto__closing-sub strong {
  color: var(--gold);
}

.invest-final-cta {
  text-align: center;
}

.invest-final-cta__note {
  margin-top: 16px;
  color: var(--gray-light);
  font-size: 0.85rem;
}

/* ===== 9B. Garantia ===== */

.guarantee-section {
  background: linear-gradient(160deg, #14305c 0%, #0d2040 100%);
}

.guarantee-section__grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.guarantee-section__content {
  flex: 1;
}

.guarantee-section__content p {
  color: var(--gray-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

.guarantee-section__extra {
  margin-top: 24px;
  padding: 22px 24px;
  background-color: rgba(126, 217, 87, 0.08);
  border: 1px solid var(--green-light);
  border-radius: 10px;
}

.guarantee-section__extra h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.guarantee-section__extra p .guarantee-section__extra-accent {
  color: var(--gold);
}

.guarantee-section__extra p .guarantee-section__extra-connector {
  color: var(--white);
}

.guarantee-section__extra p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.guarantee-section__extra p:last-child {
  margin-bottom: 0;
}

.guarantee-section__extra p strong {
  color: var(--white);
}

.guarantee-section__extra p.guarantee-section__extra-note {
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(222, 222, 223, 0.65);
}

.guarantee-seal {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  margin: 0 auto;
}

.guarantee-seal__ring {
  width: 100%;
  height: 100%;
}

.guarantee-seal__ring-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  fill: var(--gold-light);
  text-transform: uppercase;
}

.guarantee-seal__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background-color: var(--navy-dark);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(193, 149, 69, 0.08), 0 14px 34px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.guarantee-seal__laurel {
  width: 24px;
  height: 66px;
  color: var(--gold);
  flex-shrink: 0;
}

.guarantee-seal__number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-seal__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
}

.guarantee-seal__unit {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  color: var(--white);
  margin-top: 2px;
}

/* ===== 12. FAQ ===== */

.faq-section {
  background-color: #0a0a0a;
}

.faq-section .section__container--narrow {
  padding-bottom: 40px;
}

.faq-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--navy-dark);
  border: 1px solid rgba(193, 149, 69, 0.2);
  border-radius: 8px;
  padding: 20px 24px;
}

.faq-item summary {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 14px;
}

.faq-item p strong {
  color: var(--gold-light);
}

/* ===== 13. CTA final ===== */

.final-cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 60px 40px 110px;
  text-align: center;
}

.final-cta__container {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--gray-light);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* ===== WhatsApp flutuante ===== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 200;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  background-color: var(--green-lighter);
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ===== 14. Rodapé ===== */

.footer {
  background-color: #050d18;
  padding: 60px 40px 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(193, 149, 69, 0.15);
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
}

.footer__logo-img {
  height: 84px;
  width: auto;
  display: block;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer__brand p {
  color: var(--gray-light);
  font-size: 0.85rem;
  max-width: 280px;
}

.footer__brand p a {
  color: var(--gold-light);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--gray-light);
  font-size: 0.9rem;
}

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

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--gray-light);
  font-size: 0.9rem;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  transition: color 0.2s ease;
}

.footer__contact-link:hover {
  color: var(--gold-light);
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  color: var(--gray-light);
  font-size: 0.8rem;
}

.footer__bottom a {
  color: var(--gray-light);
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .section__container {
    padding: 70px 24px;
  }

  .doubt-section {
    padding: 80px 24px;
  }

  .value-section {
    padding: 80px 24px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-benefits-grid {
    grid-template-columns: 1fr;
  }

  .value-benefit-hero {
    padding: 32px 22px;
  }

  .persona-section {
    padding: 80px 24px;
  }

  .persona-question {
    margin-top: 44px;
  }

  .persona-cloud-row,
  .persona-cloud-row--reverse {
    flex-direction: column;
    margin-top: 30px;
  }

  .persona-cloud {
    max-width: 100%;
    width: 100%;
    padding: 30px 24px 26px;
    border-radius: 30px;
  }

  .persona-cloud__tail {
    display: none;
  }

  .persona-connect {
    flex-direction: row;
  }

  .persona-connect__line {
    width: 22px;
    height: 1px;
  }

  .invest-section {
    padding: 80px 20px;
  }

  .invest-intro {
    margin-bottom: 60px;
  }

  .invest-compare {
    padding: 32px 22px;
    margin-bottom: 50px;
  }

  .invest-compare__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .invest-shift {
    margin-bottom: 60px;
  }

  .invest-deliverables {
    margin-bottom: 60px;
  }

  .invest-deliverables__grid {
    grid-template-columns: 1fr;
  }

  .invest-card:nth-child(5) {
    grid-column: auto;
  }

  .invest-offer-card {
    padding: 44px 24px;
    margin-bottom: 60px;
  }

  .invest-offer-card__checklist {
    width: 100%;
  }

  .invest-timeline {
    margin-bottom: 60px;
  }

  .invest-manifesto {
    padding: 50px 26px;
  }

  .social-section {
    padding: 80px 24px;
  }

  .social-triad {
    flex-direction: column;
    gap: 16px;
  }

  .social-triad span:not(:last-child)::after {
    display: none;
  }

  .hero__container {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .hero__content {
    flex: none;
  }

  .hero__headline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__benefits {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__benefits li {
    text-align: left;
  }

  .hero__cta-group {
    align-items: center;
    width: 100%;
  }

  .hero .btn--primary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero__media {
    position: static;
    width: 100%;
    height: 42vh;
    max-height: 360px;
    justify-content: center;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-section__heading--secondary {
    margin-top: 60px;
  }

  .capabilities-section__container {
    flex-direction: column;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-modal {
    padding: 0;
  }

  .portfolio-modal__panel {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .why-section__grid,
  .about-section__grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .why-list li {
    text-align: left;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .offer-bonus__grid {
    grid-template-columns: 1fr;
  }

  .guarantee-section__grid {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }

  .header__cta {
    display: none;
  }

  .footer__container {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
