:root {
  --roxo-suave: #f9c5d1;
  --azul-suave: #a0d4f8;
  --roxo-escuro: #7e57c2;
  --azul-profundo: #d48ea6;
  --cinza-branco: #fafbfc;
  --preto-suave: #2d3436;
  --branco: #ffffff;
  --fonte: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
  font-family: var(--fonte);
  background: linear-gradient(180deg, var(--cinza-branco) 0%, var(--azul-suave) 100%);
  color: var(--preto-suave);
  line-height: 1.6;
}

.container {
  max-width: 1080px;
  margin: auto;
  padding: 2rem;
}

header {
  background-color: var(--roxo-suave);
  padding: 1.5rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.hero-parallax {
  height: 350px;
  background-image: url('assets/WhatsApp Image 2025-09-05 at 15.13.16.jpeg'); /* ajuste o caminho */
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

    /* NOVO: Efeito de zoom sutil ao carregar */
    transform: scale(1.05); /* Começa um pouco maior */
    animation: gentleZoom 30s infinite alternate forwards;
  }
  
  @keyframes gentleZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.0); }
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05); /* pode ajustar ou remover se quiser mais contraste */
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--roxo-escuro);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--preto-suave);
  font-weight: 500;
}

nav a:hover {
  color: var(--roxo-escuro);
  text-shadow: 0 0 5px var(--roxo-suave);
}

nav .menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--azul-suave);
}

#hero {
  background: linear-gradient(135deg, var(--azul-suave), var(--roxo-suave));
  text-align: center;
  padding: 4rem 2rem;
  color: var(--preto-suave);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

#hero h2 {
  font-size: 2rem;
  color: var(--roxo-escuro);
}

#hero p {
  margin: 1rem 0;
}

.cta-buttons a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--roxo-escuro);
  color: var(--branco);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s, box-shadow 0.3s ease;
  box-shadow: 0 0 10px transparent;
}

.cta-buttons a:hover {
  background-color: var(--azul-profundo);
  box-shadow: 0 0 15px var(--azul-profundo);
}

section {
  padding: 4rem 2rem;
}

section h2 {
  color: var(--roxo-escuro);
  margin-bottom: 1rem;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.skill-h2{
  font-family: sansita;
  font-size: 2.5rem; /* Um pouco maior para destaque */
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Sombra no texto do título */
}
.skill {
  background-color: var(--azul-suave);
  border-radius: 10px;
  padding: 1rem;
  font-weight: bold;
  text-align: center;
  color: var(--roxo-escuro);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.skill:hover {
  background-color: var(--roxo-escuro);
  color: var(--branco);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 10px var(--roxo-escuro);
}

.skill .iconify {
  color: var(--roxo-escuro);
}

.skill:hover .iconify {
  color: var(--branco);
}

.skill img, .skill .iconify {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* ==================================== */
/* ===== 2. Certificações CSS ===== */
/* ==================================== */

#certificacoes {
  /* Substitua o background-color */
  background: linear-gradient(135deg, var(--azul-suave), var(--roxo-suave));
  padding: 4rem 2rem;
  text-align: center;
}

#certificacoes h2 {
  font-family: sansita;
  font-size: 2.5rem; /* Um pouco maior para destaque */
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Sombra no texto do título */
}

.certificacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.certificado-card {
  background-color: var(--branco); /* mantém branco */
  padding: 1.5rem;
  border-radius: 12px;
  /* Aumenta a sombra para destacar mais */
  box-shadow: 0 4px 15px rgba(126, 87, 194, 0.2); /* Usa cor roxa na sombra */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.certificado-card:hover {
  transform: translateY(-8px);
  /* Sombra mais forte no hover */
  box-shadow: 0 10px 25px rgba(126, 87, 194, 0.3); 
}

.certificado-card h3 {
  color: var(--roxo-escuro);
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

.data-certificado {
  color: var(--preto-suave);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1; /* Garante que o botão fique na parte inferior */
}

.btn-certificado {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  /* Troca a cor para o roxo escuro */
  background-color: var(--roxo-escuro); /* #7e57c2 */
  color: var(--branco);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s, opacity 0.3s;
}

.btn-certificado:hover {
  /* No hover, usa o seu azul profundo ou outro tom do roxo/azul */
  background-color: var(--azul-profundo); /* #d48ea6 */
}

.btn-certificado.btn-disabled {
    background-color: #ccc;
    cursor: default;
    opacity: 0.6;
}

.btn-certificado.btn-disabled:hover {
    background-color: #ccc;
}

.badge-img {
  width: 80px;  /* Tamanho ideal para o badge no card */
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.sobre-texto h2{
  color: #a0d4f8;
}
.sobre-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  /* background-color: var(--azul-profundo); */
  background-color: #b297e1;
    /* fallback + degradê */
  background: #b297e1;
  background: linear-gradient(90deg,   #7e57c2 0%, #b297e1 100%);
  border-radius: 15px;
}

.sobre-texto {
  flex: 1 1 400px;
  text-align: justify;
}

.sobre-foto {
  flex: 1 1 300px;
  perspective: 1000px;
}

.sobre-foto img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sobre-foto img:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.jornada{
background: linear-gradient(135deg, var(--roxo-suave), var(--roxo-escuro));
font-family: "Sansita", sans-serif;
text-align: center;
}
#video-destaque {
  /* Novo Fundo Degradê: do seu roxo-escuro para o azul-profundo */
  background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--azul-profundo) 100%);
  padding: 6rem 2rem; /* Aumenta o padding para dar mais "respiro" */
  text-align: center;
  color: var(--branco); /* Ajusta a cor do texto para branco para contraste */
  box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra interna sutil */
}

/* Também vamos ajustar a cor do h2 dentro dessa seção para ter um contraste ainda melhor */
#video-destaque h2 {
    font-family: sansita;
    color: var(--branco); /* Título branco */
    font-size: 2.5rem; /* Um pouco maior para destaque */
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Sombra no texto do título */
}

/* E o parágrafo logo abaixo do h2 */
#video-destaque p {
    color: var(--cinza-branco); /* Cor mais clara para o parágrafo */
    max-width: 700px; /* Limita a largura para melhor leitura */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem; /* Mais espaço antes do vídeo */
}

#youtube {
  background-color: var(--azul-suave);
  padding: 4rem 2rem;
  text-align: center;
}

.youtube-video {
  margin-top: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.desafio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Os estilos para .desafio-grid provavelmente já estão ok */
.desafio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.desafio-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--branco);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  overflow: hidden; /* IMPORTANTE: Esconde o que excede o contêiner */
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%; /* Garante que todos os cards tenham a mesma altura */
  font-family: sansita;
}

.desafio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.desafio-card img {
  width: 100%; /* A imagem sempre ocupará 100% da largura do card */
  height: 180px; /* **NOVO:** Define uma altura fixa para todas as imagens */
  object-fit: cover; /* **NOVO:** Corta a imagem para preencher o espaço, mantendo a proporção */
  object-position: center top; /* **NOVO:** Foca o corte na parte superior da imagem, útil para fotos de tela */
  display: block; /* Remove possíveis espaços extras abaixo da imagem */
}

.desafio-card span {
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  color: var(--roxo-escuro);
  /* Adicione estas propriedades para que o span use o espaço restante */
  flex-grow: 1; /* Permite que o span cresça e ocupe o espaço disponível */
  display: flex; /* Transforma em flex para centralizar o texto verticalmente */
  align-items: center; /* Centraliza verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
}
.parallax-contato {
  /* background-image: url('assets/WhatsApp Image 2025-09-05 at 15.13.16.jpeg'); ajuste o caminho se necessário */
  background-color: var(--roxo-escuro);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: var(--branco);
  text-align: center;
  padding: 6rem 2rem;
  z-index: 1;
}

.parallax-contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(20, 20, 20, 0.5); overlay leve pra contraste */
  z-index: -1;
}
.parallax-contato h2 {
color: var(--azul-suave) ;
}

.parallax-contato a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #a0d4f8;
  color: var(--branco);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, box-shadow 0.3s ease;
}

.parallax-contato a:hover {
  background-color: var(--azul-profundo);
  box-shadow: 0 0 15px var(--azul-profundo);
}

footer {
  background-color: var(--roxo-suave);
  background: linear-gradient(90deg,  #b297e1 0%, #7e57c2   100%);
  text-align: center;
  /* padding: 1rem; */
  font-size: 0.9rem;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.timeline::before,
.timeline li::before {
  background: var(--roxo-escuro);
}

.timeline li:nth-child(1) h3 i { color: #ff7f50; }
.timeline li:nth-child(2) h3 i { color: #f39c12; }
.timeline li:nth-child(3) h3 i { color: #8e44ad; }
.timeline li:nth-child(4) h3 i { color: #2ecc71; }
.timeline li:nth-child(5) h3 i { color: #3498db; }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: var(--roxo-principal);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 100;
  }

  .nav-links {
    background: #f9c5d1;
  }
  nav ul.show {
    display: flex;
  }

  nav .menu-toggle {
    display: block;
  }
}

/* #####TESTE */
/* ===== Hero (parallax no topo já está ok) ===== */

/* ===== Header / Nav “flutuante” ===== */
.site-header {
  /* position: sticky;       gruda no topo ao rolar */
  top: 0;
  z-index: 1000;
  /* background: transparent;  SEM faixa sólida */
  background: #b297e1;
  padding: .75rem 0;        /* espaço vertical do header */
    /* fallback + degradê */
    background: #b297e1;
    background: linear-gradient(90deg, #b297e1 0%, #7e57c2 100%);
  
    padding: .75rem 0;
    box-shadow: 0 6px 18px rgba(126,87,194,.12); /* leve separação do conteúdo */
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center; /* nav centralizado */
  position: relative;
}

/* Marca à esquerda (opcional) */
.site-header .brand {
  position: absolute;
  left: 1rem;
  font-weight: 700;
  color: var(--preto-suave);
  text-decoration: none;
}

/* Botão hamburger (mobile) à direita */
.nav-toggle {
  position: absolute;
  right: 1rem;
  display: none;
  background: none;
  border: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--preto-suave);
  cursor: pointer;
}

/* “Pílula” de links (glassmorphism) */
.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: .65rem 1.25rem;
  margin: 0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Links com sublinhado animado */
.site-nav a {
  text-decoration: none;
  color: var(--preto-suave);
  font-weight: 600;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--roxo-escuro);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .site-header .container { justify-content: space-between; }
  .nav-toggle { display: block; }

  .site-nav {
    display: none;               /* escondido por padrão */
    position: absolute;
    top: calc(100% + .5rem);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    width: calc(100% - 2rem);
    max-width: 560px;
    padding: .75rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
  }
  .site-nav.open { display: flex; }
  .site-nav li { text-align: center; }
}





/* Ajuste só para telas menores */
@media (max-width: 768px) {
  #video-destaque .youtube-video-destaque iframe {
    width: 100% !important;  /* ocupa a largura disponível */
    height: auto;            /* deixa o navegador calcular */
    aspect-ratio: 16/9;      /* mantém proporção sem vazar */
  }
}
@media (max-width: 768px) {
  .hero-parallax {
    height: 220px; /* mais alto que 200px pra não achatar */
    background-position: center 20%; /* sobe um pouco o foco da imagem */
    background-size: cover;
  }
  .site-header {
    padding: 0.5rem 0; /* antes .75rem ou 1.5rem */
  }
  
  .site-header .container {
    padding: 0 1rem; /* reduz espaço interno lateral */
  }
  
  
}
/* ==================================== */
/* ===== TIMELINE DA JORNADA (ESTÉTICA FINAL) ===== */
/* ==================================== */
#jornada {
  background: linear-gradient(135deg, var(--azul-suave), var(--roxo-suave)); /* Fundo claro para contraste */
  padding: 6rem 2rem;
}

#jornada h2 {
  /* Define a fonte Sansita apenas para a seção Jornada */
  font-family: 'Sansita', sans-serif;
  font-weight: 800;
  text-transform: none;
  letter-spacing: normal;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto;
  list-style: none; /* Remove as bolinhas padrão do <ul> */
  padding-left: 0;

}

/* 1. Linha vertical central */
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--roxo-escuro); /* Cor roxa da linha */
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  margin-bottom: 2.5rem; /* Mais espaço entre os cards */
}

/* Posicionamento dos cards (alternando lados) */
.timeline-item:nth-child(even) {
  left: 50%;
}
.timeline-item:nth-child(odd) {
  left: 0;
}

/* 2. Conteúdo do Card (Fundo Branco + Efeito) */
.conteudo-timeline {
  background-color: var(--branco);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  font-family: poppins;
}

.conteudo-timeline:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(126, 87, 194, 0.3);
}

.conteudo-timeline h3 {
  color: var(--roxo-escuro);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.conteudo-timeline h3 i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: var(--azul-profundo); /* Cor de destaque para os ícones */
}

/* 3. Bolinhas de Destaque (Dots) */
.timeline-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--roxo-escuro);
  border: 4px solid var(--cinza-branco);
  top: 35px;
  border-radius: 50%;
  z-index: 10;
}

/* Posição da bolinha */
.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px; 
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

/* Estilos de ícones antigos (remover para não conflitar) */
.timeline li:nth-child(1) h3 i,
.timeline li:nth-child(2) h3 i,
.timeline li:nth-child(3) h3 i,
.timeline li:nth-child(4) h3 i,
.timeline li:nth-child(5) h3 i { 
  /* REMOVER ESTE TRECHO SE EXISTIR NO SEU CSS: 
     Isso permite que a cor do ícone seja controlada por .conteudo-timeline h3 i
  */
}


/* Estilo para Mobile (Timeline de Coluna Única) */
@media screen and (max-width: 768px) {
  .timeline::after {
      left: 20px;
  }

  .timeline-item {
      width: 100%;
      padding-left: 50px;
      padding-right: 15px;
      left: 0 !important;
  }

  .timeline-dot {
      left: 14px !important;
  }

  .timeline-item:nth-child(odd) .timeline-dot {
      right: auto;
  }
}
#conteudo{
  background: linear-gradient(135deg, var(--azul-suave) 0%, var(--azul-profundo) 100%);
}
#conteudo h2{
  font-family: sansita;
  color: var(--branco); /* Título branco */
  font-size: 2.5rem; /* Um pouco maior para destaque */
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Sombra no texto do título */
}
/* ==================================== */
/* ===== BOTÃO BLOG DE DESTAQUE ===== */
/* ==================================== */
.btn-blog-destaque {
  display: inline-block;
  /* Tamanho e espaçamento */
  margin-top: 3rem; 
  padding: 1rem 2.5rem;
  
  /* Cores e estilos */
  background-color: var(--roxo-escuro); /* Cor primária */
  color: var(--branco);
  text-decoration: none;
  font-weight: 700;
  font-family: sansita;
  font-size: 1.1rem;
  border-radius: 8px;
  
  /* Efeito e transição */
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-blog-destaque:hover {
  background-color: var(--azul-profundo); /* Cor de destaque no hover */
  transform: translateY(-2px); /* Efeito de elevação */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-blog-destaque i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
/* ==================================== */
/* ===== TIMELINE SCROLL EFFECT CSS ===== */
/* ==================================== */

/* Faz o dot ficar colorido e o card ativo */
.timeline-item.timeline-active .timeline-dot {
  background-color: var(--azul-profundo); /* Cor de destaque quando ativo */
  border-color: var(--roxo-escuro); /* Borda mais escura */
  transform: scale(1.1); /* Anima um pouco a bolinha */
  transition: all 0.5s ease;
}

.timeline-item.timeline-active .conteudo-timeline {
  border-left: 5px solid var(--azul-profundo); /* Linha vertical colorida no card ativo */
  box-shadow: 0 8px 20px rgba(126, 87, 194, 0.4); /* Sombra mais forte para destaque */
}

/* Opcional: Efeito na linha central (mais complexo, mas dá para simular) */
/* Isso requer um ajuste mais avançado que pode ser feito no CSS puro, mas o efeito acima já dará a sensação de movimento! */

/* Localize e substitua o bloco .sobre-container no seu style.css: */
.sobre-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  
  /* Mantém seu degradê */
  background: linear-gradient(90deg, var(--roxo-escuro) 0%, var(--azul-suave) 100%); 
  
  border-radius: 15px;
  padding: 3rem; /* Aumenta um pouco o padding interno */
  color: var(--branco); /* Garante que o texto seja branco para melhor leitura */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Sombra mais forte para destacar */
}

/* Garante que o texto seja fácil de ler */
.sobre-texto h2{
  color: var(--roxo-suave); /* Título em cor clara para contraste */
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Faz a imagem se misturar melhor com o fundo */
.sobre-foto img {
  /* ... estilos existentes ... */
  box-shadow: 0 10px 25px rgba(0,0,0,0.4); /* Sombra mais intensa */
  border: 3px solid var(--roxo-suave); /* Borda sutil de destaque */
}

/* Localize e substitua o bloco footer no seu style.css: */
footer {
  /* Seu degradê existente */
  background: linear-gradient(90deg,  #b297e1 0%, #7e57c2   100%);
  text-align: center;
  padding: 1.5rem 0; /* Aumenta o padding */
  font-size: 1rem; /* Aumenta o tamanho da fonte */
  color: var(--branco); /* Garante que o texto seja branco */
}

footer p {
  margin: 0.25rem 0; /* Reduz o espaçamento entre as linhas do footer */
  color: var(--cinza-branco); /* Cor suave para as letras */
}
/* ==================================== */
/* ===== TIMELINE DA JORNADA (ESTÉTICA FINAL) ===== */
/* ==================================== */
#jornada {
  /* NOVO: Fundo degradê para destacar a seção */
  background: linear-gradient(135deg, var(--roxo-suave) 0%, var(--azul-suave) 100%);
  padding: 6rem 2rem;
  
  /* NOVO: Centraliza todo o conteúdo da seção */
  text-align: center; 
}

#jornada h2 {
  /* Mantém os estilos de fonte, mas o text-align: center; da seção já deve resolver */
  font-family: 'Sansita', sans-serif;
  font-weight: 800;
  text-transform: none;
  letter-spacing: normal;
}
/* ... o resto do CSS da timeline é mantido ... */