/* 🔹 Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 500;
}


body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000;
  line-height: 1.5;
}

p {
  font-weight: 300;
}

/* 🔹 Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: auto;
}

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

.logo img {
  height: 32px;
}

.brand-name {
  font-size: 1.25rem;
  color: #8a74f9;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #8a74f9;
}

.nav-links a.active {
  color: #8a74f9;
  font-weight: 600;
}

/* Ícone hambúrguer (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 26px;
  height: 22px;
  gap: 5px;
}

.hamburger span {
  background: #8a74f9;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn {
  background-color: #8a74f9;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #7a64e0;
}

/* Sessao1 */

.hero-wrapper {
  padding: 0;
  background-color: #ffffff;
}

.hero {
  background-color: #f9f6ff;
  border-radius: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.text-section {
  flex: 1;
  min-width: 300px;
}

.text-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.text-section .highlight {
  color: #8a74f9;
  font-weight: 600;
}

.text-section p {
  color: #333;
  max-width: 500px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  background-color: #8a74f9;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.primary-btn:hover {
  background-color: #7a64e0;
}

.primary-btn .arrow {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

.store-links {
  margin-top: 2rem;
}

.store-links p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.store-buttons {
  display: flex;
  gap: 1rem;
}

.store-buttons img {
  height: 40px;
  transition: transform 0.2s ease;
}

.store-buttons a:hover img {
  transform: scale(1.05);
}

/* 🔹 Image Section */
.image-section {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-bg {
  background-color: #f2eeff;
  border-radius: 2rem;
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 3 / 2;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.main-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  z-index: 1;
  position: absolute;
}

/* Sessao2 */

/* 🔹 Seção: Comparação Antes / Depois */
.comparison-section {
  padding: 4rem 4em;
  background-color: #ffffff;
  text-align: center;
}

.comparison-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Título */
.comparison-section h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 700;
}

.highlighted-purple {
  color: #8a74f9;
}

/* Descrição */
.comparison-description {
  font-size: 0.95rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

/* Cabeçalhos das colunas */
.comparison-columns-header {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1rem;
}

.header-col {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.before-title {
  color: #ff7d7d;
  
}

.after-title {
  color: #8a74f9;
}

.brand-title {
  color: #000;
}

/* 🔸 Tabela de comparação */
.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  gap: 0;
  
}

/* Itens da comparação */
.comparison-row .item {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  border-radius: 0;
  white-space: nowrap;
  overflow: hidden;
  background-color: #f4f3fe;
  
}

/* Lado esquerdo (Antes) */
.comparison-row .before {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #f4f3fe;
  justify-content: flex-end;
  /* agrupa texto e ícone à direita */
  gap: 0.75rem;
  /* espaço entre texto e ícone */
  padding-right: 1.5rem;
  /* espaçamento interno direito */
}

/* Lado direito (Depois) */
.comparison-row .after {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  background-color: #e8e3fb;
  justify-content: flex-start;
  /* <- agora o ícone e o texto ficam à esquerda */
  gap: 0.75rem;
  /* controla o espaço entre ícone e texto */
  padding-left: 1.5rem;
  /* controla o recuo interno à esquerda */
  
}

/* Ícones circulares */
.comparison-row .icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Ícone do lado 'Antes' (direita do texto) */
.comparison-row .before .icon {
  background-color: #ffe5e5;
  color: #d60000;
  margin-left: 0;
  /* <- remove separação forçada */
}

/* Ícone do lado 'Depois' (esquerda do texto) */
.comparison-row .after .icon {
  background-color: #d9fbe3;
  color: #0d9b45;
  margin-right: 0;
  /* <- remove o espaço forçado */
}

/* Sessao3 */

/* Seção principal */
.platform-section {
  background-color: #f9f6ff;
  border-radius: 2rem;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  display: flex;
  justify-content: center;
}

/* Limitador central */
.platform-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
}

/* Fantasminha no topo, centralizado */
.platform-icon {
  position: absolute;
  top: -120px;
  transform: translateX(-50%);
  width: 80px;
  z-index: 2;
}

/* Layout principal */
.platform-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Texto */
.platform-text {
  flex: 1;
  min-width: 300px;
  max-width: 560px;
}

.platform-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.platform-text .highlight {
  color: #8a74f9;
}

.platform-text p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* Cards: lado a lado */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  display: flex;
  align-items: flex-start;
  /* ícone + texto no topo */
  background: #fff;
  border: 1.5px solid #8a74f9;
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  gap: 0.75rem;
  /* espaço entre aspas e texto */
  transition: box-shadow .2s ease, transform .2s ease;
  font-weight: 300;
  font-size: 1rem;
}

.quote-icon {
  color: #8a74f9;
  font-size: 1.2rem;
}


/* Botão */
.platform-button {
  display: inline-flex;
  align-items: center;
  background-color: #8a74f9;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.platform-button:hover {
  background-color: #7a64e0;
}

.platform-button .arrow {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

/* Imagem dos celulares - maior agora */
.platform-image {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
}

.platform-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

/* Sessao4 */

/* Seção Assistentes */
.assistants-section {
  padding: 5rem 1.5rem;
  background-color: #ffffff;
}

.assistants-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Título */
.assistants-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-align: center;
}

.assistants-section .highlight {
  color: #8a74f9;
}

/* Parágrafo central */
.assistants-description {
  font-size: 0.95rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

/* Layout em colunas */
.assistants-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card individual */
.assistant-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  padding-top: 4rem;
  /* compensação para mascote flutuante */
}

/* Retângulo de cor (com mascote dentro) */
.assistant-image {
  width: 100%;
  height: 140px;
  border-radius: 1rem;
  position: relative;
  overflow: visible;
  margin-bottom: 1rem;
}

/* Wrapper da imagem do mascote */
.assistant-image-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Imagem do mascote */
.assistant-image img {
  height: 160px;
  object-fit: contain;
  display: block;
}

/* Título e subtítulo */
.assistant-card h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.assistant-card .highlight-name {
  color: #8a74f9;
  display: inline-block;
}

/* Texto descritivo */
.assistant-card p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

/* Cores das caixas */
.bg-peach {
  background-color: #ffe4cf;
}

.bg-yellow {
  background-color: #fff0b3;
}

.bg-blue {
  background-color: #dcecff;
}

/* Sessao5 */

/* Seção do quote final */
.section-quote {
  padding: 2rem 1rem;
  background-color: #ffffff;
  text-align: center;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  width: 80px;
  margin: 0 auto 1.5rem auto;
  display: block;
}

.quote-text {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #111;
}

.quote-highlight {
  font-weight: 700;
  color: #8a74f9;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Seção 6 */

.founder-section {
  padding: 2rem 2rem;
  background-color: #fff;
}

.founder-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.founder-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.founder-text blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ddd;
  padding-left: 1rem;
}

.founder-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.founder-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #000;
}

.founder-info .title {
  font-size: 1rem;
  color: #000;
  margin-bottom: 1rem;
}

.founder-socials {
  display: flex;
  gap: 1rem;
}

.founder-socials a img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.founder-socials a:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* Vídeo da fundadora */
.founder-video {
  flex: 0 0 0 0;
  max-width: 500px;
  border-radius: 5px;
  overflow: hidden;
}

/* Seção 7 */

.press-section {
  background-color: #f8f9fa;
  padding: 5rem 2rem;
  border-radius: 2rem;
  margin: 4rem auto;
}

.press-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.press-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.press-header .highlight {
  color: #8a7ff0;
  font-weight: 700;
}

.press-header p {
  color: #555;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* Cards de imprensa */
.press-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.press-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  width: 250px;
  text-align: center;
  transition: transform 0.2s ease;
}

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

.press-card img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.press-info a {
  font-weight: 500;
  color: #8a7ff0;
  text-decoration: none;
}

.press-info a:hover {
  text-decoration: underline;
}

.press-info p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Seção 8 */

/* Seção do Blog */
.blog-section {
  padding: 1rem 0rem 6rem 0rem;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.blog-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-header .highlight {
  color: #8a7ff0;
  font-weight: 700;
  display: block;
}

.blog-header p {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
  line-height: 1.6;
}

/* Grid de Posts */
.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Bloco de Post */
.blog-post {
  background: transparent;
  width: 250px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

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

.blog-post img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.blog-post .category {
  color: #8a7ff0;
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-post .post-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.3rem 0;
}

.blog-post .post-description {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Sessão 9 */

.cta-section {
  background-color: #f6f6ff;
  border-radius: 24px;
  padding: 4rem 2rem 0rem;
  /* menos padding embaixo */
  position: relative;
  overflow: hidden;
  margin: 4rem 1rem;
  height: 620px;
  /* <- define altura fixa */
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  /* necessário */
}

.cta-ghost {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  z-index: 2;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1 1 500px;
  padding-right: 2rem;
  z-index: 1;
}

.cta-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-text .highlight {
  color: #8a7ff0;
  font-weight: 700;
}

.cta-text p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #8a7ff0;
  color: #fff;
  padding: 0.9rem 2rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.cta-button span {
  margin-left: 0.5rem;
  transition: margin-left 0.2s ease;
}

.cta-button:hover span {
  margin-left: 0.7rem;
}

.cta-image {
  flex: 1 1 400px;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* força o alinhamento inferior */
  overflow: hidden;
}

.cta-image img {
  max-height: 110%;
  height: auto;
  object-fit: cover;
  transform: rotate(-5deg) translateY(15%);
  pointer-events: none;
  user-select: none;
}

/* Sessão Rodape */

.new-footer {
  background-color: #f8f8f8;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.new-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.new-footer-logo img {
  height: 40px;
  /* Adjust as needed */
}

.new-footer-social a img {
  height: 24px;
  /* Size for social icons */
  margin-left: 15px;
}

.new-footer-main {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.new-footer-description {
  flex: 2;
  /* Takes more space */
  margin-right: 40px;
  max-width: 50%;
}

.new-footer-description p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 100;
}

.new-footer-stores a img {
  height: 40px;
  /* Size for app store badges */
  margin-right: 10px;
}

.new-footer-links {
  flex: 1;
  /* Takes less space */
  display: flex;
  justify-content: space-around;
  max-width: 40%;
}

.new-footer-links h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #6a0dad;
  /* Purple color */
}

.new-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer-links ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  line-height: 2;
  display: block;
}

.new-footer-links ul li a:hover {
  color: #6a0dad;
}

footer .container {
  margin: 0 auto;
  padding: 0 20px;
  margin: 10px 0;
  line-height: 1.5;
  text-align: center;
  font-size: 14px;
}

.info-footer-section {
  background-color: #f8f8f8;
  padding: 0px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

.info-footer-content p {
  margin: 10px;
}

.info-footer-content a {
  color: #777;
  text-decoration: underline;
}

.info-footer-content a:hover {
  color: #555;
}

.info-footer-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px auto;
  width: 80%;
}

.info-footer-copyright p {
  margin: 0px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .new-footer-top {
    flex-direction: column;
    align-items: center;
  }

  .new-footer-social {
    margin-top: 30px;
  }

  .new-footer-main {
    flex-direction: column;
    align-items: center;
  }

  .new-footer-description,
  .new-footer-links {
    max-width: 100%;
    margin-right: 0;
    text-align: center;
  }

  .new-footer-links {
    flex-direction: column;
    margin-top: 30px;
  }

  .new-footer-support,
  .new-footer-legal {
    margin-bottom: 20px;
  }



}



/* Responsividade */

/* ----------------------------------------- */

/* ----------------------------------------- */
@media (max-width: 750px) {

  /* Navbar: Transforma em menu hambúrguer (visual) */
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  /* Mostra o menu ao clicar */
  .nav-links.active {
    transform: translateY(0);
  }

  /* Mostra o ícone */
  .hamburger {
    display: flex;
  }

  /* Animação do ícone */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .cta-button {
    display: none;
    /* Também esconde o botão de CTA no navbar */
  }

  /* Hero Section: Ajusta fontes e espaçamentos - CORRIGIDO */
  .hero {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

  .text-section h1 {
    font-size: 1.8rem;
    /* Reduz o tamanho da fonte do título */
    word-wrap: break-word;
    /* Garante a quebra de palavras longas */
    hyphens: auto;
    /* (Opcional) Ajuda na quebra de palavras */
  }

  /* Remove as quebras de linha forçadas do H1 em telas pequenas */
  .text-section h1 br {
    display: none;
  }


  /* Comparison Section: Simplifica a tabela */
  .comparison-section {
    padding: 3rem 1rem;
  }

  .comparison-columns-header {
    display: none;
    /* Esconde os títulos "Antes" e "Depois" */
  }

  .comparison-row {
    display: contents;
    flex-direction: column;
    /* Empilha os itens */
    gap: 0.5rem;
  }

  .comparison-row .item {
    border-radius: 999px;
    /* Deixa ambos os itens totalmente arredondados */
    justify-content: center;
    padding: 0.8rem 1rem;
  }

  .comparison-row .before {
    order: 1;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .comparison-row .before .icon {
    order: -1;
    /* Força o ícone a ser o primeiro item, vindo antes do texto */
  }

  .comparison-row .after {
    order: 2;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .comparison-table {
    display: flex;
    flex-direction: column;
    /* Garante que a tabela seja uma coluna */
    gap: 0.5rem;
  }

  /* Platform Section: Ajusta o ícone e o layout */
  .platform-icon {
    top: -80px;
    /* Sobe um pouco o fantasminha */
    width: 60px;
  }

  .platform-content {
    flex-direction: column;
  }

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

  .platform-text p {
    max-width: 100%;
  }

  .platform-image {
    display: none;
    /* Esconde a imagem dos celulares para focar no texto */
  }

  .platform-button {
    margin: 0 auto;
    display: inline-flex;
  }

  /* Press Section: Cards em coluna única */
  .press-cards {
    flex-direction: column;
    align-items: center;
  }

  .press-card {
    width: 90%;
    max-width: 300px;
  }

  /* Blog Section: Posts em coluna única */
  .blog-posts {
    flex-direction: column;
    align-items: center;
  }

  .blog-post {
    width: 90%;
    max-width: 300px;
  }

  /* Footer: Centraliza tudo */
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Platform Section: Ajustes para Mobile */
  .platform-section {
    padding-top: 4rem;
    /* Garante espaço para o fantasminha */
    padding-bottom: 3rem;
  }

  .platform-icon {
    top: -40px;
    /* Sobe um pouco mais o ícone */
    width: 60px;
  }

  .platform-content {
    flex-direction: column;
    /* Empilha o bloco de texto e o de imagem */
    gap: 3rem;
    /* Aumenta o espaço entre o texto e a imagem dos celulares */
  }

  .platform-text {
    text-align: center;
    /* Centraliza todo o texto */
    order: 1;
    /* Garante que o texto venha primeiro */
  }

  .platform-text p {
    max-width: 100%;
    /* Permite que o parágrafo ocupe a largura total */
    margin-left: auto;
    margin-right: auto;
  }

  /* Cards: Empilha verticalmente */
  .platform-cards {
    grid-template-columns: 1fr;
    /* Muda o grid para uma única coluna */
    gap: 1rem;
    /* Espaço entre os cards empilhados */
    margin-bottom: 2rem;
  }

  .card {
    text-align: left;
    /* Mantém o texto dos cards alinhado à esquerda para legibilidade */
  }

  .platform-button {
    margin: 0 auto;
    /* Centraliza o botão */
    display: inline-flex;
  }

  /* Imagem dos celulares */
  .platform-image {
    order: 2;
    /* Garante que a imagem venha depois do texto */
    min-width: 100%;
    /* Ocupa a largura total */
  }

  .platform-image img {
    max-width: 100%;
    /* Garante que a imagem não ultrapasse a tela */
    height: auto;
  }

  /* Dentro de @media (max-width: 992px) */

  /* Assistants Section: Empilha os cards */
  .assistants-cards {
    grid-template-columns: 1fr;
    /* Muda o grid para uma única coluna */
    gap: 5rem;
    /* Aumenta o espaço vertical para os mascotes não sobreporem o texto abaixo */
    max-width: 400px;
    /* Limita a largura máxima dos cards no mobile */
    margin: 0 auto;
    /* Centraliza o container dos cards */
  }

  .assistant-card {
    align-items: center;
    /* Centraliza o conteúdo do card */
    text-align: center;
    /* Centraliza o texto */
  }

  /* Dentro de @media (max-width: 768px) */

  /* Blog Section: Ajusta a largura do parágrafo */
  .blog-header p {
    padding: 0 1rem;
    /* Adiciona espaçamento lateral de 16px em cada lado */
  }


  /* CTA Section: REFAZENDO O LAYOUT PARA ANCORAR A IMAGEM */

  .cta-section {
    position: relative;
    /* Essencial para o posicionamento absoluto da imagem */
    height: auto;
    min-height: 600px;
    /* Altura mínima para garantir espaço para o texto e a imagem */
    padding: 0 1.5rem;
    /* Remove padding vertical, a altura mínima controla o espaço */
    margin: 2rem 1rem;
    display: flex;
    /* Usamos flex para centralizar o texto verticalmente */
    align-items: flex-start;
    /* Alinha o texto no topo */
    overflow: hidden;
    /* Garante que nada vaze */
  }

  .cta-ghost {
    top: 2rem;
    /* Posição ajustada do fantasma */
  }

  .cta-content {
    /* Este container não precisa mais de flex-direction, pois o .cta-section já controla o layout */
    width: 100%;
  }

  .cta-text {
    padding-top: 5rem;
    /* Espaço para o fantasma e o título */
    padding-bottom: 250px;
    /* IMPORTANTE: Espaço na base para a imagem não cobrir o texto */
    text-align: center;
    padding-right: 0;
    padding-top: 8rem;
    /* <<< ADICIONE ESTA LINHA */
  }

  .cta-image {
    /* O container da imagem agora ocupa a seção inteira para posicionar a imagem */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Impede que a imagem bloqueie cliques no texto */
  }

  .cta-image img {
    /* A MÁGICA ACONTECE AQUI */
    position: absolute;
    bottom: -20px;
    /* Move a imagem um pouco para baixo para um efeito de "vazamento" sutil */
    left: 50%;
    transform: translateX(-50%);
    /* Centraliza a imagem horizontalmente */
    width: 100%;
    max-width: 280px;
    /* Controla o tamanho da imagem */
    height: auto;
    object-fit: contain;
  }

  /* Dentro de @media (max-width: 992px) */

  /* Hero Section: Empilha e REORDENA o texto e a imagem */
  .hero-content {
    flex-direction: column;
    /* Empilha os elementos */
    text-align: center;
    gap: 3rem;
    /* Adiciona um bom espaço entre o texto e a imagem */
  }

  .text-section {
    /* Define a ordem do bloco de texto como 1 (primeiro) */
    order: 1;
    align-items: center;
    text-align: center;
  }

  /* ADICIONE ESTE NOVO BLOCO DE CÓDIGO */
  .image-section {
    /* Define a ordem do bloco da imagem como 2 (segundo) */
    order: 2;
    width: 100%;
    /* Garante que a seção da imagem ocupe a largura */
  }

  .main-image {
    position: relative;
    /* Remove o posicionamento absoluto que não é mais necessário */
    max-width: 80%;
    /* Faz a imagem ser um pouco menor que a largura total para ter respiro */
    margin: 0 auto;
    /* Centraliza a imagem */
  }

  .image-bg {
    display: none;
    /* Esconde o fundo roxo da imagem no mobile para um visual mais limpo */
  }


}
