/* ==========================
   RESET E BASE
========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1b263b;
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================
   CABEÇALHO
========================== */
.header {
  background-color: #0d1b2a;
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-effect {
  display: flex;
  justify-content: center;
  flex: 1;
}

.menu-effect ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0 auto;
}

.menu-effect ul li:last-child {
  margin-left: auto;
}

.link {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  padding: 0.4rem;
  position: relative;
  transition: color 0.3s ease;
}

.link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 5px;
  transform: scaleX(0);
  transition: all 0.6s ease;
  bottom: 0;
  left: 0;
}

.link:hover::before {
  transform: scaleX(1);
}

#hire-me {
  background-color: #fff;
  display: flex;
  align-items: center;
  color: black;
  border-radius: 5px;
  padding: 0.2rem 0.5rem;
  font-size: 14px;
  transition: all 0.6s ease;
}

#hire-me:hover {
  background-color: transparent;
  color: #fff;
  padding: 0.5rem;
}

#hire-me i {
  margin-right: 0.4rem;
  font-size: 14px;
}

/* ==========================
   BANNER
========================== */
.banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner1 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.6);
  z-index: 1;
}

.banner-content {
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  margin-top: -120px;
}

.logo-banner {
  max-width: 100%;
  height: auto;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.banner-right {
  color: white;
  text-align: left;
}

.linha-topo {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.linha-principal {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}

.linha-desc {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.lista-beneficios {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

.lista-beneficios li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.lista-beneficios i {
  margin-right: 0.5rem;
  color: #4ade80;
}

.botao-destaque {
  background-color: #415a77;
  color: white;
  padding: 0.75rem 1.8rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.3s;
}

.botao-destaque:hover {
  background-color: #1b263b;
}

/* ==========================
   CONTADORES
========================== */
.contadores {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4rem;
  color: white;
  z-index: 3;
}

.contador-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 300px; /* largura fixa para uniformizar */
  height: 180px; /* altura fixa igual para todos */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  
}

.contador-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);

}

.contador-item i {
  font-size: 2.5rem; /* tamanho fixo para todos os ícones */
  margin-bottom: 0.5rem;
  color: #4ade80;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contador-item:hover i {
  color: #4ade80;
  transform: scale(1.2);
}

.contador-numero {
  font-size: 1.8rem; /* padroniza tamanho do número */
  font-weight: bold;
}

.contador-legenda {
  font-size: 1rem;
  margin-top: 0.25rem;
  text-align: center;
  line-height: 1.2;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ==========================
   QUEM SOMOS (ajustado)
========================== */
#quem-somos {
  background: linear-gradient(to bottom, #ffffff 0%, #f2f4f8 100%);
  padding: 2rem 0;
}

.titulo-centralizado {
  text-align: center;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0d1b2a;
}

.quem-somos-conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.sobre-texto {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.p-quem {
  text-align: justify;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #1b263b;
}

.quem-p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sobre-imagem {
  flex: 1;
  text-align: right;
}

.sobre-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.botao-quem-wrapper {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.botao-quem {
  background-color: #415a77;
  color: white;
  padding: 0.75rem 1.8rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.botao-quem:hover {
  background-color: #1b263b;
}

@media (max-width: 768px) {
  .quem-somos-conteudo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobre-texto,
  .sobre-imagem {
    text-align: center;
  }
}

/* ==========================
   DIFERENCIAIS
========================== */
.diferenciais {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: #1b263b;
  font-weight: 600;
  max-width: 800px;
  margin: 30px auto 2rem;
}

.diferenciais div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.diferenciais i {
  color: #415a77;
  font-size: 1.2rem;
}

/* ==========================
   SERVIÇOS
========================== */
section.servicos {
  position: relative;
  /* Caminho correto para quem está em assets/css/ */
  background-image: url("../banner/solucoes.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-attachment: fixed;
}



.servicos .overlay-servicos {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.6);
  z-index: 1;
  top: 0;
  left: 0;
}

.content-servicos {
    text-align: center;
}

.content-servicos {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  color: white;
  
}

.content-servicos h2 {
  margin-bottom: 2rem; /* ajuste esse valor conforme necessário */
}


.fade-in-up {
  animation: fadeSlideUp 1.2s ease forwards;
}


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

.card {
  background: rgba(255, 255, 255, 0.15); /* fundo semi-transparente */
  backdrop-filter: blur(10px); /* efeito vidro */
  -webkit-backdrop-filter: blur(10px); /* compatibilidade Safari */
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2); /* borda leve */
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.card p {
  margin-bottom: 1rem;
  color: #e0e1dd;
  text-align: justify;
}
.icon-card {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4ade80;
  animation: pulse 1.5s infinite;
}

.botao-servicos {
  margin-top: 2rem;
  display: inline-block;
  background-color: #1b263b;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.botao-servicos:hover {
  background-color: #0d1b2a;
}


@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   CARROSSEL
========================== */

.logos-section {
  padding: 4rem 0;
  background-color: #f2f4f8;
  overflow: hidden;
}

.logos-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.logos-track {
  display: flex;
  animation: scrollLogos 60s linear infinite;
  width: calc(250px * 60); /* 30 logos duplicados */
}

.logo-item {
  width: 250px;
  margin: 0 1rem;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-item:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Fade nas bordas */
.logos-container::before,
.logos-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-container::before {
  left: 0;
  background: linear-gradient(to right, #f2f4f8, transparent);
}

.logos-container::after {
  right: 0;
  background: linear-gradient(to left, #f2f4f8, transparent);
}

/* ==========================
   FAIXA DE IMPACTO 
========================== */
.faixa-separadora {
  background-color: #0d1b2a;
  color: white;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

/* ==========================
   DEPOIMENTOS
========================== */
.depoimentos {
  padding: 4rem 0;
  background-color: #f2f4f8;
  position: relative;
  text-align: center;
}

.titulo-centralizado {
  text-align: center;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0d1b2a;
}

.depoimentos-wrapper {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(65, 90, 119, 0.6);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.seta:hover {
  color: rgba(65, 90, 119, 1);
  transform: translateY(-50%) scale(1.1);
}

.seta-esquerda {
  left: -40px;
}

.seta-direita {
  right: -40px;
}

.depoimentos-container {
  overflow: hidden; /* IMPORTANTE! Sem scroll */
  width: 100%;
}

.depoimentos-track {
  display: flex;
  transition: transform 0.5s ease;
  padding-right: 120px; 
}

.depoimento {
  flex: 0 0 289px; /* largura fixa */
  margin: 0 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.foto-depoimento {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.depoimento h4 {
  margin: 0.5rem 0 0;
  font-weight: bold;
  color: #1b263b;
  font-size: 1.1rem;
}

.depoimento h5 {
  margin: 0.2rem 0 1rem;
  font-weight: normal;
  color: #415a77;
  font-size: 0.9rem;
}

.depoimento p {
  font-style: italic;
  color: #1b263b;
  font-size: 0.95rem;
  line-height: 1.4;
}



/* ==========================
   FOOTER
========================== */
.footer {
  background: linear-gradient(to bottom, #0d1b2a, #253553, #0d1b2a);
  color: white;
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  max-width: 180px; /* ou ajuste conforme o tamanho ideal */
  height: auto;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #4ade80;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer-col ul li i {
  margin-right: 0.5rem;
}

.footer-col a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #4ade80;
}

.social-icons a {
  color: white;
  margin-right: 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #4ade80;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1rem;
}

/* ==========================
   whatsfixo
========================== */
.whatsapp-fixo {
  position: fixed;
  bottom: 20px; /* Distância do rodapé */
  right: 20px; /* Distância da lateral */
  z-index: 100; /* Mantém sempre acima dos outros elementos */
  transition: transform 0.3s ease-in-out;
}

.whatsapp-fixo img {
  width: 60px; /* Tamanho do ícone */
  height: auto;
  border-radius: 50%; /* Deixa arredondado */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-fixo:hover {
  transform: scale(1.1); /* Efeito de crescimento ao passar o mouse */
}

/* ==========================
   ANIMAÇÕES
========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   MODAL LOGIN
========================== */

/* Modal escondido inicialmente */
.modal-login {
  display: none; 
  position: fixed;
  z-index: 999;
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Conteúdo do modal */
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Botão de fechar */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Estilo do formulário */
.modal-content input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.modal-content button {
  width: 100%;
  padding: 0.7rem;
  background: #415a77;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.modal-content button:hover {
  background: #1b263b;
}
.recuperar-senha {
  text-align: center;
  margin-top: 1rem;
}

.recuperar-senha a {
  color: #415a77;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.recuperar-senha a:hover {
  color: #1b263b;
  text-decoration: underline;
}

/* ==========================
   BLOG
========================== */

.inicio-blog {
  position: relative;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.blog-container {
  max-width: 1200px;
  margin: 80px auto 60px;
  padding: 20px;
}

.blog-container h1 {
  text-align: center;
  color: #1b263b;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

#posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.post {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.post:hover {
  transform: translateY(-5px);
}

.post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post .content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post .content h2 {
  font-size: 1.2rem;
  color: #1b263b;
  margin: 0 0 10px;
}

.post .content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* MODAL */
.modal-post {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content h2 {
  color: #1b263b;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.modal-content img,
.modal-content iframe {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.modal-content iframe {
  height: 360px;
  border: none;
  display: block;
}

.modal-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  white-space: pre-wrap;
}

.fechar {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  z-index: 100;
}

.fechar:hover {
  color: #000;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .blog-container h1 {
    font-size: 2rem;
  }

  .modal-content {
    padding: 20px;
  }

  .modal-content iframe {
    height: 200px;
  }
}
/* ======= NAV MOBILE (Hambúrguer) ======= */

/* Acessibilidade para texto só-audio */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Botão: escondido no desktop */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.hamburger i.fa-xmark { display: none; }

/* Garante referência para o menu absoluto no mobile */
.nav-container { position: relative; }

/* Estado padrão do menu (desktop) já é horizontal pelo seu CSS atual */
/* Mobile: converte para dropdown colapsado */
@media (max-width: 768px) {
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }

  /* Organiza o nav para comportar o botão + dropdown */
  .menu-effect {
    display: flex; /* já é flex, mas garantimos */
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  /* Dropdown fechado por padrão */
  .menu-effect ul {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #0d1b2a; /* mesma cor do header */
    display: grid;
    gap: 0.75rem;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1001;
  }

  /* Remove empurrão do último item no mobile */
  .menu-effect ul li { margin-left: 0 !important; }

  .menu-effect ul .link {
    display: block;
    padding: 0.75rem 0;
  }

  /* Quando aberto */
  .menu-effect.open ul {
    max-height: 60vh; /* espaço suficiente; ajuste se quiser */
  }

  /* Alterna ícones (☰ ↔ ✕) */
  .menu-effect.open .hamburger i.fa-bars { display: none; }
  .menu-effect.open .hamburger i.fa-xmark { display: inline-block; }
}

/* ==== Mobile overrides: hide counters and improve banner text ==== */
@media (max-width: 768px) {
  /* Hide counters entirely on mobile */
  .contadores {
    display: none !important;
  }

  /* Let banner grow with content and add safe padding for fixed header */
  .banner {
    min-height: 100vh;
    height: auto;
    padding-top: 96px;
    padding-bottom: 20px;
  }

  /* One column layout for banner content and remove negative offset */
  .banner-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 0;
    padding: 1rem;
  }

  /* Center logo in its column without changing structure */
  .banner-left {
    display: flex;
    justify-content: center;
  }
  .logo-banner {
    display: block;
    width: clamp(160px, 40vw, 220px);
    height: auto;
    margin: 0 auto;
  }

  .banner-right { text-align: left; }

  .linha-topo {
    font-size: 1rem;
    margin-bottom: .5rem;
    line-height: 1.35;
  }
  .linha-principal {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: .5rem;
  }
  .linha-desc {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .lista-beneficios { margin: 1rem 0 1.25rem; }
  .lista-beneficios li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    line-height: 1.35;
    margin-bottom: .5rem;
  }

  .botao-quem-container { margin-top: .25rem; }
}
