:root {
  --violeta: #4C3973;
  --roxo: #6626A6;
  --magenta: #A6035D;
  --azul: #77A0F2;
  --rosa: #F2DFE4;
  --off-white: #FFF9EE;

  --text-dark: #2D1B4E;
  --text-muted: #6B5A8A;
  --text-light: #F5F0FF;
  --text-light-muted: #C8B8E8;

  --radius: 16px;
  --header-h: 76px;
}

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

*, *::before, *::after { font-family: 'Montserrat', sans-serif !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.1; font-weight: 700; }
h2 { font-weight: 800; letter-spacing: -0.01em; }
h3 { font-weight: 600; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0.5rem 0 1.25rem;
}

section { padding: clamp(4rem, 9vw, 7rem) 0; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: inherit;
}

.btn:hover::after { transform: scaleX(1); transform-origin: left; }

.btn--primary {
  background: var(--violeta);
  color: var(--off-white);
  box-shadow: 0 4px 15px rgba(76, 57, 115, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border-color: var(--azul);
}

.btn--primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px -6px rgba(76, 57, 115, 0.5);
}

.btn--ghost:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px -6px rgba(119, 160, 242, 0.4);
  background: rgba(119, 160, 242, 0.12);
  border-color: var(--text-light);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.85;
  transition: all 0.25s ease;
}

.tag:hover { opacity: 1; transform: translateY(-2px); }

/* ========== HEADER ========== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(76, 57, 115, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

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

.header__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--text-light);
  border-color: var(--azul);
}

.nav__link:hover { transform: translateY(-1px); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid rgba(119, 160, 242, 0.3);
  border-radius: 8px;
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav__toggle svg { width: 20px; height: 20px; color: var(--text-light); }

/* ========== HERO ========== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76, 57, 115, 0.8), rgba(102, 38, 166, 0.5));
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 6rem clamp(1.25rem, 4vw, 3rem);
}

.hero__content {
  max-width: 620px;
}

html { background: var(--violeta); }

.hero__name {
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 800;
  margin: 0 0 0.3rem;
  background: linear-gradient(135deg, var(--off-white), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s ease-in-out infinite;
  background-size: 200% 200%;
}

.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--azul);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.hero__label {
  margin-bottom: 1.5rem;
  color: var(--rosa);
  font-size: 0.9rem;
}

.hero__bio {
  max-width: 52ch;
  color: var(--text-light-muted);
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

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

/* ========== ABOUT (Phone mockup) ========== */

.about { background: var(--off-white); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__visual { text-align: center; }

.about__lead {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--magenta);
}

.about__content p + p { margin-top: 1rem; }
.about__content p { color: var(--text-muted); }

.phone-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.phone-frame {
  width: 260px;
  height: 520px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(166, 3, 93, 0.2), 0 0 0 3px var(--magenta);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.phone-mockup:hover .phone-frame {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 80px rgba(166, 3, 93, 0.3), 0 0 0 3px var(--magenta);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 999px;
  z-index: 2;
}

.phone-tabs {
  display: flex;
  gap: 0.75rem;
}

.phone-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--magenta);
  background: transparent;
  color: var(--magenta);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.phone-tab:hover {
  background: rgba(166, 3, 93, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 3, 93, 0.2);
}

.phone-tab.active {
  background: var(--magenta);
  color: var(--off-white);
  box-shadow: 0 4px 15px rgba(166, 3, 93, 0.3);
}

.phone-tab:active { transform: translateY(0) scale(0.97); }

/* ========== INSPIRAÇÃO ========== */

.inspiracao { background: var(--rosa); }

.inspiracao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.inspiracao__quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--magenta);
  line-height: 1.5;
  padding: 2rem;
  border-left: 4px solid var(--magenta);
  background: rgba(166, 3, 93, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.inspiracao__quote:hover { transform: translateX(4px); }

.inspiracao__quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
}

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

/* ========== MVV ========== */

.mvv { background: var(--off-white); }

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

.mvv__card {
  background: var(--rosa);
  border: 1px solid rgba(166, 3, 93, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.mvv__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -16px rgba(166, 3, 93, 0.25);
}

.mvv__card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 0.75rem;
}

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

/* ========== ODS ========== */

.ods { background: var(--violeta); color: var(--text-light); }

.ods .section-title { color: var(--text-light); }
.ods .eyebrow { color: var(--azul); }
.ods__intro { color: var(--text-light-muted); margin-bottom: 2.5rem; }

.ods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.ods__card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(119, 160, 242, 0.2);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  text-align: center;
  cursor: default;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.ods__card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.ods__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--azul);
  line-height: 1;
}

.ods__title {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-light-muted);
  line-height: 1.2;
  max-width: 90px;
}

.ods__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--off-white);
  color: var(--text-dark);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  width: 180px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 10;
  line-height: 1.3;
}

.ods__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--off-white);
}

.ods__card:hover .ods__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========== PESQUISA ========== */

.pesquisa { background: var(--off-white); }

.pesquisa__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pesquisa__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pesquisa__stat {
  background: var(--rosa);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.pesquisa__stat:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px -12px rgba(166, 3, 93, 0.25);
}

.pesquisa__stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--magenta);
  display: inline-block;
}

.pesquisa__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

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

/* ========== PERSONA ========== */

.persona { background: var(--rosa); }

.persona__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.persona__avatar {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  border: 4px solid var(--magenta);
  box-shadow: 0 0 30px rgba(166, 3, 93, 0.2);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.persona__avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(166, 3, 93, 0.35);
}

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

.persona__name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 0.5rem;
}

.persona__desc { color: var(--text-muted); }

/* ========== PLANOS ========== */

.planos { background: var(--off-white); }

.planos__intro {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.planos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.planos__card {
  background: var(--rosa);
  border: 1px solid rgba(166, 3, 93, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.planos__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -16px rgba(166, 3, 93, 0.2);
}

.planos__card--highlight {
  border-color: var(--magenta);
  border-width: 2px;
  position: relative;
  background: linear-gradient(135deg, var(--rosa), rgba(166, 3, 93, 0.05));
}

.planos__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: var(--off-white);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.planos__card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(166, 3, 93, 0.1);
}

.planos__card-header h3 {
  font-size: 1.5rem;
  color: var(--magenta);
  margin-bottom: 0.3rem;
}

.planos__price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azul);
}

.planos__card-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

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

.planos__card-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.planos__card-body ul li {
  font-size: 0.85rem;
  color: var(--text-dark);
  padding-left: 1.2rem;
  position: relative;
}

.planos__card-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--azul);
  font-weight: 700;
}

.planos__btn {
  width: 100%;
  justify-content: center;
}

/* ========== FUTURO ========== */

.futuro { background: var(--roxo); color: var(--text-light); }

.futuro .section-title { color: var(--text-light); }
.futuro .eyebrow { color: var(--azul); }

.futuro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.futuro__phase {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(119, 160, 242, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.futuro__phase:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: var(--azul);
}

.futuro__phase-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.futuro__phase-icon {
  font-size: 2rem;
}

.futuro__phase-header h3 {
  font-size: 1.4rem;
  color: var(--azul);
}

.futuro__phase p {
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.futuro__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.futuro__tags .tag {
  border-color: var(--azul);
  color: var(--azul);
  opacity: 1;
}

.futuro__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ========== EQUIPE ========== */

.equipe {
  background: var(--violeta);
  color: var(--text-light);
  overflow: hidden;
}

.equipe .section-title { color: var(--text-light); }
.equipe .eyebrow { color: var(--azul); }

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

.equipe__card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(119, 160, 242, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, box-shadow 0.35s ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.equipe__card:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.5);
  z-index: 2;
  position: relative;
  border-color: var(--azul);
}

.equipe__card:hover .equipe__card-detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 0.75rem;
}

.equipe__card-img {
  width: 100px;
  height: 100px;
  border-radius: 15%;
  margin: 0 auto 0.75rem;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.equipe__card:hover .equipe__card-img {
  transform: scale(1.08);
}

.equipe__card-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.equipe__card-divider {
  width: 50%;
  margin: 8px auto;
  border: none;
  border-top: 1px solid rgba(119, 160, 242, 0.2);
}

.equipe__card-role {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--azul);
}

.equipe__card-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.35s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.equipe__card-detail .tag {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-color: rgba(119, 160, 242, 0.3);
  color: var(--azul);
  opacity: 1;
}

/* ========== FOOTER ========== */

.footer {
  background: var(--violeta);
  border-top: 1px solid rgba(119, 160, 242, 0.15);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
}

.footer__links {
  display: flex;
  gap: 1.25rem;
}

.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

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

.footer__note {
  width: 100%;
  font-size: 0.75rem;
  color: var(--text-light-muted);
  text-align: center;
  border-top: 1px dashed rgba(119, 160, 242, 0.15);
  padding-top: 1.25rem;
}

/* ========== SCROLL REVEAL ========== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-scale {
  transform: scale(0.85);
}

.reveal-scale.is-visible {
  transform: scale(1);
}

.reveal-rotate {
  transform: perspective(600px) rotateX(8deg) translateY(40px);
}

.reveal-rotate.is-visible {
  transform: perspective(600px) rotateX(0) translateY(0);
}

.reveal.is-visible { transition-delay: var(--delay, 0ms); }
.reveal-scale.is-visible { transition-delay: var(--delay, 0ms); }
.reveal-rotate.is-visible { transition-delay: var(--delay, 0ms); }
.reveal-zoom.is-visible { transition-delay: var(--delay, 0ms); }

@keyframes revealZoomIn {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); filter: blur(4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

.reveal-zoom.is-visible {
  animation: revealZoomIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ========== GLOBAL ANIMATIONS ========== */

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes countPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.pesquisa__stat.is-visible .pesquisa__stat-num {
  animation: countPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-6px) rotate(1deg); }
  66% { transform: translateY(3px) rotate(-1deg); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); text-shadow: 0 0 10px rgba(119, 160, 242, 0.3); }
  14% { transform: scale(1.08); text-shadow: 0 0 20px rgba(119, 160, 242, 0.6), 0 0 40px rgba(119, 160, 242, 0.3); }
  28% { transform: scale(1); text-shadow: 0 0 10px rgba(119, 160, 242, 0.3); }
  42% { transform: scale(1.05); text-shadow: 0 0 15px rgba(119, 160, 242, 0.5); }
  56% { transform: scale(1); text-shadow: 0 0 10px rgba(119, 160, 242, 0.3); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes slideUnderline {
  0% { width: 0; left: 50%; }
  100% { width: 100%; left: 0; }
}

@keyframes ripple {
  0% { box-shadow: 0 0 0 0 rgba(119, 160, 242, 0.4); }
  100% { box-shadow: 0 0 0 15px rgba(119, 160, 242, 0); }
}

@keyframes borderGlow {
  0%, 100% { border-color: var(--azul); box-shadow: 0 0 10px rgba(119, 160, 242, 0.1); }
  50% { border-color: var(--magenta); box-shadow: 0 0 20px rgba(166, 3, 93, 0.15); }
}

/* ========== HERO ANIMATIONS ========== */

.hero__tagline {
  animation: heartbeat 2s ease-in-out infinite;
  display: inline-block;
}

.hero__overlay {
  background: linear-gradient(135deg, rgba(76, 57, 115, 0.85), rgba(102, 38, 166, 0.5));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

/* ========== NAV ANIMATIONS ========== */

.nav__link {
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--azul);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
  left: 0;
}

/* ========== CARD ANIMATIONS ========== */



.futuro__phase {
  position: relative;
  overflow: hidden;
}

.futuro__phase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(119, 160, 242, 0.03), transparent 60%);
  animation: gradientShift 6s ease infinite;
  pointer-events: none;
}

/* ========== PHONE ANIMATIONS ========== */

/* ========== BORDER GLOW ON SECTIONS ========== */

.inspiracao__quote {
  position: relative;
}

.inspiracao__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--magenta), var(--azul), var(--magenta));
  background-size: 100% 200%;
  animation: gradientShift 3s ease infinite;
  border-radius: 2px;
}

/* ========== COUNTER ANIMATION ========== */

.pesquisa__stat-num {
  position: relative;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========== FOOTER LINKS ========== */

.footer__links a {
  position: relative;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--azul);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__links a:hover::after {
  width: 100%;
}

/* ========== BUTTON RIPPLE ========== */

.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: ripple 2s ease-out infinite;
}

/* ========== PERSONA AVATAR ========== */

.persona__avatar {
  position: relative;
}

.persona__avatar::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--magenta), var(--azul), var(--magenta)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 860px) {
  .about__inner,
  .inspiracao__inner,
  .pesquisa__inner,
  .persona__inner {
    grid-template-columns: 1fr;
  }

  .about__visual { order: -1; }
  .persona__visual { order: -1; }

  .futuro__grid,
  .mvv__grid,
  .planos__grid { grid-template-columns: 1fr; }

  .ods__grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .header.is-open .nav {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    background: var(--violeta);
    padding: 1rem clamp(1.25rem, 4vw, 3rem) 1.5rem;
  }

  .header.is-open .nav__link { width: 100%; padding: 0.6rem 0; }

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

  .equipe__grid { grid-template-columns: repeat(2, 1fr); }

  .phone-frame {
    width: 220px;
    height: 440px;
  }

  .ods__grid { grid-template-columns: repeat(2, 1fr); }
  .ods__card { padding: 0.7rem 0.3rem; }
  .ods__num { font-size: 1.2rem; }
  .ods__title { font-size: 0.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__name { animation: none; }
  .equipe__card:hover,
  .planos__card:hover,
  .mvv__card:hover,
  .inspiracao__quote:hover,
  .persona__avatar:hover,
  .futuro__phase:hover { transform: none; }
}