  
  
  /* =========================================
   GPTcnpj - Estilos principais
   Estruturado por secoes para facilitar manutencao
   ========================================= */


  /* ========== 1. Variaveis ========== */
  
  html {
    scroll-behavior: smooth;
  }


  :root {

    --primary: #0056b3;
    --secondary: #007bff;
    --accent: #ff5722;
   --background: #fff; 
    --font-base: 'Poppins', sans-serif;

  }

 /* ========== 2. RESET ========== */

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

 /* ========== 3. BASE ========== */

body {

  font-family: var(--font-base);
  background: var(--background);
  color: var(--text);
  overflow-x:hidden;
  scroll-behavior: smooth;
}

a {

  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {

  font-family: var(--font-base);
}

section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}

/* ========= 4. NAVBAR ========= */

    .navbar { 
      background: linear-gradient(180deg, #0a1f44 0%, #0f3a63 100%);
      padding: 12px 20px;
    }

    .navbar-brand img { 
     height: 40px;
    }

    .navbar-nav {
      gap: 10px; 
    }
    .navbar-nav .nav-link {
      color: #fff; 
      font-weight: 600; 
      padding: .25rem .5rem;
      transition: color 0.3s ease;
    }


    .navbar-nav .nav-link:hover, 
    .navbar-nav .nav-link:focus {
      background: #fff; 
      color: var(--accent); 
      border-radius: 5px;
    }


    .navbar .dropdown-menu {
      background: #fff; 
      border: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      border-radius: 5px;
    }


    .navbar .dropdown-item { 
      color: var(--primary); 
      font-weight: 500; 
    }

    .navbar .dropdown-item:hover { 
      background: #f1f1f1; 
    }

    #cnpj-input {
      border-radius: 5px;
    }
    .btn-cta {
    background: #f95f2c;
    color: #fff;
    padding: 7px 20px;
    font-weight: 600;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    }
    .btn-cta:hover {
      transform: scale(1.08);
      background: var(--accent); 
      filter: brightness(1.1);   
    }





/* ===== HERO TECH MODERNO ANIMADO ===== */
#hero.hero-minimal {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 25% 50%, #0052cc 0%, #001a4d 80%);
  overflow: hidden;
  color: #fff;
}

/* Luzes animadas (brilhos) */
#hero.hero-minimal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x1, 20%) var(--y1, 40%), rgba(0, 255, 255, 0.15), transparent 70%),
              radial-gradient(circle at var(--x2, 80%) var(--y2, 70%), rgba(255, 0, 255, 0.15), transparent 70%);
  animation: moveGlow 10s ease-in-out infinite alternate;
  z-index: 0;
}

/* Linhas digitais sutis */
#hero.hero-minimal::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.08;
  animation: linesMove 20s linear infinite;
  z-index: 0;
}

/* Conteúdo */
#hero.hero-minimal .container {
  position: relative;
  z-index: 2;
}

/* Textos */
#hero.hero-minimal h1 {
  font-weight: 800;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#hero.hero-minimal p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #d8e4ff;
}

/* Botão */
.btn-orange {
  background: linear-gradient(90deg, #ff6600, #ff8533);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 102, 0, 0.5);
}

/* ===== ANIMAÇÕES ===== */
@keyframes moveGlow {
  0% {
    --x1: 20%;
    --y1: 40%;
    --x2: 80%;
    --y2: 70%;
  }
  50% {
    --x1: 25%;
    --y1: 45%;
    --x2: 75%;
    --y2: 60%;
  }
  100% {
    --x1: 30%;
    --y1: 50%;
    --x2: 70%;
    --y2: 65%;
  }
}

@keyframes linesMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  #hero.hero-minimal {
    background: radial-gradient(circle at 50% 40%, #0052cc 0%, #001a4d 80%);
  }
}


/* CONTEÚDO DO HERO */
#hero.hero-minimal .container {
  position: relative;
  z-index: 1;
}

/* TEXTO À ESQUERDA */
#hero.hero-minimal h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

#hero.hero-minimal p {
  font-size: 1.1rem;
  color: #e8f0ff;
  margin-bottom: 30px;
  opacity: 0.95;
}


/* FORMULÁRIO REESTILIZADO */
.hero-form-container {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  padding: 40px 35px;
  width: 100%;
  max-width: 420px;
  transform: translateY(0);
  transition: all 0.4s ease;
}


.hero-form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* CAMPOS */
.hero-form input {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ccd8f0;
  border-radius: 10px;
  background: #f8fbff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
/* SELECTS do formulário com o mesmo estilo dos inputs */
.hero-form select,
.hero-form .input-style {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ccd8f0;
  border-radius: 10px;
  background: #f8fbff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  transition: all 0.3s ease;
  color: #333;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Foco igual aos inputs */
.hero-form select:focus,
.hero-form .input-style:focus {
  border-color: #0d47a1;
  background: #fff;
  box-shadow: 0 0 8px rgba(13,71,161,0.2);
}


.hero-form input:focus {
  border-color: #0d47a1;
  background: #fff;
  box-shadow: 0 0 8px rgba(13,71,161,0.2);
}

/* TÍTULOS DO FORM */
.hero-form h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d47a1;
  margin-bottom: 30px;
}

.hero-form p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 20px;
}


/* BOTÃO DO FORM */
.btn-form {
  background: linear-gradient(90deg, #ff6b35 0%, #f35a29 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 6px 15px rgba(255,107,53,0.25);
}

.btn-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

/* RESPONSIVIDADE */
@media (max-width: 991px) {
  #hero.hero-minimal .row {
    flex-direction: column;
    text-align: center;
  }

  .hero-form-container {
    margin-top: 50px;
  }

  #hero.hero-minimal h1 {
    font-size: 2.2rem;
  }
}

@media (min-width: 992px) {
  .hero-form h3 {
    margin-bottom: 30px; /* um pouco mais de respiro em telas grandes */
  }
}



/* === Seção de Serviços === */
.servicos-section {
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.servicos-titulo {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -0.5px;
}

.servicos-subtitulo {
  color: #555;
  margin-bottom: 60px;
  font-size: 1.05rem;
  text-align: center;
}

/* === Carrossel === */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 40px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s ease-in-out;
}


/* === Cards === */
.servico-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  text-align: center;
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
  transition: all 0.3s ease;
  height: 500px; 
}

.servico-img {
  width: 100%;
  height: 260px; 
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.servico-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.servico-card h3 {
  color: #0d47a1;
  font-size: 1.2rem;
  margin: 20px 0 10px;
}

.servico-card p {
  color: #444;
  font-size: 0.95rem;
  margin: 0 20px 25px;
  line-height: 1.5;
}


.btn-outline {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #0d47a1;
  color: #0d47a1;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  margin-bottom: 20px;
}

.btn-outline:hover {
  background: #0d47a1;
  color: #fff;
}

/* === Responsivo === */
@media (max-width: 1000px) {
  .servico-card {
    flex: 0 0 calc(50% - 20px);
    min-width: calc(50% - 20px);
  }
}

@media (max-width: 700px) {
  .servico-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}


/* ========= 6. ABOUT  ========= */
#about {
  background: linear-gradient(180deg, #0a1f44 0%, #0f3a63 100%);
  color: #fff;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

#about h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

#about p {
  font-size: 1.05rem;
  color: #d4d9e1;
  margin-bottom: 25px;
  line-height: 1.6;
}

#about .btn-cta {
  background: #ff7849;
  color: #fff;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
}

#about .btn-cta:hover {
  transform: scale(1.08);
  background: #ff5722;
}

/* Container de vídeo */
#about .video-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  height: 380px;
}

#about .video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsividade */
@media (max-width: 992px) {
  #about {
    text-align: center;
  }
  #about .video-container {
    height: 260px;
    margin-top: 25px;
  }
}


/* =========    TESTIMONIALS SECTION ========= */
    #testimonials {
      background: #f9f9f9;
      color: #333;
    }
    #testimonials .section-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
    }
    #testimonials .section-subtitle {
      font-size: 1.1rem;
      color: #555;
    }
    .testimonial-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .testimonial-text {
      font-style: italic;
      color: #444;
      line-height: 1.6;
    }
    #testimonials small {
      color: #777;
    }

    .trust-bar {
      background: #e9f3ff;
      border-radius: 10px;
      padding: 15px 30px;
      text-align: center;
      font-weight: 500;
      color: #0d47a1;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }


/* ========= 7. BENEFITS ========= */

  #why-us {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

#why-us h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a58ca;
}

#why-us p {
  font-size: 1rem;
  color: #555;
}

.info-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.info-card i {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

.info-card h4 {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.info-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


/* ========= 7. CALL TO ACTION MODERNA ========= */
#cta {
  background: linear-gradient(180deg, #0a1f44 0%, #0f3a63 100%);
  padding: 90px 0;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}


#cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

#cta p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 35px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

#cta .btn-cta {
  background: linear-gradient(90deg, #f48249 0%, #f35f29 100%);
  color: #fff;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.25);
}

#cta .btn-cta:hover {
  transform: scale(1.07);
  background: linear-gradient(90deg, #ff6b35 0%, #ff884d 100%);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

/* Responsividade */
@media (max-width: 768px) {
  #cta {
    padding: 70px 20px;
  }

  #cta h2 {
    font-size: 1.8rem;
  }

  #cta p {
    font-size: 0.95rem;
  }
}

/* ====== SETORES QUE CONFIAM ====== */

#setores h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #003d8f; 
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

#setores p.section-subtitle {
  color: #6b6b6b;
  font-size: 1rem;
  margin-bottom: 50px;
}


.setores-section {
  background-color: #f9fbff;
  padding: 90px 0 110px;
}

.setor-card {
  background: linear-gradient(135deg, #ffffff 0%, #f2f6ff 100%);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
  height: 460px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.setor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 80, 200, 0.15);
}

.setor-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.setor-info {
  padding: 20px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.setor-info h4 {
  font-size: 1.15rem;
  color: #003d8f;
  font-weight: 600;
  margin-bottom: 10px;
}

.setor-info p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ====== SWIPER AJUSTES ====== */
.setoresSwiper {
  width: 100%;
  padding-bottom: 70px; 
}

.swiper-pagination {
  bottom: 0 !important; 
}

.swiper-pagination-bullet {
  background: #0056d6;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.swiper-pagination-bullet-active {
  background: #0056d6;
  opacity: 1;
}






/* ===== Seção de Dúvidas Frequentes ===== */
.faq-section {
  padding: 80px 0;
  background-color: #f8faff;
  text-align: center;
}

.faq-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0056d6;
  margin-bottom: 10px;
}

.faq-section .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
}

.faq-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-column {
  flex: 1;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  flex: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f6ff 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 50, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  backdrop-filter: blur(4px);
}

.faq-card:hover {
  background: linear-gradient(135deg, #f0f7ff 0%, #e5eeff 100%);
  box-shadow: 0 8px 25px rgba(0, 80, 255, 0.12);
  transform: translateY(-3px);
}

/* ===== PERGUNTAS (centralizadas) ===== */
.faq-question {
  display: flex;
  flex-direction: column;        
  justify-content: center;
  align-items: center;           
  text-align: center;            
  padding: 18px 22px;
  cursor: pointer;
  color: #002a61;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.2px;
  min-height: 80px;
  gap: 6px;                      
}

.faq-question i {
  font-size: 1rem;
  color: #0066ff;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-question i {
  transform: rotate(180deg);
}


.faq-question i {
  font-size: 1rem;
  color: #0066ff;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-question i {
  transform: rotate(180deg);
}



/* ===== RESPOSTAS (com animação) ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.4s ease;
  padding: 0 22px;
  color: #4a4a4a;
  font-size: 0.9rem; 
  line-height: 1.5;
  text-align: left;
}

.faq-card.active .faq-answer {
  max-height: 200px;
  padding: 15px 22px 25px;
  opacity: 1;
  transform: translateY(0);
}

/* ===== AJUSTE DE ALTURA ===== */
.faq-column > .faq-card {
  height: 110px;
}

.faq-card.active {
  height: auto;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 900px) {
  .faq-grid {
    flex-direction: column;
    align-items: center;
  }

  .faq-column {
    min-width: 100%;
  }
}

/* BLOG – links de título e "Leia mais" reaproveitando layout dos serviços */

.blog-post-title-link {
  color: inherit;
  text-decoration: none;
}

.blog-post-title-link:hover {
  text-decoration: underline;
}

.blog-excerpt {
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
  color: #4a5a73;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0d47a1;
  text-decoration: none;
}

.blog-read-more:hover {
  text-decoration: underline;
}


/* ===== PÁGINA DE POST DO BLOG ===== */

.blog-post-hero {
  padding-top: 110px; /* compensa a navbar fixa */
  padding-bottom: 40px;
  background: linear-gradient(#f4f7ff, #ffffff);
  text-align: center;
  border-bottom: 1px solid #e5e9f5;
}

.blog-breadcrumb {
  font-size: 0.85rem;
  color: #7180a3;
  margin-bottom: 14px;
}

.blog-breadcrumb a {
  color: #7180a3;
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-breadcrumb span {
  margin: 0 4px;
}

.blog-post-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 35, 95, 0.15);
  max-height: 440px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-header-text {
  margin-top: 24px;
}

.blog-post-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 12px 0 6px;
  color: #102a63;
}

.blog-post-meta {
  font-size: 1rem;
  color: #7180a3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-post-meta .separator {
  opacity: 0.6;
}

.blog-reading-time i {
  margin-right: 4px;
}

.blog-post-summary {
  margin-top: 14px;
  font-size: 1.02rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: #44506d;
}

/* CONTEÚDO PRINCIPAL */

.blog-post-main {
  padding: 36px 0 16px;
}

.blog-section {
  border-left: 4px solid #0d47a1;
  padding-left: 22px;
  background: #fafcff;
  border-radius: 12px;
  padding-top: 18px;
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.blog-section-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #102a63;
}

.blog-post-paragraph {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #3a4863;
}

/* DICA RÁPIDA  */
.blog-tip {
  background: linear-gradient(135deg, #0a1f44, #0f3a63);
  color: #ffffff;
  padding: 24px 24px;
  border-radius: 14px;
  margin: 40px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  text-align: center;
  border-left: none;
  position: relative;          
}


.blog-tip-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;                 
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #8ecbff;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* lâmpada antes do texto "DICA RÁPIDA" */
.blog-tip-label::before {
  content: "💡";
  font-size: 18px;
  line-height: 1;
}


/* FEEDBACK DO LEITOR */

.blog-post-feedback {
  padding: 10px 0 40px;
}

.blog-feedback-card {
  background: #f8fbff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 12px 28px rgba(10, 32, 78, 0.08);
  text-align: center;
}

.blog-feedback-card h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #0e2a5d;
}

.blog-feedback-card p {
  margin-bottom: 16px;
  font-size: 0.96rem;
  color: #5a6788;
}

.blog-feedback-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Botões de feedback com animação */
.btn-feedback {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.btn-feedback:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

/* Clique – efeito de “apertei o botão” */
.btn-feedback:active {
  transform: translateY(1px) scale(0.96);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.btn-feedback.yes {
  background: #23c76b;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(35, 199, 107, 0.45);
}

.btn-feedback.yes:hover {
  background: #1fb160;
}

.btn-feedback.no {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-feedback.no:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Transição suave para esconder área dos botões quando agradecer */
.blog-feedback-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Quando entrar em modo "obrigado" */
.blog-feedback-card.feedback-thanks .blog-feedback-actions {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}




/* ARTIGOS RELACIONADOS */

.blog-related {
  padding: 0 0 60px;
}

.blog-related-title {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #102a63;
}

.blog-related-item {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #e1e9ff;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.blog-related-item .tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d47a1;
  display: inline-block;
  margin-bottom: 4px;
}

.blog-related-item h3 {
  font-size: 0.98rem;
  margin: 0;
  color: #1f2b45;
}

.blog-related-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 32, 78, 0.12);
  border-color: #c3d4ff;
}

/* Espaçamento maior entre blocos e dica rápida */
.blog-section {
  margin: 0 auto 40px;          
}

.blog-tip {
  margin: 28px auto 40px;       
}

/* Deixar os títulos dos blocos mais marcados */
.blog-section-title {
  font-size: 1.4rem;            
  font-weight: 700;             
  color: #0b3c9c;               
  margin-bottom: 14px;
  letter-spacing: 0.01em;       
}

.blog-post-feedback {
  padding-top: 40px;   
  padding-bottom: 50px;
}

.blog-related {
  padding-top: 20px;   
  padding-bottom: 150px;
}

.blog-feedback-card {
  background: #ffffff;                 
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid #e2e8ff;          
  box-shadow: 0 10px 26px rgba(10, 32, 78, 0.07);
  text-align: center;
}

.blog-feedback-card h2 {
  color: #0e2a5d;
}

.blog-feedback-card p {
  color: #5a6788;
}

/* ==== CARD DE FEEDBACK COM MESMA COR DA NAVBAR ==== */

.blog-feedback-card {
  background: linear-gradient(180deg, #0a1f44 0%, #0f3a63 100%); /* mesma da .navbar */
  border-radius: 18px;
  padding: 26px 24px;
  border: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* texto claro em cima do fundo azul */
.blog-feedback-card h2,
.blog-feedback-card p {
  color: #f5f7ff;
}

/* botão "Sim, ajudou" continua verde, mas com leve sombra pra destacar */
.btn-feedback.yes {
  background: #23c76b;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}

/* botão "Pode melhorar" em versão outline clara */
.btn-feedback.no {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-feedback.no:hover {
  background: rgba(255, 255, 255, 0.08);
}




/* Responsivo */

@media (max-width: 767.98px) {
  .blog-post-title {
    font-size: 2rem;
  }

  .blog-section {
    padding-left: 16px;
  }
}






/* ========= 12. FOOTER ========= */

.footer {
   background: linear-gradient(180deg, #0a1f44 0%, #0f3a63 100%);
  color: #fff;
  padding: 50px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

.footer-logo {
  flex: 1 1 250px;
}
.footer-logo-img {
  height: 45px;
  margin-bottom: 10px;
}
.footer-logo p {
  font-size: 14px;
  opacity: 0.9;
}

.footer-links,
.footer-social,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: #ff7a00;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  margin-right: 12px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #ff7a00;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .social-icons a {
    margin: 0 10px;
  }
}

/* ===== Botão Voltar ao Topo  ===== */
#btn-topo {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 115, 230, 0.9), rgba(0, 180, 255, 0.9));
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 100, 255, 0.25);
  backdrop-filter: blur(6px);
  animation: floatButton 3s ease-in-out infinite;
}

/* Efeito hover */
#btn-topo:hover {
  transform: translateY(-4px) scale(1.1);
  background: linear-gradient(135deg, rgba(0, 140, 255, 1), rgba(0, 190, 255, 1));
  box-shadow: 0 6px 18px rgba(0, 100, 255, 0.4);
}

/* Mostra o botão ao rolar */
#btn-topo.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===== Animação de flutuação suave ===== */
@keyframes floatButton {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}





/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  animation: pulseIcon 2.5s ease-in-out infinite;
}

/* Animação do ícone (pulsar leve) */
@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.9; }
}






/* ========= 13. RESPONSIVO ========= */

/* ===== Navbar mobile: alinhar menu e botões à esquerda ===== */
@media (max-width: 991.98px) {

   /* Form da busca ocupa a largura inteira dentro da navbar */
  #cnpj-search-form {
    width: 100%;
    max-width: 100%;
    margin: 0 0 10px 0;           /* um respiro embaixo da barra */
  }

  /* Input da busca toma todo o espaço disponível */
  #cnpj-search-form input {
    width: 100% !important;       /* sobrepõe o width="400px" do HTML */
    flex: 1 1 auto;
  }

  /* Botão da lupa fica colado à direita, tamanho natural */
  #cnpj-search-form button {
    flex: 0 0 auto;
  }

  /* Tira o "empurrão" pra direita do ms-auto */
  .navbar .navbar-nav {
    margin-left: 0 !important;
  }

  /* Garante que cada item fique alinhado à esquerda */
  .navbar .navbar-nav .nav-item {
    text-align: left;
  }

  /* Botões laranjas (Teste Grátis / Novo Usuário) pequenos, tipo pílula */
  .navbar .navbar-nav .nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    padding: 8px 18px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 6px;
  }
}





/* Telas até 992px (tablets) */
@media (max-width: 992px) {
  #hero h1 {
    font-size: 2.2rem;
  }
  #hero p {
    font-size: 1rem;
  }

  #about .about-content {
    flex-direction: column;
    text-align: center;
  }

  #benefits .benefit-card {
    margin-bottom: 20px;
  }

  #sectors .sector-item,
  #solutions .solution-card {
    max-width: 320px;
  }

  #testimonials .testimonial-card {
    max-width: 90%;
  }

  #contact .contact-form {
    width: 100%;
  }

  #footer .footer-links li {
    display: block;
    margin: 8px 0;
  }
}

/* Telas até 768px (celulares grandes) */
@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem;
  }

  #hero {
    padding: 100px 20px;
  }

  #hero h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  #hero p {
    font-size: 0.95rem;
  }

  #hero .btn-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  #about .video-container {
    height: 250px;
  }

  #testimonials .testimonial-card {
    padding: 20px;
  }

  #contact input,
  #contact textarea {
    font-size: 0.95rem;
  }
}

/* Telas até 576px (celulares pequenos) */
@media (max-width: 576px) {
  body {
    font-size: 0.9rem;
  }

  #hero h1 {
    font-size: 1.7rem;
  }

  #hero p {
    font-size: 0.9rem;
  }

  .btn-cta {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  #footer img {
    width: 100px;
  }
}


/* =========================================
   CONSULTAR PREÇOS — estilos específicos
   ========================================= */

/* Hero superior */
.pricing-hero {
  position: relative;
  padding: 140px 0 90px;
  color: #fff;
  background: radial-gradient(80% 120% at 20% 0%, #0c47a1 0%, #07254f 60%, #041a37 100%);
  overflow: hidden;
}
.pricing-hero .badge-soft{
  display:inline-block;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:#e9f2ff;
  padding:6px 12px;
  border-radius:999px;
  font-size:.85rem;
  margin-bottom:10px;
  backdrop-filter: blur(4px);
}
.pricing-hero h1{
  font-weight:800;
  font-size:2.4rem;
  letter-spacing:-.2px;
  margin-bottom:12px;
}
.pricing-hero p{
  color:#d8e4ff;
  max-width:820px;
  margin-bottom:22px;
  line-height:1.65;
}
.btn-hero{
  background: linear-gradient(90deg, #ff6b35, #ff864d);
  color:#fff!important;
  font-weight:700;
  border-radius:12px;
  padding:12px 22px;
  box-shadow:0 8px 24px rgba(255,107,53,.25);
  border:none;
}
.btn-hero:hover{ transform: translateY(-2px); box-shadow:0 12px 28px rgba(255,107,53,.35); }
.pricing-hero__pattern{
  position:absolute; inset:0;
  background:
    radial-gradient(600px 180px at 80% 20%, rgba(0, 255, 255, .08), transparent 60%),
    radial-gradient(500px 200px at 10% 80%, rgba(255, 0, 195, .07), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px;
  mix-blend-mode: screen;
  pointer-events:none;
  animation: pricingGrid 18s linear infinite;
}
@keyframes pricingGrid{
  0%{background-position:0 0, 0 0, 0 0;}
  100%{background-position:0 0, 0 0, 60px 60px;}
}

/* Intro menor */
.services-intro{
  background:#fff;
  padding:60px 0 10px;
}
.services-intro .section-title{
  font-size:1.9rem;
  font-weight:800;
  color:#0d47a1;
  letter-spacing:-.2px;
}
.services-intro .section-subtitle{
  color:#5a6b82;
  max-width:860px;
  margin:8px auto 0;
}

/* Fatias de serviço */
.service-slice{ padding:70px 0; background: #f7fbff; }
.service-slice.alt{ background:#ffffff; }

.service-card{
  display:grid;
  grid-template-columns: 520px 1fr;
  gap:40px;
  align-items:center;
}
.service-slice.alt .service-card{ grid-template-columns: 1fr 520px; }

.service-media{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  background:#eaf2ff;
}
.service-media img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.service-body h3{
  font-weight:800;
  color:#0d47a1;
  margin-bottom:8px;
}
.service-body p{ color:#39495f; margin-bottom:14px; line-height:1.65; }
.chip{
  display:inline-block; margin-bottom:6px;
  background:#eaf2ff; color:#0d47a1;
  padding:6px 12px; border-radius:999px; font-weight:600; font-size:.85rem;
}
.feature-bullets{ list-style:none; padding:0; margin:14px 0 18px; }
.feature-bullets li{
  display:flex; align-items:flex-start; gap:10px;
  color:#2f394a; margin:8px 0;
}
.feature-bullets i{ color:#1aa46e; margin-top:3px; font-size:1.1rem; }

.cta-inline .btn{ border-radius:10px; font-weight:700; }
.cta-inline .btn-primary{
  background:#0d47a1; border:none;
}
.cta-inline .btn-primary:hover{ background:#0a3a86;}
.cta-inline .btn-outline-primary{
  border:2px solid #0d47a1; color:#0d47a1;
}
.cta-inline .btn-outline-primary:hover{
  background:#0d47a1; color:#fff;
}

/* CTA final */
.pricing-cta{
  background: linear-gradient(180deg, #0a1f44 0%, #0f3a63 100%);
  padding:90px 0; text-align:center; color:#fff;
}
.pricing-cta h2{ font-weight:800; margin-bottom:10px; }
.pricing-cta p{ opacity:.95; max-width:760px; margin:0 auto 20px; }

/* Testemunhos nesta página */
.pricing-testimonials{
  background:#f8faff;
  padding:80px 0 100px;
}
.pricing-testimonials .section-title{
  font-size:1.6rem; font-weight:800; color:#0d47a1;
}
.pricing-testimonials .section-subtitle{ color:#5a6b82; }

/* Responsivo */
@media (max-width: 1200px){
  .service-card{ grid-template-columns: 1fr 1fr; }
  .service-slice.alt .service-card{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px){
  .service-card{ grid-template-columns: 1fr; }
  .service-slice.alt .service-card{ grid-template-columns: 1fr; }
}
@media (max-width: 576px){
  .pricing-hero h1{ font-size:2rem; }
}


