/*======================================================
ROOT
======================================================*/

:root {
  --azul-principal: #0b5cff;
  --azul-secundario: #2b8dff;
  --fundo-principal: #061426;
  --fundo-secundario: #081a2f;
  --branco: #ffffff;
  --cinza-claro: #b5c2d1;
  --cinza-medio: #7f8ea0;

  --fonte-principal: "Inter", Arial, sans-serif;

  --container: 1320px;
  --transicao: 250ms ease;
}

/*======================================================
RESET
======================================================*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-principal);
  background: var(--fundo-principal);
  color: var(--branco);
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 160px, var(--container));
  margin-inline: auto;
}

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

.cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 50;
  transition:
    background var(--transicao),
    backdrop-filter var(--transicao),
    border var(--transicao);
}

.cabecalho.ativo {
  background: rgba(6, 20, 38, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cabecalho__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cabecalho__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cabecalho__logo-simbolo {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--azul-principal);
}

.cabecalho__logo-texto {
  display: flex;
  flex-direction: column;
}

.cabecalho__logo-texto strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.cabecalho__logo-texto span {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--azul-secundario);
}

.cabecalho__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cabecalho__menu a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transicao);
}

.cabecalho__menu a:hover,
.cabecalho__menu a:focus {
  color: var(--branco);
}

.cabecalho__menu-mobile {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.cabecalho__menu-mobile span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--branco);
}

/*======================================================
BOTÕES
======================================================*/

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  transition:
    transform var(--transicao),
    filter var(--transicao),
    box-shadow var(--transicao);
}

.botao--principal {
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-principal), var(--azul-secundario));
  box-shadow: 0 18px 40px rgba(11, 92, 255, 0.28);
}

.botao--principal:hover,
.botao--principal:focus {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 22px 48px rgba(11, 92, 255, 0.36);
}

.botao--principal:active {
  transform: translateY(0);
}

.botao__icone {
  width: 22px;
  height: 22px;
  display: inline-flex;
  flex: 0 0 22px;
}

.botao__icone svg {
  width: 100%;
  height: 100%;
}

.cabecalho__cta {
  min-height: 46px;
  padding: 14px 24px;
  font-size: 15px;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--fundo-principal);
  isolation: isolate;
}

.hero__fundo,
.hero__glow,
.hero__linhas,
.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__fundo {
  z-index: -5;
  background:
    radial-gradient(circle at 76% 52%, rgba(11, 92, 255, 0.42), transparent 34%),
    radial-gradient(circle at 92% 78%, rgba(43, 141, 255, 0.22), transparent 34%),
    radial-gradient(circle at 10% 20%, rgba(43, 141, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #020812 0%, #061426 45%, #081a2f 100%);
}

.hero__glow {
  z-index: -4;
  background:
    radial-gradient(circle at 75% 55%, rgba(11, 92, 255, 0.52), transparent 36%),
    radial-gradient(circle at 88% 84%, rgba(43, 141, 255, 0.28), transparent 40%);
  filter: blur(22px);
  animation: respirarGlow 10s ease-in-out infinite;
}

.hero__linhas {
  z-index: -3;
  opacity: 0.34;
  background-image:
    linear-gradient(120deg, transparent 0%, transparent 48%, rgba(43, 141, 255, 0.18) 49%, transparent 50%),
    radial-gradient(circle, rgba(43, 141, 255, 0.28) 1px, transparent 1px);
  background-size: 520px 520px, 32px 32px;
  background-position: right center, right 26% center;
}

.hero__noise {
  z-index: -2;
  opacity: 0.045;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.4) 0 1px, transparent 1px 4px);
}

.hero__container {
  position: relative;
  z-index: 6;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}

.hero__grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  align-items: center;
  gap: 72px;
}

.hero__conteudo {
  max-width: 640px;
  position: relative;
  z-index: 8;
}

.hero__microtexto {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero__microtexto span {
  width: 70px;
  height: 1px;
  position: relative;
  background: rgba(43, 141, 255, 0.35);
}

.hero__microtexto span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--azul-principal);
  box-shadow: 0 0 18px rgba(11, 92, 255, 0.9);
}

.hero__microtexto p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6db8ff;
}

.hero__titulo {
  font-size: clamp(60px, 5.3vw, 76px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--branco);
}

.hero__titulo span {
  display: block;
  color: var(--azul-principal);
}

.hero__proposta {
  max-width: 620px;
  margin-top: 24px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.42;
  color: #f3f7fc;
}

.hero__copy {
  max-width: 610px;
  margin-top: 32px;
  padding-left: 28px;
  border-left: 2px solid var(--azul-principal);
}

.hero__copy p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cinza-claro);
}

.hero__acoes {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__botao-secundario {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.86);
  transition: color var(--transicao);
}

.hero__botao-secundario::after {
  content: "";
  width: 120px;
  height: 1px;
  background: var(--azul-secundario);
  opacity: 0.8;
  transition:
    transform var(--transicao),
    opacity var(--transicao);
}

.hero__botao-secundario:hover {
  color: var(--branco);
}

.hero__botao-secundario:hover::after {
  transform: translateX(4px);
  opacity: 1;
}

.hero__botao-play {
  width: 44px;
  height: 44px;
  border: 1px solid var(--azul-principal);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-secundario);
  flex: 0 0 44px;
}

.hero__botao-play svg {
  width: 18px;
  height: 18px;
}

.hero__microcopy {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero__microcopy-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--branco);
}

.hero__microcopy-item:not(:last-child) {
  padding-right: 34px;
  border-right: 1px solid rgba(43, 141, 255, 0.4);
}

.hero__microcopy-icone {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--azul-principal);
  border-radius: 50%;
  color: var(--azul-principal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__microcopy-icone svg {
  width: 22px;
  height: 22px;
}

.hero__microcopy p {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255,255,255,0.84);
}

.hero__microcopy-item:last-child p {
  max-width: 240px;
}

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

.hero__imagem {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52vw;
  height: 100%;
  z-index: 4;
  overflow: visible;
  pointer-events: none;

  opacity: 0;
  transform: translateX(24px);
  animation: entradaHero 700ms ease forwards;
  animation-delay: 120ms;
}

.hero__imagem::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -80px;
  width: 900px;
  height: 720px;
  background: radial-gradient(
    circle,
    rgba(11, 92, 255, 0.52),
    transparent 70%
  );
  filter: blur(22px);
  z-index: -1;
}

.hero__imagem::after {
  content: "";
  position: absolute;
  left: -240px;
  right: -260px;
  bottom: -90px;
  height: 340px;
  background: linear-gradient(
    to top,
    var(--fundo-principal) 12%,
    rgba(6, 20, 38, 0)
  );
  z-index: 6;
  pointer-events: none;
}

.hero__imagem-glow {
  position: absolute;
  right: -160px;
  top: 18%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(11, 92, 255, 0.36);
  filter: blur(100px);
  z-index: -1;
}

.hero__foto {
  position: absolute;
  right: 3vw;
  bottom: -60px;
  width: min(1180px, 88vw);
  max-width: none;
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 5;
  filter: contrast(1.04) saturate(.96);
}

/*======================================================
INDICADOR DE SCROLL
======================================================*/

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  z-index: 10;
  opacity: 0.65;
  animation: scrollSuave 2s ease-in-out infinite;
}

.hero__scroll span {
  width: 18px;
  height: 18px;
  border-right: 4px solid var(--azul-principal);
  border-bottom: 4px solid var(--azul-principal);
  transform: rotate(45deg);
}

/*======================================================
ANIMAÇÕES
======================================================*/

.hero__microtexto,
.hero__titulo,
.hero__proposta,
.hero__copy,
.hero__acoes,
.hero__microcopy {
  opacity: 0;
  transform: translateY(20px);
  animation: entradaHero 700ms ease forwards;
}

.hero__microtexto { animation-delay: 220ms; }
.hero__titulo { animation-delay: 300ms; }
.hero__proposta { animation-delay: 380ms; }
.hero__copy { animation-delay: 460ms; }
.hero__acoes { animation-delay: 540ms; }
.hero__microcopy { animation-delay: 620ms; }

@keyframes entradaHero {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes respirarGlow {
  0%, 100% {
    opacity: 0.92;
  }

  50% {
    opacity: 1;
  }
}

@keyframes scrollSuave {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/*======================================================
SEÇÃO 02 — MINHA HISTÓRIA
======================================================*/

.sobre {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--fundo-principal);
  isolation: isolate;
}

.sobre__fundo,
.sobre__glow,
.sobre__linhas,
.sobre__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sobre__fundo {
  z-index: -5;
  background:
    radial-gradient(circle at 18% 50%, rgba(11, 92, 255, 0.18), transparent 32%),
    radial-gradient(circle at 78% 44%, rgba(43, 141, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #020812 0%, #061426 48%, #081a2f 100%);
}

.sobre__glow {
  z-index: -4;
  background:
    radial-gradient(circle at 22% 56%, rgba(11, 92, 255, 0.32), transparent 34%),
    radial-gradient(circle at 58% 18%, rgba(43, 141, 255, 0.08), transparent 28%);
  filter: blur(22px);
  animation: respirarGlow 10s ease-in-out infinite;
}

.sobre__linhas {
  z-index: -3;
  opacity: 0.22;
  background-image:
    linear-gradient(120deg, transparent 0%, transparent 48%, rgba(43, 141, 255, 0.16) 49%, transparent 50%),
    radial-gradient(circle, rgba(43, 141, 255, 0.22) 1px, transparent 1px);
  background-size: 560px 560px, 34px 34px;
  background-position: left center, left 24% center;
}

.sobre__noise {
  z-index: -2;
  opacity: 0.04;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 1px, transparent 1px 4px);
}

.sobre__container {
  position: relative;
  z-index: 5;
  padding-top: 120px;
  padding-bottom: 120px;
}

.sobre__grid {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  align-items: center;
  gap: 88px;
}

/*======================================================
SEÇÃO 02 — MINHA HISTÓRIA
======================================================*/

.sobre {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--fundo-principal);
  isolation: isolate;
}

.sobre__fundo,
.sobre__glow,
.sobre__linhas,
.sobre__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sobre__fundo {
  z-index: -5;
  background:
    radial-gradient(circle at 18% 50%, rgba(11, 92, 255, 0.14), transparent 34%),
    radial-gradient(circle at 78% 44%, rgba(43, 141, 255, 0.07), transparent 34%),
    linear-gradient(135deg, #020812 0%, #061426 48%, #081a2f 100%);
}

.sobre__glow {
  z-index: -4;
  background:
    radial-gradient(circle at 22% 56%, rgba(11, 92, 255, 0.26), transparent 36%),
    radial-gradient(circle at 58% 18%, rgba(43, 141, 255, 0.07), transparent 30%);
  filter: blur(24px);
  animation: respirarGlow 10s ease-in-out infinite;
}

.sobre__linhas {
  z-index: -3;
  opacity: 0.18;
  background-image:
    linear-gradient(120deg, transparent 0%, transparent 48%, rgba(43, 141, 255, 0.14) 49%, transparent 50%),
    radial-gradient(circle, rgba(43, 141, 255, 0.18) 1px, transparent 1px);
  background-size: 560px 560px, 34px 34px;
  background-position: left center, left 24% center;
}

.sobre__noise {
  z-index: -2;
  opacity: 0.04;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 1px, transparent 1px 4px);
}

.sobre__container {
  position: relative;
  z-index: 5;
  padding-top: 120px;
  padding-bottom: 120px;
}

.sobre__grid {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  align-items: center;
  gap: 88px;
}

/*======================================================
SEÇÃO 02 — FOTO LIVRE
======================================================*/

.sobre__foto-area {
  position: relative;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.sobre__foto-area::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 4%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: rgba(11, 92, 255, 0.22);
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}



.sobre__foto-glow {
  position: absolute;
  left: -90px;
  top: 12%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(11, 92, 255, 0.14);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.sobre__foto {
  position: relative;
  z-index: 1;
  width: min(620px, 44vw);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: contrast(1.05) saturate(.94);
}

/*======================================================
SEÇÃO 02 — CONTEÚDO
======================================================*/

.sobre__conteudo {
  position: relative;
  z-index: 4;
}

.sobre__microtexto {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.sobre__microtexto span {
  width: 70px;
  height: 1px;
  position: relative;
  background: rgba(43, 141, 255, 0.35);
  order: 2;
}

.sobre__microtexto span::before{
    content:"";
    position:absolute;

    left:-1px;
    top:50%;
    transform:translateY(-50%);

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--azul-principal);

    box-shadow:0 0 14px rgba(33,114,255,.7);
}

.sobre__microtexto p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6db8ff;
}

.sobre__titulo {
  max-width: 680px;
  font-size: clamp(48px, 4.1vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--branco);
}

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

.sobre__linha {
  width: 150px;
  height: 1px;
  margin-top: 34px;
  margin-bottom: 48px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--azul-principal),
    transparent
  );
  box-shadow: 0 0 22px rgba(11, 92, 255, 0.8);
}

/*======================================================
SEÇÃO 02 — CARDS
======================================================*/

.sobre__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 44px;
}

.sobre__card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 0;
  border-radius: 20px;
  transition:
    transform var(--transicao),
    background var(--transicao),
    border-color var(--transicao);
}

.sobre__card:hover {
  transform: translateY(-2px);
}

.sobre__card-icone {
  width: 56px;
  height: 56px;
  border: 1px solid var(--azul-principal);
  border-radius: 50%;
  color: var(--azul-principal);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 92, 255, 0.04);
  box-shadow: inset 0 0 22px rgba(11, 92, 255, 0.08);
}

.sobre__card-icone svg {
  width: 30px;
  height: 30px;
}

.sobre__card-conteudo h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--branco);
  margin-bottom: 12px;
}

.sobre__card-conteudo p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--cinza-claro);
}

.sobre__card--final {
  grid-column: 1 / -1;
  max-width: 620px;
  padding-top: 34px;
  border-top: 1px solid rgba(43, 141, 255, 0.18);
}

/*======================================================
SEÇÃO 02 — ANIMAÇÕES
======================================================*/

.sobre__foto-area,
.sobre__microtexto,
.sobre__titulo,
.sobre__linha,
.sobre__card {
  opacity: 0;
  transform: translateY(22px);
}

.sobre.aparecer .sobre__foto-area,
.sobre.aparecer .sobre__microtexto,
.sobre.aparecer .sobre__titulo,
.sobre.aparecer .sobre__linha,
.sobre.aparecer .sobre__card {
  animation: entradaHero 700ms ease forwards;
}

.sobre.aparecer .sobre__foto-area {
  transform: translateX(-24px);
  animation-delay: 80ms;
}

.sobre.aparecer .sobre__microtexto {
  animation-delay: 160ms;
}

.sobre.aparecer .sobre__titulo {
  animation-delay: 240ms;
}

.sobre.aparecer .sobre__linha {
  animation-delay: 320ms;
}

.sobre.aparecer .sobre__card:nth-child(1) {
  animation-delay: 400ms;
}

.sobre.aparecer .sobre__card:nth-child(2) {
  animation-delay: 480ms;
}

.sobre.aparecer .sobre__card:nth-child(3) {
  animation-delay: 560ms;
}

.sobre.aparecer .sobre__card:nth-child(4) {
  animation-delay: 640ms;
}

.sobre.aparecer .sobre__card:nth-child(5) {
  animation-delay: 720ms;
}

/*======================================================
SEÇÃO 02 — RESPONSIVIDADE
======================================================*/

@media (max-width: 1366px) {
  .sobre__grid {
    gap: 64px;
  }

  .sobre__foto {
    width: min(560px, 43vw);
  }

  .sobre__titulo {
    font-size: 54px;
  }

  .sobre__card-conteudo h3 {
    font-size: 20px;
  }

  .sobre__card-conteudo p {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .sobre__grid {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: 48px;
  }

  .sobre__foto {
    width: min(520px, 42vw);
  }

  .sobre__cards {
    column-gap: 36px;
    row-gap: 36px;
  }
}

@media (max-width: 1024px) {
  .sobre__container {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre__conteudo {
    order: 1;
  }

  .sobre__foto-area {
    order: 2;
  }

  .sobre__foto {
    width: min(720px, 92vw);
  }

  .sobre__titulo {
    max-width: 760px;
    font-size: clamp(48px, 8vw, 72px);
  }

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

  .sobre__card,
  .sobre__card--final {
    max-width: none;
    grid-column: auto;
    grid-template-columns: 96px 1fr;
    padding: 32px 0;
    border-top: 1px solid rgba(43, 141, 255, 0.16);
  }

  .sobre__card:first-child {
    border-top: 0;
  }

  .sobre__card-icone {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(11, 92, 255, 0.08);
  }

  .sobre__card-icone svg {
    width: 38px;
    height: 38px;
  }

  .sobre__card-conteudo h3 {
    font-size: 26px;
  }

  .sobre__card-conteudo p {
    font-size: 21px;
    line-height: 1.55;
  }
}

@media (max-width: 768px) {
  .sobre__container {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .sobre__microtexto {
    margin-bottom: 24px;
  }

  .sobre__titulo {
    font-size: clamp(42px, 10vw, 58px);
  }

  .sobre__linha {
    margin-top: 32px;
    margin-bottom: 36px;
  }

 .sobre__foto{

    width:340px;

    max-width:88vw;

    margin-inline:auto;

}

  .sobre__card {
    grid-template-columns: 88px 1fr;
  }

  .sobre__card-conteudo h3 {
    font-size: 24px;
  }

  .sobre__card-conteudo p {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .sobre__container {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .sobre__titulo {
    font-size: 42px;
  }

  .sobre__foto {
    width: 520px;
  }

  .sobre__card {
    grid-template-columns: 74px 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .sobre__card-icone {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .sobre__card-icone svg {
    width: 32px;
    height: 32px;
  }

  .sobre__card-conteudo h3 {
    font-size: 22px;
  }

  .sobre__card-conteudo p {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .sobre__titulo {
    font-size: 38px;
  }

  .sobre__foto {
    width: 480px;
  }

  .sobre__card {
    grid-template-columns: 68px 1fr;
  }

  .sobre__card-conteudo h3 {
    font-size: 21px;
  }

  .sobre__card-conteudo p {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sobre__foto-area,
  .sobre__microtexto,
  .sobre__titulo,
  .sobre__linha,
  .sobre__card {
    opacity: 1;
    transform: none;
  }
}

/*======================================================
SEÇÃO 03 — MINHA FILOSOFIA
======================================================*/

.filosofia {
  position: relative;
  overflow: hidden;
  background: var(--fundo-principal);
  isolation: isolate;
}

.filosofia__fundo,
.filosofia__glow,
.filosofia__linhas,
.filosofia__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.filosofia__fundo {
  z-index: -5;
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 92, 255, 0.14), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(43, 141, 255, 0.06), transparent 28%),
    linear-gradient(135deg, #020812 0%, #061426 48%, #081a2f 100%);
}

.filosofia__glow {
  z-index: -4;
  background:
    radial-gradient(circle at 50% 54%, rgba(11, 92, 255, 0.22), transparent 36%);
  filter: blur(26px);
  animation: respirarGlow 10s ease-in-out infinite;
}

.filosofia__linhas {
  z-index: -3;
  opacity: 0.18;
  background-image:
    linear-gradient(120deg, transparent 0%, transparent 48%, rgba(43, 141, 255, 0.12) 49%, transparent 50%),
    radial-gradient(circle, rgba(43, 141, 255, 0.2) 1px, transparent 1px);
  background-size: 620px 620px, 34px 34px;
  background-position: right top, left 8% top 14%;
}

.filosofia__noise {
  z-index: -2;
  opacity: 0.04;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 1px, transparent 1px 4px);
}

.filosofia__container {
  position: relative;
  z-index: 4;
  padding-top: 110px;
  padding-bottom: 110px;
}

/*======================================================
SEÇÃO 03 — CABEÇALHO
======================================================*/

.filosofia__cabecalho {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.filosofia__microtexto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.filosofia__microtexto span {
  width: 64px;
  height: 1px;
  background: rgba(43, 141, 255, 0.45);
  position: relative;
}

.filosofia__microtexto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.filosofia__microtexto span {
  width: 64px;
  height: 1px;
  background: rgba(43, 141, 255, 0.45);
  position: relative;
}

.filosofia__microtexto p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--azul-secundario);
}

.filosofia__titulo {
  font-size: clamp(48px, 4.4vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--branco);
}

.filosofia__descricao {
  max-width: 720px;
  margin: 34px auto 0;
  font-size: 22px;
  line-height: 1.5;
  color: var(--cinza-claro);
}

/*======================================================
SEÇÃO 03 — CARDS
======================================================*/

.filosofia__cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.filosofia__card {
  min-height: 360px;
  padding: 42px 34px 36px;
  border-radius: 20px;
  border: 1px solid rgba(43, 141, 255, 0.18);
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 92, 255, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 0 40px rgba(11, 92, 255, 0.04),
    0 18px 60px rgba(0, 0, 0, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition:
    transform var(--transicao),
    border-color var(--transicao),
    background var(--transicao),
    box-shadow var(--transicao);
}

.filosofia__card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 141, 255, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 92, 255, 0.22), transparent 44%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 44px rgba(11, 92, 255, 0.06),
    0 22px 70px rgba(0, 0, 0, 0.16);
}

.filosofia__card-icone {
  width: 84px;
  height: 84px;
  margin-bottom: 32px;
  border-radius: 50%;
  color: var(--azul-secundario);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px rgba(11, 92, 255, 0.28));
}

.filosofia__card-icone svg {
  width: 82px;
  height: 82px;
}

.filosofia__card h3 {
  max-width: 250px;
  font-size: 28px;
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--branco);
}

.filosofia__card-linha {
  width: 28px;
  height: 2px;
  margin: 26px 0 24px;
  background: var(--azul-secundario);
  box-shadow: 0 0 16px rgba(43, 141, 255, 0.8);
}

.filosofia__card p {
  max-width: 250px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--cinza-claro);
}

/*======================================================
SEÇÃO 03 — FRASE FINAL
======================================================*/

.filosofia__frase {
  margin-top: 64px;
  text-align: center;
}

.filosofia__frase > span {
  display: inline-block;
  width: min(42%, 520px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 141, 255, 0.75),
    transparent
  );
  vertical-align: middle;
}

.filosofia__frase strong {
  display: inline-block;
  margin: 0 24px;
  font-size: 62px;
  line-height: 1;
  color: var(--azul-principal);
  vertical-align: middle;
}

.filosofia__frase p {
  max-width: 880px;
  margin: 24px auto 0;
  font-size: 36px;
  line-height: 1.26;
  letter-spacing: -0.035em;
  color: var(--branco);
}

.filosofia__frase em {
  display: block;
  font-style: normal;
  color: var(--azul-secundario);
}

/*======================================================
SEÇÃO 03 — ANIMAÇÕES
======================================================*/

.filosofia__cabecalho,
.filosofia__card,
.filosofia__frase {
  opacity: 0;
  transform: translateY(22px);
}

.filosofia.aparecer .filosofia__cabecalho,
.filosofia.aparecer .filosofia__card,
.filosofia.aparecer .filosofia__frase {
  animation: entradaHero 700ms ease forwards;
}

.filosofia.aparecer .filosofia__cabecalho {
  animation-delay: 120ms;
}

.filosofia.aparecer .filosofia__card:nth-child(1) {
  animation-delay: 240ms;
}

.filosofia.aparecer .filosofia__card:nth-child(2) {
  animation-delay: 320ms;
}

.filosofia.aparecer .filosofia__card:nth-child(3) {
  animation-delay: 400ms;
}

.filosofia.aparecer .filosofia__card:nth-child(4) {
  animation-delay: 480ms;
}

.filosofia.aparecer .filosofia__frase {
  animation-delay: 580ms;
}

/*======================================================
SEÇÃO 03 — RESPONSIVIDADE
======================================================*/

@media (max-width: 1366px) {
  .filosofia__container {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .filosofia__titulo {
    font-size: 58px;
  }

  .filosofia__descricao {
    font-size: 20px;
  }

  .filosofia__card {
    min-height: 330px;
    padding: 38px 28px 34px;
  }

  .filosofia__card h3 {
    font-size: 25px;
  }

  .filosofia__card p {
    font-size: 16px;
  }

  .filosofia__frase p {
    font-size: 32px;
  }
}

@media (max-width: 1200px) {
  .filosofia__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
    margin-inline: auto;
  }

  .filosofia__card {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .filosofia__container {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .filosofia__cabecalho {
    text-align: left;
    max-width: 100%;
  }

  .filosofia__microtexto {
    width: 100%;
    justify-content: center;
    margin-bottom: 34px;
  }

  .filosofia__titulo {
    font-size: clamp(48px, 12vw, 66px);
    line-height: 1.08;
  }

  .filosofia__descricao {
    margin-top: 28px;
    font-size: 24px;
    line-height: 1.48;
  }

  .filosofia__cards {
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: none;
  }

  .filosofia__card {
    min-height: auto;
    padding: 34px 28px;
    display: grid;
    grid-template-columns: 120px 1fr;
    text-align: left;
    column-gap: 24px;
    align-items: center;
  }

  .filosofia__card-icone {
    width: 96px;
    height: 96px;
    margin-bottom: 0;
    grid-row: span 3;
  }

  .filosofia__card-icone svg {
    width: 92px;
    height: 92px;
  }

  .filosofia__card h3 {
    max-width: none;
    font-size: 29px;
  }

  .filosofia__card-linha {
    display: none;
  }

  .filosofia__card p {
    max-width: none;
    margin-top: 14px;
    font-size: 23px;
    line-height: 1.45;
  }

  .filosofia__frase {
    margin-top: 48px;
  }

  .filosofia__frase > span {
    width: calc(50% - 45px);
  }

  .filosofia__frase strong {
    margin: 0 18px;
    font-size: 54px;
  }

  .filosofia__frase p {
    max-width: 620px;
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .filosofia__container {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .filosofia__microtexto p {
    font-size: 13px;
  }

  .filosofia__titulo {
    font-size: 46px;
  }

  .filosofia__descricao {
    font-size: 22px;
  }

  .filosofia__card {
    grid-template-columns: 92px 1fr;
    padding: 28px 22px;
    column-gap: 18px;
  }

  .filosofia__card-icone {
    width: 72px;
    height: 72px;
  }

  .filosofia__card-icone svg {
    width: 70px;
    height: 70px;
  }

  .filosofia__card h3 {
    font-size: 24px;
  }

  .filosofia__card p {
    font-size: 19px;
  }

  .filosofia__frase p {
    font-size: 32px;
  }
}

@media (max-width: 420px) {
  .filosofia__titulo {
    font-size: 42px;
  }

  .filosofia__descricao {
    font-size: 20px;
  }

  .filosofia__card {
    grid-template-columns: 82px 1fr;
  }

  .filosofia__card h3 {
    font-size: 22px;
  }

  .filosofia__card p {
    font-size: 18px;
  }

  .filosofia__frase p {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .filosofia__cabecalho,
  .filosofia__card,
  .filosofia__frase {
    opacity: 1;
    transform: none;
  }
}

/*======================================================
SEÇÃO 04 — COMO POSSO AJUDAR
======================================================*/

.jornada {
  position: relative;
  overflow: hidden;
  background: var(--fundo-principal);
  isolation: isolate;
}

.jornada__fundo,
.jornada__glow,
.jornada__linhas,
.jornada__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.jornada__fundo {
  z-index: -5;
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 92, 255, 0.12), transparent 36%),
    radial-gradient(circle at 50% 18%, rgba(43, 141, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #020812 0%, #061426 48%, #081a2f 100%);
}

.jornada__glow {
  z-index: -4;
  background:
    radial-gradient(circle at 50% 52%, rgba(11, 92, 255, 0.2), transparent 38%);
  filter: blur(28px);
  animation: respirarGlow 10s ease-in-out infinite;
}

.jornada__linhas {
  z-index: -3;
  opacity: 0.16;
  background-image:
    linear-gradient(120deg, transparent 0%, transparent 48%, rgba(43, 141, 255, 0.12) 49%, transparent 50%),
    radial-gradient(circle, rgba(43, 141, 255, 0.2) 1px, transparent 1px);
  background-size: 620px 620px, 34px 34px;
  background-position: right top, right 6% bottom 10%;
}

.jornada__noise {
  z-index: -2;
  opacity: 0.04;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 1px, transparent 1px 4px);
}

.jornada__container {
  position: relative;
  z-index: 4;
  padding-top: 110px;
  padding-bottom: 110px;
}

/*======================================================
SEÇÃO 04 — CABEÇALHO
======================================================*/

.jornada__cabecalho {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.jornada__microtexto {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.jornada__microtexto p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--azul-secundario);
}

.jornada__microtexto span {
  width: 220px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 141, 255, 0.8),
    transparent
  );
  box-shadow: 0 0 18px rgba(43, 141, 255, 0.75);
}

.jornada__titulo {
  font-size: clamp(48px, 4.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--branco);
}

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

.jornada__descricao {
  max-width: 740px;
  margin: 24px auto 0;
  font-size: 22px;
  line-height: 1.42;
  color: var(--cinza-claro);
}

/*======================================================
SEÇÃO 04 — ROADMAP
======================================================*/

.jornada__roadmap {
  position: relative;
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.jornada__linha {
  position: absolute;
  left: 10%;
  right: 10%;
  top: -56px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 141, 255, 0.75),
    transparent
  );
  box-shadow: 0 0 18px rgba(43, 141, 255, 0.6);
}

.jornada__card {
  position: relative;
  min-height: 345px;
  padding: 42px 34px 34px;
  border-radius: 20px;
  border: 1px solid rgba(43, 141, 255, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 92, 255, 0.15), transparent 42%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 0 40px rgba(11, 92, 255, 0.04),
    0 18px 60px rgba(0, 0, 0, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform var(--transicao),
    border-color var(--transicao),
    background var(--transicao),
    box-shadow var(--transicao);
}

.jornada__card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 141, 255, 0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 92, 255, 0.22), transparent 44%),
    rgba(255, 255, 255, 0.035);
}

.jornada__numero {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--azul-secundario);
  background: rgba(6, 20, 38, 0.9);
  box-shadow:
    0 0 20px rgba(43, 141, 255, 0.7),
    inset 0 0 20px rgba(43, 141, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 22px;
  font-weight: 700;
}

.jornada__numero::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--azul-secundario);
  transform: translateY(-50%);
  box-shadow: 0 0 16px rgba(43, 141, 255, 0.9);
}

.jornada__icone {
  width: 86px;
  height: 86px;
  margin-bottom: 28px;
  border-radius: 50%;
  border: 1px solid rgba(43, 141, 255, 0.35);
  color: var(--azul-principal);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 92, 255, 0.04);
}

.jornada__icone svg {
  width: 48px;
  height: 48px;
}

.jornada__card h3 {
  font-size: 25px;
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: var(--branco);
}

.jornada__card p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cinza-claro);
}

.jornada__link {
  margin-top: auto;
  padding-top: 26px;
  font-size: 17px;
  font-weight: 700;
  color: var(--azul-secundario);
}

/*======================================================
SEÇÃO 04 — FRASE FINAL
======================================================*/

.jornada__frase {
  margin-top: 64px;
  text-align: center;
}

.jornada__frase > span {
  display: block;
  width: min(520px, 70%);
  height: 1px;
  margin-inline: auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 141, 255, 0.85),
    transparent
  );
  box-shadow: 0 0 18px rgba(43, 141, 255, 0.8);
}

.jornada__frase p {
  max-width: 980px;
  margin: 28px auto;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: var(--branco);
}

.jornada__frase strong {
  color: var(--azul-principal);
  font-size: 48px;
  line-height: 0;
}

.jornada__frase em {
  display: block;
  font-style: normal;
  color: var(--azul-principal);
}

/*======================================================
SEÇÃO 04 — ANIMAÇÕES
======================================================*/

.jornada__cabecalho,
.jornada__linha,
.jornada__card,
.jornada__frase {
  opacity: 0;
  transform: translateY(22px);
}

.jornada.aparecer .jornada__cabecalho,
.jornada.aparecer .jornada__linha,
.jornada.aparecer .jornada__card,
.jornada.aparecer .jornada__frase {
  animation: entradaHero 700ms ease forwards;
}

.jornada.aparecer .jornada__cabecalho {
  animation-delay: 120ms;
}

.jornada.aparecer .jornada__linha {
  animation-delay: 240ms;
}

.jornada.aparecer .jornada__card:nth-of-type(1) {
  animation-delay: 320ms;
}

.jornada.aparecer .jornada__card:nth-of-type(2) {
  animation-delay: 400ms;
}

.jornada.aparecer .jornada__card:nth-of-type(3) {
  animation-delay: 480ms;
}

.jornada.aparecer .jornada__card:nth-of-type(4) {
  animation-delay: 560ms;
}

.jornada.aparecer .jornada__frase {
  animation-delay: 660ms;
}

/*======================================================
SEÇÃO 04 — RESPONSIVIDADE
======================================================*/

@media (max-width: 1366px) {
  .jornada__titulo {
    font-size: 58px;
  }

  .jornada__descricao {
    font-size: 20px;
  }

  .jornada__card {
    min-height: 320px;
    padding: 36px 28px 30px;
  }

  .jornada__card h3 {
    font-size: 22px;
  }

  .jornada__card p {
    font-size: 16px;
  }

  .jornada__frase p {
    font-size: 34px;
  }
}

@media (max-width: 1200px) {
  .jornada__roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 86px;
  }

  .jornada__linha {
    display: none;
  }

  .jornada__numero {
    top: -68px;
  }
}

@media (max-width: 768px) {
  .jornada__container {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .jornada__titulo {
    font-size: clamp(44px, 10vw, 60px);
  }

  .jornada__descricao {
    font-size: 22px;
  }

  .jornada__roadmap {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 54px;
    padding-left: 76px;
  }

  .jornada__roadmap::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 42px;
    bottom: 42px;
    width: 1px;
    background: linear-gradient(
      to bottom,
      rgba(43, 141, 255, 0.8),
      rgba(43, 141, 255, 0.25),
      rgba(43, 141, 255, 0.8)
    );
    box-shadow: 0 0 18px rgba(43, 141, 255, 0.65);
  }

  .jornada__card {
    min-height: auto;
    padding: 32px 72px 32px 28px;
    text-align: left;
    align-items: flex-start;
  }

  .jornada__numero {
    top: 42px;
    left: -76px;
    transform: none;
  }

  .jornada__numero::after {
    right: -15px;
  }

  .jornada__icone {
    position: absolute;
    left: 28px;
    top: 32px;
    width: 82px;
    height: 82px;
  }

  .jornada__icone svg {
    width: 46px;
    height: 46px;
  }

  .jornada__card h3,
  .jornada__card p {
    margin-left: 120px;
  }

  .jornada__card h3 {
    font-size: 28px;
  }

  .jornada__card p {
    font-size: 22px;
    line-height: 1.45;
  }

  .jornada__link {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    padding: 0;
  }

  .jornada__link::after {
    content: "→";
    font-size: 48px;
    color: var(--azul-secundario);
  }

  .jornada__frase {
    margin-top: 54px;
  }

  .jornada__frase p {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .jornada__titulo {
    font-size: 42px;
  }

  .jornada__descricao {
    font-size: 20px;
  }

  .jornada__roadmap {
    padding-left: 58px;
  }

  .jornada__roadmap::before {
    left: 26px;
  }

  .jornada__numero {
    width: 52px;
    height: 52px;
    font-size: 19px;
    left: -58px;
  }

  .jornada__card {
    padding: 28px 58px 28px 24px;
  }

  .jornada__icone {
    width: 66px;
    height: 66px;
    left: 24px;
  }

  .jornada__icone svg {
    width: 38px;
    height: 38px;
  }

  .jornada__card h3,
  .jornada__card p {
    margin-left: 92px;
  }

  .jornada__card h3 {
    font-size: 23px;
  }

  .jornada__card p {
    font-size: 18px;
  }

  .jornada__link::after {
    font-size: 40px;
  }

  .jornada__frase p {
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  .jornada__titulo {
    font-size: 38px;
  }

  .jornada__card h3 {
    font-size: 21px;
  }

  .jornada__card p {
    font-size: 17px;
  }

  .jornada__frase p {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jornada__cabecalho,
  .jornada__linha,
  .jornada__card,
  .jornada__frase {
    opacity: 1;
    transform: none;
  }
}

/*======================================================
SEÇÃO 05 — COMECE GRATUITAMENTE
======================================================*/

.ebook {
  position: relative;
  overflow: hidden;
  background: var(--fundo-principal);
  isolation: isolate;
}

.ebook__fundo,
.ebook__glow,
.ebook__linhas,
.ebook__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ebook__fundo {
  z-index: -5;
  background:
    radial-gradient(circle at 50% 48%, rgba(11, 92, 255, 0.18), transparent 34%),
    radial-gradient(circle at 50% 78%, rgba(43, 141, 255, 0.1), transparent 30%),
    linear-gradient(135deg, #020812 0%, #061426 48%, #081a2f 100%);
}

.ebook__glow {
  z-index: -4;
  background:
    radial-gradient(circle at 50% 52%, rgba(11, 92, 255, 0.24), transparent 38%);
  filter: blur(28px);
  animation: respirarGlow 10s ease-in-out infinite;
}

.ebook__linhas {
  z-index: -3;
  opacity: 0.16;
  background-image:
    linear-gradient(120deg, transparent 0%, transparent 48%, rgba(43, 141, 255, 0.12) 49%, transparent 50%),
    radial-gradient(circle, rgba(43, 141, 255, 0.18) 1px, transparent 1px);
  background-size: 620px 620px, 34px 34px;
  background-position: center center, right 10% top 14%;
}

.ebook__noise {
  z-index: -2;
  opacity: 0.04;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 1px, transparent 1px 4px);
}

.ebook__container {
  position: relative;
  z-index: 4;
  padding-top: 110px;
  padding-bottom: 110px;
}

/*======================================================
SEÇÃO 05 — CABEÇALHO
======================================================*/

.ebook__cabecalho {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.ebook__microtexto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 24px;
  margin-bottom: 26px;
  border: 1px solid rgba(43, 141, 255, 0.24);
  border-radius: 999px;
  background: rgba(11, 92, 255, 0.035);
}

.ebook__microtexto p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--azul-secundario);
}

.ebook__titulo {
  font-size: clamp(48px, 4.7vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--branco);
}

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

/*======================================================
SEÇÃO 05 — CONTEÚDO
======================================================*/

.ebook__conteudo {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 29%) minmax(0, 42%) minmax(0, 29%);
  align-items: center;
  gap: 52px;
}

.ebook__texto {
  padding-right: 34px;
  border-right: 1px solid rgba(43, 141, 255, 0.2);
}

.ebook__texto p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--branco);
}

.ebook__texto p + p {
  margin-top: 26px;
}

.ebook__texto strong {
  display: block;
  margin-top: 6px;
  color: var(--azul-secundario);
  font-weight: 800;
}

/*======================================================
SEÇÃO 05 — MOCKUP EBOOK
======================================================*/

.ebook__mockup {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook__mockup-glow {
  position: absolute;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: rgba(11, 92, 255, 0.3);
  filter: blur(95px);
  z-index: -1;
}

.ebook__mockup-anel {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(43, 141, 255, 0.34);
  box-shadow:
    0 0 38px rgba(11, 92, 255, 0.22),
    inset 0 0 42px rgba(11, 92, 255, 0.08);
  opacity: 0.85;
}

.ebook__mockup-anel::before,
.ebook__mockup-anel::after {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  border: 1px solid rgba(43, 141, 255, 0.18);
}

.ebook__mockup-anel::after {
  inset: 92px;
  opacity: 0.5;
}

.ebook__imagem {
  position: relative;
  z-index: 3;
  width: min(560px, 38vw);
  max-width: none;
  filter:
    contrast(1.04)
    saturate(0.96)
    drop-shadow(0 34px 48px rgba(0, 0, 0, 0.42));
}

.ebook__base {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 520px;
  height: 70px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(43, 141, 255, 0.42) 0%,
    rgba(11, 92, 255, 0.22) 36%,
    rgba(6, 20, 38, 0) 72%
  );
  filter: blur(8px);
  z-index: 1;
}

/*======================================================
SEÇÃO 05 — BENEFÍCIOS
======================================================*/

.ebook__beneficios h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--branco);
  margin-bottom: 24px;
  padding-bottom: 18px;
  position: relative;
}

.ebook__beneficios h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--azul-principal),
    transparent
  );
  box-shadow: 0 0 18px rgba(43, 141, 255, 0.8);
}

.ebook__beneficio {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 108px;
  padding: 22px 26px;
  border-radius: 18px;
  border: 1px solid rgba(43, 141, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

.ebook__beneficio + .ebook__beneficio {
  margin-top: 18px;
}

.ebook__beneficio-icone {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(43, 141, 255, 0.35);
  color: var(--azul-principal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook__beneficio-icone svg {
  width: 34px;
  height: 34px;
}

.ebook__beneficio p {
  font-size: 20px;
  line-height: 1.35;
  color: var(--branco);
}

.ebook__beneficio strong {
  color: var(--azul-secundario);
}

/*======================================================
SEÇÃO 05 — CTA
======================================================*/

.ebook__cta {
  max-width: 1180px;
  margin: 54px auto 0;
  padding: 36px 48px 32px;
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(43, 141, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 92, 255, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.018);
  text-align: center;
}

.ebook__chamada h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--branco);
}

.ebook__chamada p {
  font-size: 24px;
  font-weight: 700;
  color: var(--azul-secundario);
}

.ebook__botao {
  width: min(760px, 100%);
  min-height: 78px;
  margin-top: 28px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 34px rgba(11, 92, 255, 0.55),
    0 22px 60px rgba(11, 92, 255, 0.28);
}

.ebook__botao .botao__icone {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.ebook__microcopy {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.ebook__microcopy span {
  position: relative;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.ebook__microcopy span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--azul-principal);
  transform: translateY(-50%);
}

/*======================================================
SEÇÃO 05 — ANIMAÇÕES
======================================================*/

.ebook__cabecalho,
.ebook__texto,
.ebook__mockup,
.ebook__beneficios,
.ebook__cta {
  opacity: 0;
  transform: translateY(22px);
}

.ebook.aparecer .ebook__cabecalho,
.ebook.aparecer .ebook__texto,
.ebook.aparecer .ebook__mockup,
.ebook.aparecer .ebook__beneficios,
.ebook.aparecer .ebook__cta {
  animation: entradaHero 700ms ease forwards;
}

.ebook.aparecer .ebook__cabecalho {
  animation-delay: 120ms;
}

.ebook.aparecer .ebook__texto {
  animation-delay: 240ms;
}

.ebook.aparecer .ebook__mockup {
  animation-delay: 320ms;
}

.ebook.aparecer .ebook__beneficios {
  animation-delay: 420ms;
}

.ebook.aparecer .ebook__cta {
  animation-delay: 520ms;
}

/*======================================================
SEÇÃO 05 — RESPONSIVIDADE
======================================================*/

@media (max-width: 1366px) {
  .ebook__titulo {
    font-size: 60px;
  }

  .ebook__conteudo {
    gap: 40px;
  }

  .ebook__texto p {
    font-size: 16px;
  }

  .ebook__imagem {
    width: min(500px, 36vw);
  }

  .ebook__mockup {
    min-height: 560px;
  }

  .ebook__mockup-anel {
    width: 540px;
    height: 540px;
  }

  .ebook__beneficio p {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .ebook__conteudo {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 820px;
    margin-inline: auto;
  }

  .ebook__texto {
    order: 1;
    padding-right: 0;
    border-right: 0;
    text-align: center;
  }

  .ebook__mockup {
    order: 2;
  }

  .ebook__beneficios {
    order: 3;
  }

  .ebook__beneficios h3 {
    text-align: center;
  }

  .ebook__beneficios h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .ebook__imagem {
    width: min(520px, 72vw);
  }
}

@media (max-width: 768px) {
  .ebook__container {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .ebook__titulo {
    font-size: clamp(42px, 10vw, 60px);
  }

  .ebook__conteudo {
    margin-top: 44px;
  }

  .ebook__texto p {
    font-size: 21px;
    line-height: 1.5;
  }

  .ebook__texto p:not(:first-child) {
    display: none;
  }

  .ebook__mockup {
    min-height: 560px;
  }

  .ebook__imagem {
    width: min(520px, 82vw);
  }

  .ebook__mockup-anel {
    width: 520px;
    height: 520px;
  }

  .ebook__base {
    width: 420px;
    bottom: 42px;
  }

  .ebook__beneficios h3 {
    font-size: 30px;
  }

  .ebook__beneficio {
    grid-template-columns: 72px 1fr;
    padding: 20px 24px;
  }

  .ebook__beneficio p {
    font-size: 21px;
  }

  .ebook__cta {
    padding: 34px 24px 30px;
  }

  .ebook__chamada h3 {
    font-size: 32px;
  }

  .ebook__chamada p {
    font-size: 22px;
  }

  .ebook__botao {
    min-height: 70px;
    font-size: 22px;
  }

  .ebook__microcopy {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}

@media (max-width: 576px) {
  .ebook__titulo {
    font-size: 39px;
  }

  .ebook__texto p {
    font-size: 19px;
  }

  .ebook__mockup {
    min-height: 470px;
  }

  .ebook__imagem {
    width: min(420px, 84vw);
  }

  .ebook__mockup-anel {
    width: 420px;
    height: 420px;
  }

  .ebook__beneficio {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .ebook__beneficio-icone {
    width: 50px;
    height: 50px;
  }

  .ebook__beneficio-icone svg {
    width: 30px;
    height: 30px;
  }

  .ebook__beneficio p {
    font-size: 18px;
  }

  .ebook__botao {
    font-size: 18px;
    padding-inline: 18px;
  }

  .ebook__botao .botao__icone {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .ebook__microcopy span {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .ebook__titulo {
    font-size: 36px;
  }

  .ebook__mockup {
    min-height: 430px;
  }

  .ebook__imagem {
    width: min(380px, 86vw);
  }

  .ebook__mockup-anel {
    width: 380px;
    height: 380px;
  }

  .ebook__chamada h3 {
    font-size: 28px;
  }

  .ebook__chamada p {
    font-size: 19px;
  }

  .ebook__botao {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ebook__cabecalho,
  .ebook__texto,
  .ebook__mockup,
  .ebook__beneficios,
  .ebook__cta {
    opacity: 1;
    transform: none;
  }
}

/*======================================================
SEÇÃO 06 — PRÓXIMO PASSO MVO
PARTE 1 — ESTRUTURA / FUNDO / HEADER / MOCKUP
======================================================*/

.mvo {
  position: relative;
  overflow: hidden;
  background: var(--fundo-principal);
  isolation: isolate;
}

.mvo__fundo,
.mvo__glow,
.mvo__linhas,
.mvo__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mvo__fundo {
  z-index: -5;
  background:
    radial-gradient(circle at 50% 48%, rgba(11, 92, 255, 0.18), transparent 34%),
    radial-gradient(circle at 50% 78%, rgba(43, 141, 255, 0.1), transparent 30%),
    linear-gradient(135deg, #020812 0%, #061426 48%, #081a2f 100%);
}

.mvo__glow {
  z-index: -4;
  background:
    radial-gradient(circle at 50% 52%, rgba(11, 92, 255, 0.24), transparent 38%);
  filter: blur(28px);
}

.mvo__linhas {
  z-index: -3;
  opacity: 0.16;
  background-image:
    linear-gradient(120deg, transparent 0%, transparent 48%, rgba(43, 141, 255, 0.12) 49%, transparent 50%),
    radial-gradient(circle, rgba(43, 141, 255, 0.18) 1px, transparent 1px);
  background-size: 620px 620px, 34px 34px;
  background-position: center center, right 10% top 14%;
}

.mvo__noise {
  z-index: -2;
  opacity: 0.04;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 1px, transparent 1px 4px);
}

.mvo__container {
  position: relative;
  z-index: 4;
  padding-top: 110px;
  padding-bottom: 110px;
}

/*======================================================
SEÇÃO 06 — CABEÇALHO
======================================================*/

.mvo__cabecalho {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.mvo__microtexto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 24px;
  margin-bottom: 26px;
  border: 1px solid rgba(43, 141, 255, 0.24);
  border-radius: 999px;
  background: rgba(11, 92, 255, 0.035);
}

.mvo__microtexto p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--azul-secundario);
}

.mvo__titulo {
  font-size: clamp(48px, 4.7vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--branco);
}

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

/*======================================================
SEÇÃO 06 — CONTEÚDO WEB
======================================================*/

.mvo__conteudo {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 28%) minmax(0, 42%) minmax(0, 30%);
  align-items: center;
  gap: 52px;
}

/*======================================================
SEÇÃO 06 — TEXTO ESQUERDO
======================================================*/

.mvo__texto {
  padding-right: 34px;
  border-right: 1px solid rgba(43, 141, 255, 0.2);
}

.mvo__texto p {
  font-size: 18px;
  line-height: 1.58;
  color: var(--branco);
}

.mvo__texto p + p {
  margin-top: 26px;
}

.mvo__texto strong {
  color: var(--azul-secundario);
  font-weight: 800;
}

/*======================================================
SEÇÃO 06 — MOCKUP CENTRAL
======================================================*/

.mvo__mockup {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvo__mockup-glow {
  position: absolute;
  width: 690px;
  height: 690px;
  border-radius: 50%;
  background: rgba(11, 92, 255, 0.3);
  filter: blur(96px);
  z-index: -1;
}

.mvo__mockup-anel {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1px solid rgba(43, 141, 255, 0.34);
  box-shadow:
    0 0 38px rgba(11, 92, 255, 0.22),
    inset 0 0 42px rgba(11, 92, 255, 0.08);
  opacity: 0.82;
}

.mvo__mockup-anel::before,
.mvo__mockup-anel::after {
  content: "";
  position: absolute;
  inset: 44px;
  border-radius: 50%;
  border: 1px solid rgba(43, 141, 255, 0.18);
}

.mvo__mockup-anel::after {
  inset: 96px;
  opacity: 0.5;
}

.mvo__imagem {
  position: relative;
  z-index: 3;
  width: min(560px, 38vw);
  max-width: none;
  filter:
    contrast(1.04)
    saturate(0.98)
    drop-shadow(0 36px 50px rgba(0, 0, 0, 0.42));
}

.mvo__base {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 520px;
  height: 70px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(43, 141, 255, 0.42) 0%,
    rgba(11, 92, 255, 0.22) 36%,
    rgba(6, 20, 38, 0) 72%
  );
  filter: blur(8px);
  z-index: 1;
}

/*======================================================
SEÇÃO 06 — PRÓXIMO PASSO MVO
PARTE 2 — BENEFÍCIOS / CTA / ANIMAÇÕES / MOBILE
======================================================*/

/*======================================================
SEÇÃO 06 — BENEFÍCIOS
======================================================*/

.mvo__beneficios h3 {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--branco);
  margin-bottom: 24px;
  padding-bottom: 18px;
  position: relative;
}

.mvo__beneficios h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--azul-principal),
    transparent
  );
  box-shadow: 0 0 18px rgba(43, 141, 255, 0.8);
}

.mvo__beneficio {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(43, 141, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform var(--transicao),
    border-color var(--transicao),
    background var(--transicao);
}

.mvo__beneficio:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 141, 255, 0.38);
  background: rgba(255, 255, 255, 0.035);
}

.mvo__beneficio + .mvo__beneficio {
  margin-top: 14px;
}

.mvo__beneficio-icone {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(43, 141, 255, 0.35);
  color: var(--azul-principal);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 92, 255, 0.035);
}

.mvo__beneficio-icone svg {
  width: 30px;
  height: 30px;
}

.mvo__beneficio h4 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--branco);
  margin-bottom: 7px;
}

.mvo__beneficio p {
  font-size: 16px;
  line-height: 1.45;
  color: var(--cinza-claro);
}

/*======================================================
SEÇÃO 06 — CTA
======================================================*/

.mvo__cta {
  max-width: 1180px;
  margin: 58px auto 0;
  padding: 38px 48px 34px;
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(43, 141, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 92, 255, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.018);
  text-align: center;
}

.mvo__chamada h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--branco);
}

.mvo__chamada p {
  margin-top: 8px;
  font-size: 25px;
  font-weight: 800;
  color: var(--azul-secundario);
}

.mvo__botao {
  width: min(840px, 100%);
  min-height: 78px;
  margin-top: 30px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 34px rgba(11, 92, 255, 0.55),
    0 22px 60px rgba(11, 92, 255, 0.28);
}

.mvo__botao .botao__icone {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.mvo__seta {
  display: inline-flex;
  margin-left: 4px;
  font-size: 30px;
  line-height: 1;
}

.mvo__microcopy {
  margin-top: 24px;
}

.mvo__microcopy span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
}

/*======================================================
SEÇÃO 06 — ANIMAÇÕES
======================================================*/

.mvo__cabecalho,
.mvo__texto,
.mvo__mockup,
.mvo__beneficios,
.mvo__cta {
  opacity: 0;
  transform: translateY(22px);
}

.mvo.aparecer .mvo__cabecalho,
.mvo.aparecer .mvo__texto,
.mvo.aparecer .mvo__mockup,
.mvo.aparecer .mvo__beneficios,
.mvo.aparecer .mvo__cta {
  animation: entradaHero 700ms ease forwards;
}

.mvo.aparecer .mvo__cabecalho {
  animation-delay: 120ms;
}

.mvo.aparecer .mvo__mockup {
  animation-delay: 220ms;
}

.mvo.aparecer .mvo__texto {
  animation-delay: 320ms;
}

.mvo.aparecer .mvo__beneficios {
  animation-delay: 420ms;
}

.mvo.aparecer .mvo__cta {
  animation-delay: 520ms;
}

/*======================================================
SEÇÃO 06 — WEB MENOR
======================================================*/

@media (max-width: 1366px) {
  .mvo__titulo {
    font-size: 60px;
  }

  .mvo__conteudo {
    gap: 40px;
  }

  .mvo__texto p {
    font-size: 16px;
  }

  .mvo__mockup {
    min-height: 580px;
  }

  .mvo__imagem {
    width: min(500px, 36vw);
  }

  .mvo__mockup-anel {
    width: 560px;
    height: 560px;
  }

  .mvo__beneficio h4 {
    font-size: 18px;
  }

  .mvo__beneficio p {
    font-size: 15px;
  }
}

/*======================================================
SEÇÃO 06 — MOBILE
======================================================*/

@media (max-width: 768px) {
  .mvo__container {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .mvo__titulo {
    font-size: clamp(42px, 10vw, 60px);
  }

  .mvo__conteudo {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 38px;
  }

  .mvo__mockup {
    order: 1;
    min-height: 560px;
    width: 100%;
  }

  .mvo__imagem {
    width: min(520px, 82vw);
  }

  .mvo__mockup-anel {
    width: 520px;
    height: 520px;
  }

  .mvo__mockup-glow {
    width: 560px;
    height: 560px;
  }

  .mvo__base {
    width: 420px;
    bottom: 42px;
  }

  .mvo__texto {
    order: 2;
    padding-right: 0;
    border-right: 0;
    text-align: left;
  }

  .mvo__texto p {
    font-size: 20px;
    line-height: 1.55;
  }

  .mvo__texto p + p {
    margin-top: 22px;
  }

  .mvo__beneficios {
    order: 3;
  }

  .mvo__beneficios h3 {
    text-align: left;
    font-size: 30px;
  }

  .mvo__beneficio {
    grid-template-columns: 68px 1fr;
    padding: 20px 22px;
  }

  .mvo__beneficio-icone {
    width: 56px;
    height: 56px;
  }

  .mvo__beneficio h4 {
    font-size: 22px;
  }

  .mvo__beneficio p {
    font-size: 18px;
  }

  .mvo__cta {
    margin-top: 48px;
    padding: 34px 24px 30px;
  }

  .mvo__chamada h3 {
    font-size: 31px;
  }

  .mvo__chamada p {
    font-size: 23px;
  }

  .mvo__botao {
    min-height: 70px;
    font-size: 18px;
    padding-inline: 20px;
  }

  .mvo__botao .botao__icone {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .mvo__seta {
    font-size: 24px;
  }

  .mvo__microcopy span {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .mvo__titulo {
    font-size: 39px;
  }

  .mvo__mockup {
    min-height: 470px;
  }

  .mvo__imagem {
    width: min(420px, 84vw);
  }

  .mvo__mockup-anel {
    width: 420px;
    height: 420px;
  }

  .mvo__mockup-glow {
    width: 460px;
    height: 460px;
  }

  .mvo__texto p {
    font-size: 18px;
  }

  .mvo__beneficio {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .mvo__beneficio-icone {
    width: 50px;
    height: 50px;
  }

  .mvo__beneficio-icone svg {
    width: 30px;
    height: 30px;
  }

  .mvo__beneficio h4 {
    font-size: 20px;
  }

  .mvo__beneficio p {
    font-size: 16px;
  }

  .mvo__chamada h3 {
    font-size: 28px;
  }

  .mvo__chamada p {
    font-size: 20px;
  }

  .mvo__botao {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .mvo__titulo {
    font-size: 36px;
  }

  .mvo__mockup {
    min-height: 430px;
  }

  .mvo__imagem {
    width: min(380px, 86vw);
  }

  .mvo__mockup-anel {
    width: 380px;
    height: 380px;
  }

  .mvo__chamada h3 {
    font-size: 26px;
  }

  .mvo__botao {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mvo__cabecalho,
  .mvo__texto,
  .mvo__mockup,
  .mvo__beneficios,
  .mvo__cta {
    opacity: 1;
    transform: none;
  }
}

/*======================================================
SEÇÃO 07 — VAMOS CONVERSAR
======================================================*/

.contato {
  position: relative;
  overflow: hidden;
  background: var(--fundo-principal);
  isolation: isolate;
}

.contato__fundo,
.contato__glow,
.contato__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contato__fundo {
  z-index: -5;
  background:
    radial-gradient(circle at 72% 52%, rgba(11, 92, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #020812 0%, #061426 50%, #081a2f 100%);
}

.contato__glow {
  z-index: -4;
  background:
    radial-gradient(circle at 72% 58%, rgba(11, 92, 255, 0.28), transparent 34%);
  filter: blur(34px);
}

.contato__noise {
  z-index: -2;
  opacity: 0.04;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 1px, transparent 1px 4px);
}

.contato__container {
  position: relative;
  z-index: 4;
  padding-top: 110px;
  padding-bottom: 80px;
}

.contato__conteudo {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  align-items: center;
  gap: 56px;
}

/* TEXTO */

.contato__microtexto {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: var(--azul-secundario);
}

.contato__microtexto span {
  width: 34px;
  height: 34px;
  display: inline-flex;
}

.contato__microtexto svg {
  width: 100%;
  height: 100%;
}

.contato__microtexto p {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contato__titulo {
  max-width: 720px;
  font-size: clamp(48px, 4.3vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--branco);
}

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

.contato__linha {
  width: 520px;
  max-width: 100%;
  height: 1px;
  margin: 36px 0 38px;
  background: linear-gradient(
    90deg,
    var(--azul-principal),
    transparent
  );
  box-shadow: 0 0 18px rgba(43, 141, 255, 0.8);
}

.contato__copy {
  max-width: 620px;
}

.contato__copy p {
  font-size: 22px;
  line-height: 1.55;
  color: var(--cinza-claro);
}

.contato__copy p + p {
  margin-top: 22px;
}

.contato__copy strong {
  color: var(--azul-secundario);
  font-weight: 500;
}

.contato__copy .contato__whatsapp {
  color: #00d757;
}

/* BOTÃO WHATSAPP */

.contato__botao {
  width: min(580px, 100%);
  min-height: 86px;
  margin-top: 38px;
  padding: 18px 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, #05d84f, #009d38);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 29px;
  font-weight: 800;
  box-shadow:
    0 0 32px rgba(0, 216, 86, 0.42),
    inset 0 0 0 1px rgba(255,255,255,.2);
  transition:
    transform var(--transicao),
    box-shadow var(--transicao),
    filter var(--transicao);
}

.contato__botao:hover {
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow:
    0 0 44px rgba(0, 216, 86, 0.56),
    0 18px 46px rgba(0, 216, 86, 0.2),
    inset 0 0 0 1px rgba(255,255,255,.24);
}

.contato__botao-icone {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.contato__botao-icone svg {
  width: 100%;
  height: 100%;
}

.contato__botao-seta {
  font-size: 34px;
  line-height: 1;
}

.contato__microcopy {
  max-width: 560px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
  color: var(--cinza-claro);
}

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

.contato__microcopy svg {
  width: 38px;
  height: 38px;
}

.contato__microcopy p {
  font-size: 20px;
  line-height: 1.45;
}

/* FOTO */

.contato__foto-area {
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.contato__foto {
  width: min(560px, 40vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/*======================================================
RODAPÉ
======================================================*/

.rodape {
  position: relative;
  background: rgba(3, 12, 24, 0.98);
  border-top: 1px solid rgba(43, 141, 255, 0.18);
}

.rodape__container {
  padding-top: 34px;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px 60px;
  align-items: center;
}

.rodape__assinatura {
  font-size: 34px;
  line-height: 1;
  font-family: cursive;
  color: var(--azul-secundario);
}

.rodape__marca span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--branco);
}

.rodape__menu {
  display: flex;
  justify-content: flex-end;
  gap: 54px;
}

.rodape__menu a {
  color: var(--branco);
  font-size: 18px;
  transition: color var(--transicao);
}

.rodape__menu a:hover {
  color: var(--azul-secundario);
}

.rodape__copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,.55);
}

/*======================================================
ANIMAÇÕES
======================================================*/

.contato__texto,
.contato__foto-area,
.rodape__container {
  opacity: 0;
  transform: translateY(22px);
}

.contato.aparecer .contato__texto,
.contato.aparecer .contato__foto-area {
  animation: entradaHero 700ms ease forwards;
}

.contato.aparecer .contato__texto {
  animation-delay: 120ms;
}

.contato.aparecer .contato__foto-area {
  animation-delay: 240ms;
}

/*======================================================
MOBILE
======================================================*/

@media (max-width: 768px) {
  .contato__container {
    padding-top: 86px;
    padding-bottom: 70px;
  }

  .contato__conteudo {
    display: flex;
    flex-direction: column;
    gap: 34px;
    text-align: center;
  }

  .contato__microtexto {
    justify-content: center;
    margin-bottom: 28px;
  }

  .contato__titulo {
    font-size: clamp(40px, 10vw, 58px);
    margin-inline: auto;
  }

  .contato__linha {
    margin: 30px auto 30px;
  }

  .contato__foto-area {
    order: 2;
    width: 100%;
  }

  .contato__texto {
    display: contents;
  }

  .contato__microtexto,
  .contato__titulo,
  .contato__linha {
    order: 1;
  }

  .contato__foto {
    width: min(430px, 78vw);
  }

  .contato__copy {
    order: 3;
    max-width: 620px;
    margin-inline: auto;
  }

  .contato__copy p {
    font-size: 22px;
    line-height: 1.55;
  }

  .contato__botao {
    order: 4;
    width: 100%;
    min-height: 76px;
    margin-top: 8px;
    font-size: 26px;
  }

  .contato__microcopy {
    order: 5;
    max-width: 520px;
    margin-inline: auto;
    text-align: left;
  }

  .rodape__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .rodape__menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 34px;
  }

  .rodape__menu a {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .contato__titulo {
    font-size: 38px;
  }

  .contato__foto {
    width: min(360px, 78vw);
  }

  .contato__copy p {
    font-size: 19px;
  }

  .contato__botao {
    min-height: 68px;
    font-size: 22px;
    gap: 16px;
  }

  .contato__botao-icone {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .contato__microcopy p {
    font-size: 17px;
  }

  .rodape__assinatura {
    font-size: 30px;
  }

  .rodape__copy {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contato__texto,
  .contato__foto-area,
  .rodape__container {
    opacity: 1;
    transform: none;
  }
}

/*======================================================
RESPONSIVIDADE
======================================================*/

@media (max-width: 1366px) {
  .container {
    width: min(100% - 128px, var(--container));
  }

  .hero__titulo {
    font-size: 66px;
  }

  .hero__proposta {
    font-size: 22px;
  }

  .hero__foto {
    right: 2vw;
    bottom: -58px;
    width: min(720px, 42vw);
  }
}

@media (max-width: 1200px) {
  .container {
    width: min(100% - 96px, var(--container));
  }

  .cabecalho__menu {
    gap: 28px;
  }

  .hero__grid {
    gap: 48px;
  }

  .hero__titulo {
    font-size: 60px;
  }

  .hero__proposta {
    font-size: 21px;
  }

  .hero__copy p {
    font-size: 16px;
  }

  .hero__microcopy {
    gap: 22px;
  }

  .hero__microcopy-item:not(:last-child) {
    padding-right: 22px;
  }

  .hero__foto {
    right: 0;
    width: min(660px, 42vw);
  }
}

@media (max-width: 1024px) {
  .cabecalho__menu,
  .cabecalho__cta {
    display: none;
  }

  .cabecalho__menu-mobile {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero__container {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
    align-items: flex-start;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__conteudo {
    max-width: 100%;
  }

  .hero__titulo {
    font-size: clamp(64px, 14vw, 96px);
  }

  .hero__proposta {
    max-width: 720px;
    font-size: 26px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__acoes {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero__botao-principal {
    width: 100%;
    max-width: 500px;
  }

  .hero__botao-secundario {
    width: 100%;
    max-width: 420px;
    padding: 0 24px;
    border: 1px solid rgba(11, 92, 255, 0.55);
    border-radius: 24px;
  }

  .hero__botao-secundario::after {
    display: none;
  }

  .hero__microcopy {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero__microcopy-item:not(:last-child) {
    border-right: 0;
    padding-right: 0;
  }

  .hero__microcopy-item {
    position: relative;
  }

  .hero__microcopy-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 54px;
    width: 1px;
    height: 28px;
    background: rgba(43, 141, 255, 0.5);
  }

  .hero__imagem {
    width: 100%;
    height: 620px;
    right: 0;
    bottom: 0;
  }

  .hero__foto {
    right: -120px;
    bottom: -80px;
    width: 520px;
  }

  .hero__scroll {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .cabecalho {
    height: 92px;
  }

  .cabecalho__logo-simbolo {
    font-size: 52px;
  }

  .cabecalho__logo-texto strong {
    font-size: 22px;
  }

  .hero__container {
    padding-top: 120px;
    padding-bottom: 88px;
  }

  .hero__microtexto span {
    width: 80px;
  }

  .hero__titulo {
    font-size: clamp(72px, 17vw, 92px);
  }

  .hero__proposta {
    font-size: 25px;
    line-height: 1.45;
  }

  .hero__copy {
    padding-left: 28px;
  }

  .hero__copy p {
    font-size: 20px;
    line-height: 1.55;
  }

  .botao {
    font-size: 20px;
  }

  .hero__microcopy p {
    font-size: 18px;
  }

  .hero__imagem {
    height: 600px;
  }

  .hero__foto {
    width: 560px;
    right: -70px;
    bottom: -80px;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .cabecalho__logo {
    gap: 12px;
  }

  .cabecalho__logo-simbolo {
    font-size: 46px;
  }

  .cabecalho__logo-texto strong {
    font-size: 19px;
  }

  .cabecalho__logo-texto span {
    font-size: 10px;
  }

  .hero__titulo {
    font-size: clamp(58px, 17vw, 78px);
  }

  .hero__proposta {
    font-size: 21px;
  }

  .hero__copy p {
    font-size: 17px;
  }

  .botao {
    min-height: 58px;
    padding: 16px 24px;
    font-size: 18px;
  }

  .hero__imagem {
    height: 540px;
  }

  .hero__foto {
    width: 500px;
    right: -70px;
    bottom: -70px;
  }
}

@media (max-width: 420px) {
  .hero__titulo {
    font-size: 58px;
  }

  .hero__proposta {
    font-size: 20px;
  }

  .hero__copy p {
    font-size: 16px;
  }

  .hero__microcopy p {
    font-size: 16px;
  }

  .hero__imagem {
    height: 520px;
  }

  .hero__foto {
    width: 670px;
    right: -150px;
  }
}

/*======================================================
ACESSIBILIDADE
======================================================*/

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--azul-secundario);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__microtexto,
  .hero__titulo,
  .hero__proposta,
  .hero__copy,
  .hero__acoes,
  .hero__microcopy,
  .hero__imagem {
    opacity: 1;
    transform: none;
  }
}

/*======================================================
MENU MOBILE ABERTO
======================================================*/

@media (max-width: 1024px) {
  .cabecalho__menu {
    position: fixed;
    top: 92px;
    left: 24px;
    right: 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;

    padding: 28px;
    border-radius: 24px;

    background: rgba(6, 20, 38, 0.96);
    border: 1px solid rgba(43, 141, 255, 0.18);
    backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);

    pointer-events: none;

    transition:
      opacity 250ms ease,
      visibility 250ms ease,
      transform 250ms ease;
  }

  .cabecalho__menu.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .cabecalho__menu a {
    width: 100%;
    font-size: 18px;
    padding: 10px 0;
  }

  .cabecalho__menu-mobile.ativo span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .cabecalho__menu-mobile.ativo span:nth-child(2) {
    opacity: 0;
  }

  .cabecalho__menu-mobile.ativo span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .cabecalho__menu-mobile span {
    transition:
      transform 250ms ease,
      opacity 250ms ease;
  }
}

/*======================================================
AJUSTES MOBILE - SEÇÃO 04
Cole no FINAL do style.css
======================================================*/

@media (max-width:768px){

    .jornada__roadmap{
        padding-left:72px;
        gap:22px;
    }

    .jornada__roadmap::before{
        left:28px;
    }

    .jornada__card{

        display:grid;
        grid-template-columns:72px 1fr;
        align-items:center;

        column-gap:20px;

        padding:26px 56px 26px 22px;

        min-height:unset;
        text-align:left;

    }

    .jornada__numero{

        width:54px;
        height:54px;

        left:-72px;
        top:34px;

        font-size:20px;

    }

    .jornada__numero::after{
        right:-18px;
    }

    .jornada__icone{

        position:static;

        width:62px;
        height:62px;

        margin:0;

        grid-row:1 / span 2;

    }

    .jornada__icone svg{

        width:34px;
        height:34px;

    }

    .jornada__card h3{

        margin:0;

        font-size:23px;
        line-height:1.2;

    }

    .jornada__card p{

        margin:10px 0 0;

        font-size:18px;
        line-height:1.45;

    }

    .jornada__link{

        position:absolute;

        right:22px;
        top:50%;

        transform:translateY(-50%);

        font-size:0;

        padding:0;

    }

    .jornada__link::after{

        content:"→";

        font-size:34px;
        color:var(--azul-principal);

    }

}


@media (max-width:576px){

    .jornada__roadmap{
        padding-left:58px;
    }

    .jornada__roadmap::before{
        left:22px;
    }

    .jornada__numero{

        width:46px;
        height:46px;

        left:-58px;

        font-size:17px;

    }

    .jornada__numero::after{
        right:-15px;
    }

    .jornada__card{

        grid-template-columns:58px 1fr;

        column-gap:16px;

        padding:22px 48px 22px 18px;

    }

    .jornada__icone{

        width:54px;
        height:54px;

    }

    .jornada__icone svg{

        width:30px;
        height:30px;

    }

    .jornada__card h3{

        font-size:20px;

    }

    .jornada__card p{

        font-size:16px;

    }

    .jornada__link::after{

        font-size:30px;

    }

}

/*======================================================
AJUSTE MOBILE - ASPAS CTA FINAL SEÇÃO 04
======================================================*/

@media (max-width: 768px) {
  .jornada__frase p {
    position: relative;
    padding: 0 18px;
  }

  .jornada__frase p strong {
    position: absolute;
    font-size: 54px;
    line-height: 1;
  }

  .jornada__frase p strong:first-child {
    left: 0;
    top: -34px;
  }

  .jornada__frase p strong:last-of-type {
    right: 0;
    top: 48px;
  }
}

@media (max-width: 576px) {
  .jornada__frase p strong:first-child {
    left: -4px;
    top: -30px;
  }

  .jornada__frase p strong:last-of-type {
    right: -4px;
    top: 42px;
  }
}

/*======================================================
AJUSTE WEB — COMPACTAR SEÇÕES 05 E 06
======================================================*/

@media (min-width: 1025px) {

  .ebook__container,
  .mvo__container {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .ebook__conteudo,
  .mvo__conteudo {
    margin-top: 48px;
    gap: 36px;
  }

  .ebook__titulo,
  .mvo__titulo {
    font-size: clamp(44px, 4vw, 64px);
  }

  .ebook__mockup,
  .mvo__mockup {
    min-height: 500px;
  }

  .ebook__imagem,
  .mvo__imagem {
    width: min(460px, 32vw);
  }

  .ebook__mockup-anel,
  .mvo__mockup-anel {
    width: 500px;
    height: 500px;
  }

  .ebook__mockup-glow,
  .mvo__mockup-glow {
    width: 540px;
    height: 540px;
  }

  .ebook__base,
  .mvo__base {
    width: 420px;
    bottom: 28px;
  }

  .ebook__texto p,
  .mvo__texto p {
    font-size: 15px;
    line-height: 1.48;
  }

  .ebook__texto p + p,
  .mvo__texto p + p {
    margin-top: 18px;
  }

  .ebook__beneficio,
  .mvo__beneficio {
    padding: 16px 18px;
  }

  .ebook__beneficio p {
    font-size: 16px;
  }

  .mvo__beneficio h4 {
    font-size: 16px;
  }

  .mvo__beneficio p {
    font-size: 14px;
  }

  .ebook__cta,
  .mvo__cta {
    margin-top: 34px;
    padding: 26px 36px 24px;
  }

  .ebook__chamada h3,
  .mvo__chamada h3 {
    font-size: 26px;
  }

  .ebook__chamada p,
  .mvo__chamada p {
    font-size: 20px;
  }

  .ebook__botao,
  .mvo__botao {
    min-height: 56px;
    margin-top: 20px;
    font-size: 18px;
    padding: 14px 28px;
  }

  .ebook__botao .botao__icone,
  .mvo__botao .botao__icone {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .mvo__seta {
    font-size: 22px;
  }

  .ebook__microcopy,
  .mvo__microcopy {
    margin-top: 16px;
  }

  .ebook__microcopy span,
  .mvo__microcopy span {
    font-size: 14px;
  }
}

/*======================================================
AJUSTES FINAIS — SEÇÃO CONTATO
(COLAR NO FINAL DO CSS)
======================================================*/

/* Container da seção */

.contato__container{
    padding:90px 0 45px;
}

/* Layout */

.contato__conteudo{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:end;
    gap:60px;
}

/* Texto */

.contato__texto{
    align-self:center;
}

/* Área da foto */

.contato__foto-area{
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    overflow:hidden;
}

/* Foto */

.contato__foto{
    display:block;
    width:100%;
    max-width:560px;
    max-height:650px;
    height:auto;
    object-fit:contain;

    margin:0;
    padding:0;

    border:none;
    box-shadow:none;
    filter:none;
}

/* Botão */

.contato__botao{
    width:520px;
    max-width:100%;
    min-height:72px;

    font-size:22px;
    padding:18px 30px;
}

/* Microcopy */

.contato__microcopy{
    margin-top:22px;
}

/* Rodapé */

.rodape{
    margin-top:24px;
}

/*======================================================
MOBILE
======================================================*/

@media (max-width:768px){

.contato__container{
    padding:80px 0 50px;
}

.contato__conteudo{
    display:flex;
    flex-direction:column;
    gap:34px;
}

.contato__foto-area{
    order:2;
    justify-content:center;
}

.contato__foto{

    width:100%;
    max-width:340px;
    max-height:none;

    margin:auto;
}

.contato__copy{
    order:3;
}

.contato__botao{
    order:4;
    width:100%;
    min-height:66px;
    font-size:20px;
}

.contato__microcopy{
    order:5;
}

}

/*======================================================
DESKTOP GRANDES
======================================================*/

@media (min-width:1600px){

.contato__foto{
    max-width:620px;
}

}

/*======================================================
CORREÇÃO FINAL — FOOTER VISÍVEL
======================================================*/

.rodape__container {
  opacity: 1 !important;
  transform: none !important;
}

.rodape {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 0;
  background: rgba(3, 12, 24, 0.98);
  border-top: 1px solid rgba(43, 141, 255, 0.18);
  position: relative;
  z-index: 10;
}

