/* =====================
   RESET BÁSICO
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #0f0f0f; /* Fundo do background */
  font-family: "Poppins", sans-serif;
  color: #111010;
}

/* =====================
   HERO SECTION (TOPO)
   (SEÇÃO 1)
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0c0c0c;
}

.hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(200px, 40vw, 600px);
  border: 2px;
  background: url("../assets/meia_lua.png") no-repeat center bottom;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

/* Conteúdo acima do background */
.hero-content {
  position: relative;
  z-index: 2;
}

.navbar {
  padding: 1rem 2rem;
}
.logo {
  height: 55px;
  width: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  margin-bottom: 490px;
}

.tagline {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  animation: fadeInUp 1.8s ease forwards;
}

.hero-title {
  font-size: 2.0rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  opacity: 0; 
  transform: translateY(20px); 
  animation: fadeInUp 1.8s ease forwards;
}

/* Keyframes da animação */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title .noisy-name {
  font-family: "Proxima Nova", sans-serif;
  color: #A5B3FF;
  font-size: 4rem;
}
.hero-title .gradient {
  font-family: "Proxima Nova", sans-serif;
  background: linear-gradient(180deg, #FFFFFF 56%, #0D0D0D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-cta {
  font-family: "Poppins", sans-serif;
  background: #5F72DA;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
}
.hero-cta:hover {
  background: #2C46AD;
}

/* =====================
   SEÇÃO 2 (CARDS ANTIGOS)
   MOBILE‑FIRST (BASE)
===================== */

/* Keyframes para o efeito de saída (slide out) */
@keyframes slideOut {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(-100%); opacity: 0; }
}

/* Keyframes para o efeito de entrada (slide in) */
@keyframes slideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Classes de animação (se estiver usando) */
.animate-slide-out { animation: slideOut 0.4s ease forwards; }
.animate-slide-in  { animation: slideIn  0.4s ease forwards; }

.second-section {
  position: relative;
  width: 100%;
  background: #0D0D0D;
  padding: 4rem 2rem;
  overflow: hidden;
  font-size: 1rem; /* ajuste para telas pequenas */
}

.arrow-container {
  position: absolute;
  left: 20px;
  bottom: -20px;
  width: 150px;
  height: 150px;
  background: url("../assets/Y.svg") no-repeat center bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.cards-container {
  display: flex;
  flex-direction: column;      /* empilha no mobile */
  align-items: center;         /* centraliza os cards */
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
}

.card {
  background: #16191f;
  border-radius: 10px;
  border: 1px solid #2D3142;
  padding: 0.9rem;

  flex: 1 1 auto;
  /* largura dos cards — ajuste fino aqui */
  width: 85% !important;
  /* centraliza cada card no container */
  margin: 0 auto 1.5rem;
  /* altura dos cards — ajuste fino aqui */
  min-height: 290px !important;

  display: flex;
  flex-direction: column;
  justify-content: space-around; /* evita gaps extras */
  line-height: 1.2;
  color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Título de todos os cards */
.card h2 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0rem;
}

/* Força sem quebra SÓ no primeiro card */
.second-section .card.card-left h2 {
  text-align: center;      /* centraliza o texto */
  margin-bottom: 1rem;     /* exemplo: espaçamento abaixo do título */
  /* margin-top: 0.5rem; */ /* se precisar de espaço acima */
}

/* Texto “Sua consultoria merece mais” em azul */
.card .consultoria1 {
  color: #5F72DA;
}
.card .consultoria2 {
  color: #ffffff;
}

/* Card Direito: texto e espaçamentos */
.second-section .card.card-right {
  justify-content: flex-start;
}
.second-section .card.card-right h2 {
  margin-bottom: 2.5rem !important; /* ajuste fino aqui */
  line-height: 1;
}
.second-section .card.card-right p:first-of-type {
  margin-top: 0 !important;
}

/* Parágrafos e listas */
.card p {
  line-height: 1.6;            /* ajuste espaçamento do corpo */
  margin-bottom: 0.2rem;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 0.85rem;
}
.card ul {
  margin: 0;
  padding-left: 1.5rem;
}
/* Só para o 2º card (card-right) */
.second-section .card.card-right ul li {
  margin-bottom: 1rem;         /* aumenta o espaço entre tópicos */
}

/* Highlight no título do card direito */
.card h2 .highlight {
  color: #A5B3FF;
}

/* MédiasQuery */
/* =====================
   MEDIA QUERY PARA DESKTOP
===================== */
@media (min-width: 901px) {

    .second-section .arrow-container {
      left: 80px;
      bottom: -50px;
      width: 300px !important;   /* retorna ao tamanho original */
      height: 300px !important;  /* retorna ao tamanho original */
    }

  .second-section .cards-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;               /* ajuste fino do espaçamento horizontal */
  }

  .second-section .card {
    /* anula o margin:auto do mobile */
    margin: 0 !important;

    /* anula o width:85% do mobile */
    width: auto !important;
    max-width: 360px !important;

    padding: 2rem;
    flex: 1 1 300px;
    min-height: 600px;
    line-height: 1.6;
    justify-content: space-between;
  }

  .second-section .card h2 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
  }
  .second-section .card p {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }
  .second-section .card ul li {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }
}

/* =====================
   SEÇÃO 3 (NOVA ETAPA)
   MOBILE-FIRST (Base)
===================== */
.third-section {
  position: relative;
  width: 100%;
  min-height: 100vh; 
  background: #F2F2F2; 
  color: #000;         
  padding: 3rem 2rem; 
}
.third-section .title-velocidade {
  text-align: center;
  font-family: "Proxima Nova", sans-serif;
  font-size: 2rem;
  color: #253dbf;
  margin-bottom: 3rem;
}
.cards-velocidade {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.card-velocidade {
  background: linear-gradient(145deg, #253DBF 0%, #0D0D0D 65%);
  border-radius: 10px;
  width: 250px;          /* Ajuste se deseja outro valor para mobile */
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.card-velocidade:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.card-velocidade .icon-y {
  width: 40px; 
  height: auto;
  margin-bottom: 1rem;
}
.card-velocidade h3 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.5rem; 
  margin-bottom: 0.5rem;
  color: #fff;
}
.card-velocidade p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem; 
  margin-bottom: 1rem;
  color: #ffffff;
}
.card-velocidade .btn-card {
  display: inline-block;
  background: #5F72DA;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s;
}
.card-velocidade .btn-card:hover {
  background: #2C46AD;
}

/* .tj-row agrupa o texto à ESQUERDA e a imagem (flechas) à DIREITA */
.tj-row {
  display: flex;             /* Layout horizontal */
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}
.tj-duro-left {
  max-width: 600px;          /* Ajuste se quiser limitar a largura do texto */
  text-align: left;
}
.tj-duro-left h2 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 2rem;
  color: #253dbf;
  margin-bottom: 1rem;
}
.tj-duro-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem; /* Ajuste se quiser menor/maior para mobile */
  color: #1b1d23;
  margin-bottom: 2rem; 
}
.tj-plus-text {
  color: #5F72DA;
  font-family: "Bold", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.tj-duro-left .hero-cta {
  font-size: 1rem;
}
.tj-duro-right {
  display: flex;
  justify-content: flex-end;
}
.tj-duro-right img {
  width: 500px; /* Tamanho das flechas */
  height: auto;
  display: block;
}

/* =====================
   MEDIA QUERY PARA TELAS MAIORES (Desktop e Tablets – min-width: 901px)
   ===================== */

   @media (min-width: 901px) {
  .third-section {
    /* Mantém o mesmo padding do mobile-first */
    padding: 3rem 2rem;
  }
  .cards-velocidade {
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
  }
  .card-velocidade {
 /* Em vez de definir "width: 250px;", usamos "max-width: 250px;" para manter a compatibilidade */
    max-width: 250px;
    /* Deixe o padding igual ao mobile-first */
    padding: 2rem;
    /* Remova ou comente se houver "min-height: 600px;" para evitar alongar o card */
    /* min-height: auto; */
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: space-around; /* Mantém o mesmo alinhamento do mobile-first */
    align-items: center;
  }
  .card-velocidade h3 {
    font-family: "Proxima Nova", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem; /* Se precisar de ajuste fino, altere esse valor aqui */
    color: #fff;
  }
  .card-velocidade p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  .card-velocidade .btn-card {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}



/* =====================
   SEÇÃO 4 (ÚLTIMA ETAPA)
===================== */
.fourth-section {
  background: #0D0D0D;
  padding: 4rem 2rem;
  text-align: center;
}
.innovation-title {
  background: linear-gradient(180deg, #FFFFFF 56%, #0D0D0D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 1.5rem;
}
.innovation-leads {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #B5C1FF;
  margin-bottom: 3rem;
}
.form-card {
  position: relative;
  z-index: 1;
  background: #000000;
  max-width: 540px;
  margin: 0 auto;
  border: 2px solid #6C7183;
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 0 75px rgba(255, 255, 255, 0.1);
  overflow: visible;
}
.form-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -40px;
  left: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  border-radius: 20px;
  background: radial-gradient(
    circle,
    rgba(95,114,218,0) 40%,
    rgba(95,114,218,0.4) 70%,
    rgba(95,114,218,0) 100%
  );
  filter: blur(60px);
}
.form-card {
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}
.form-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}
.form-landing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-landing label {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}
.form-landing input,
.form-landing select {
  background: #464749;
  border: 1px solid #5F72DA;
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 1rem;
  color: #fff;
  outline: none;
  font-family: "Inter", sans-serif;
}
::-webkit-input-placeholder { color: #fff; }
:-ms-input-placeholder { color: #fff; }
::placeholder { color: #fff; }
#phone::-webkit-input-placeholder {
  content: "(11) 99999-9999";
}
.form-landing input:focus,
.form-landing select:focus {
  border-color: #fff;
}
.form-landing button.hero-cta {
  margin-top: 1rem;
  align-self: center;
}

/* =========== RODAPÉ =========== */
footer {
  background: #000; 
  color: #fff;
  padding: 1rem;
  position: relative;
  text-align: center;
}
footer img.copyright-img {
  width: 16px;
  height: auto;
}
.footer-rights-center {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-social-right {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
}
.footer-social-right .social-icon {
  width: 18px;
  height: auto;
}

/* =====================
   EFEITOS DE SCROLL PARA AS SEÇÕES
===================== */
.secao {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.2s ease-out;
}
.secao.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   ANIMAÇÃO DA LINHA ABAIXO DO TEXTO "Velocidade"
===================== */
.underline-target {
  position: relative;
  display: inline-block;
}
.underline-target::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #253dbf;
  transition: width 3.5s ease;
}
.secao.active .underline-target::after {
  width: 100%;
}

/*--- whatsapp */
/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  padding: 12px;
}

/* Chat Modal */
.chat-modal {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  z-index: 1000;
}

.chat-modal.hidden {
  display: none;
}

.chat-header {
  background: #075E54;
  color: #fff;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.chat-body {
  padding: 10px;
  max-height: 200px;
  overflow-y: auto;
}

.msg.received {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  max-width: 80%;
}

.plan-select {
  margin-top: 10px;
}

.plan-select label {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.plan-select select {
  width: 100%;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Chat Footer */
.chat-footer {
  padding: 10px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
}

.chat-footer input#userMsg {
  flex: 1;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  margin-right: 8px;
  background: #fff;
}

.chat-footer .send-btn {
  background: #25D366;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-footer .send-btn img {
  width: 20px;
  height: 20px;
}


/* =====================
   ANIMAÇÃO Transição dos blocos
===================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.4s ease-out;
}
.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   MEDIA QUERIES PARA RESPONSIVIDADE
===================== */

/* ===============================
   SEÇÃO 1 (Topo) - Ajustes para telas até 992px, 832px, 768px, 480px
   (NÃO ALTERADO)
=============================== */
@media (max-width: 992px) {
  .hero-content {
    margin-bottom: 250px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-title .noisy-name,
  .hero-title .gradient {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .card {
    min-height: 500px;
  }
  .tj-duro-right img {
    width: 450px;
  }
}

@media (max-width: 832px) {
  .hero-content {
    margin-bottom: 250px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-bottom: 150px;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .hero-title .noisy-name,
  .hero-title .gradient {
    font-size: 2.2rem;
  }
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    max-width: 90%;
    min-height: auto;
    margin-bottom: 2rem;
  }
  .tj-row {
    flex-direction: column;
  }
  .tj-duro-right img {
    width: 100%;
    max-width: 500px;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    margin-bottom: 100px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-title .noisy-name,
  .hero-title .gradient {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .arrow-container img {
    width: 200px;
  }
  .card h2 {
    font-size: 1.6rem;
  }
  .card p {
    font-size: 1rem;
  }
  .tj-duro-bold,
  .tj-duro-regular {
    font-size: 1.5rem;
  }
  .tj-duro-text {
    font-size: 0.9rem;
  }
  .tj-duro-right img {
    width: 100%;
    max-width: 350px;
    margin-top: 1.5rem;
  }
  .innovation-title {
    font-size: 2rem;
  }
  .innovation-leads {
    font-size: 1.2rem;
  }
  .card-velocidade {
    width: 200px;
    margin: 0 auto;
  }
  .form-card {
    width: 90%;
    margin: 0 auto;
  }
  
  /* RODAPÉ no Mobile */
  .footer-social-right {
    position: static;
    transform: none;
    margin-top: 0.5rem;
    justify-content: center;
  }
  .footer-social-right .social-icon {
    width: 18px;
  }

  /* ========= ALTERAÇÕES SOLICITADAS PARA CARTÕES ========= */
  /* Aumentar o espaçamento entre "Chegar Tarde Custa Caro" e o resto da mensagem */
  .card-left h2 {
    margin-bottom: 1.5rem !important;
  }
  /* Diminuir o espaçamento entre o título e o corpo do texto do card "O NoisyTracker Faz o Trabalho" */
  .card-right h2 {
    margin-bottom: 0.5rem !important;
  }
}

/* ===============================
   SEÇÃO 3 (Cards de Velocidade)
   Empilhar em 2 colunas (NOVA VERSÃO INTEGRADA)
=============================== */

/* Para telas até 900px */
@media (max-width: 900px) {
  html {
    font-size: 90%; 
  }
  .cards-velocidade {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
  }
  .card-velocidade {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .card-velocidade h3 {
    font-size: 1.2rem;
  }
  .card-velocidade p {
    font-size: 0.95rem;
  }
  .card-velocidade .btn-card {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  /* Rodapé: menos espaçamento, ícones menores */
  .footer-social-right .social-icon {
    width: 16px; 
  }
  .footer-rights-center p {
    font-size: 0.8rem;
  }
}

/* Para smartphones (até 480px) */
@media (max-width: 480px) {
  html {
    font-size: 85%; 
  }
  .cards-velocidade {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
  }
  .card-velocidade {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    margin-bottom: 1rem;
    padding: 0.8rem;
  }
  .card-velocidade h3 {
    font-size: 1.1rem;
  }
  .card-velocidade p {
    font-size: 0.9rem;
  }
  .card-velocidade .btn-card {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* =====================
   RODAPÉ (Desktop + Telas Grandes) 
===================== */
@media (min-width:900px) {
  .footer-content {
    display: flex;
    justify-content: flex-start; /* antes era space-between */
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
  }

  /* Faz este bloco ocupar todo o espaço restante e centralizar seu conteúdo */
  .footer-rights-center {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  /* Ajusta os textos dos direitos autorais e das redes sociais */
  .footer-social-right p {
    font-size: 1rem; /* Aumente ou diminua conforme o desejado */
  }
  .social-icon {
    width:16px; /* Exemplo: ícones maiores para desktop */
  }
  .footer-rights-center p {
    font-size: 1rem;
  }
  footer img.copyright-img {
    width: 16px;
  }
}

/* =========================
   SEÇÃO 3 AVANÇADA (MOBILE-FIRST)
========================= */
.section3-advanced {
  padding: 1.5rem 1rem;           /* espaçamento geral */
  background: #F9FAFB;
  color: #333;
}
.section3-advanced .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;              /* mobile‐first: ocupa toda largura */
  margin: 0 auto;
  gap: 1.5rem;                   /* espaçamento entre blocos */
}

/* 1. STEPS */
.section3-advanced .steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;              /* quebra em várias linhas se necessário */
  gap: 1rem;
}
.section3-advanced .step {
  flex: 0 0 auto;
  opacity: .5;
  transition: opacity .3s;
}
.section3-advanced .step.active {
  opacity: 1;
}

/* 1.1 círculo + legenda */
.section3-advanced .circle {
  width: 32px; height: 32px;
  background: #5F72DA;
  color: #fff;
  border-radius: 50%;
  line-height: 32px;
  margin: 0 auto .25rem;
  font-size: .9rem;
}
.section3-advanced .step p {
  font-size: .8rem;
  margin: 0;
}

/* indicador de passo */
.section3-advanced .step-indicator {
  font-size: .8rem;
  color: #555;
}

/* === 2. Gráfico horizontal (Section 3) ==================== */
.section3-advanced .chart-wrapper h3{
  font-size:1rem; margin-bottom:.75rem;
}
/* container */
.section3-advanced .h-chart{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap:.8rem;
}
/* barra */
.section3-advanced .h-chart .bar{
  position:relative;
  height:36px;                          /* espessura da barra         */
  width:0;                              /* começa vazia p/ animar     */
  background:#ccc; border-radius:4px;
  transition:width .8s ease;
}
/* cor por “concorrente” */
.section3-advanced .bar.competitorA{background:#bfbfbf;}
.section3-advanced .bar.competitorB{background:#8f8f8f;}
.section3-advanced .bar.noisy      {background:#5F72DA;}
/* legenda à esquerda */
.section3-advanced .bar .label{
  position:absolute; left:-4px; top:50%;
  transform:translate(-100%,-50%);
  font-size:.75rem; font-weight:600; color:#333;
  white-space:nowrap;
}
/* valor no fim da barra */
.section3-advanced .bar .value{
  position:absolute; right:6px; top:50%;
  transform:translateY(-50%);
  font-size:.8rem; font-weight:bold; color:#fff;
}
/* quando .loaded entrar, anima largura */
.section3-advanced .h-chart.loaded .bar{
  width:var(--w);
}

/* ——— HOVER (apenas desktop) ——— */
@media (hover:hover){
  .section3-advanced .bar:hover{
    filter: brightness(1.15);
    transform: translateY(-3px);
  }
}

/* 3. LINHA DO TEMPO DE ACESSO */
.section3-advanced .time-savings {
  width: 100%;
}
.section3-advanced .time-savings h3 {
  font-size: 1rem;
  margin-bottom: .5rem;
}
.section3-advanced .timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: .5rem;
}
.section3-advanced .point {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section3-advanced .point .icon {
  font-size: 1.75rem;
  margin-bottom: .25rem;
}
.section3-advanced .point.before .icon { color: #bbb; }
.section3-advanced .point.after  .icon { color: #5F72DA; }
.section3-advanced .point .label {
  font-size: .7rem;
  margin-bottom: .25rem;
}
.section3-advanced .time {
  font-size: .9rem;
}
.section3-advanced .line {
  width: 2px;
  height: 40px;   /* menor no mobile */
  background: #eee;
}
.section3-advanced .caption {
  font-size: .75rem;
  color: #555;
}

/* 4. CONTADORES */
.section3-advanced .counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.section3-advanced .counter {
  flex: 0 0 auto;
  text-align: center;
}
.section3-advanced .counter .icon {
  font-size: 1.4rem;
}
.section3-advanced .counter .number {
  font-size: 1.4rem;
  color: #5F72DA;
}
.section3-advanced .counter .unit {
  font-size: .85rem;
}
.section3-advanced .counter p {
  font-size: .7rem;
}

/* 6. CTA */
.section3-advanced .btn-primary {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: .75rem 0;
  background: #5F72DA;
  color: #fff;
  border-radius: 4px;
  font-size: .9rem;
  text-align: center;
}
/* === Texto comparativo (Section 3) === */
.section3-advanced .access-time-copy{
  max-width: 480px;                  /* largura confortável p/ leitura  */
  align-self: flex-start;            /* gruda no lado esquerdo do grid  */
  text-align: left;                  /* alinhamento à esquerda          */
  font-family: "Inter", sans-serif;
  color: #1b1d23;
  line-height: 1.45;
}
.section3-advanced .access-time-copy h4{
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: #253dbf;
}
.section3-advanced .access-time-copy strong{
  color: #5F72DA;                    /* destaca números/solução         */
}
@media (min-width:600px){            /* tablet+ : joga p/ coluna esquerda*/
  .section3-advanced .access-time-copy{
    grid-column: 1 / span 1;         /* 1ª coluna do grid de 3 colunas   */
    grid-row: 3 / span 1;            /* fica logo acima da timeline      */
  }
}


/* =========================
   SECTION 3 (TABLET+DESKTOP)
========================= */
@media (min-width: 600px) {
  .section3-advanced .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "steps steps steps"
      "chart chart chart"
      "timeline timeline timeline"
      "counters counters counters"
      "cta cta cta";
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  /* reatribuindo grid-areas */
  .section3-advanced .steps          { grid-area: steps; }
  .section3-advanced .chart-wrapper  { grid-area: chart; }
  .section3-advanced .time-savings   { grid-area: timeline; }
  .section3-advanced .counters       { grid-area: counters; }
  .section3-advanced .btn-primary    { grid-area: cta; width: auto; }
  /* aumenta alturas e espaçamentos */
  .section3-advanced .chart { height: 180px; gap: 1.5rem; }
  .section3-advanced .line  { height: 60px; }
}

/* Badge “Mais contratado” */
.badge-popular {
  position: absolute;
  top: -10px;              /* ajusta distância do topo */
  right: -10px;            /* ajusta distância da borda direita */
  background: #ffce00;     /* amarelo para chamar atenção */
  color: #000;
  font-size: 0.70rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Garante que o card possua posição relativa
   para o badge ficar ancorado corretamente */
.card-velocidade {
  position: relative;
}

/* Extra (opcional): destaque sutil no cartão “Prime” */
.card-velocidade.prime {
  box-shadow: 0 0 12px rgba(255, 206, 0, 0.4);
  transform: scale(1.03);
}