/* ================= HEADER ================= */
.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-inner {
  /* height: 80px; */
}

.logo {
  /* height: 56px; */
  width: 160px;
  margin: 15px 0;
}

.nav-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #5cab2d;
  text-decoration: none;
  transition: color .3s;
}

.nav-link:hover {
  color: #1a4b8c;
}

.nav-link.active {
  color: #7cb518;
}

.nav-link.active:hover {
  color: #1a4b8c;
}

.btn-menu {
  font-size: 1.6rem;
  color: #64748b;
}

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid #e5e7eb;
}

.mobile-link {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: #64748b;
  border-radius: 12px;
  text-decoration: none;
}

.mobile-link:hover {
  background: #f8fafc;
}

.mobile-link.active {
  background: rgba(124,181,24,.1);
  color: #7cb518;
}

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #1a4b8c, #0f2d54);
  color: #ffffff;
  padding: 80px 0 40px;
}

.footer-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7cb518;
  font-size: 1.4rem;
  padding: 4px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color .3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}


.hero-section {
  min-height: 90vh;
  background: linear-gradient(135deg, #f8fafc, #ffffff, #e9f5ec);
  padding: 80px 0;
}

.badge-hero {
  background: #e7f3eb;
  color: #1a4b8c;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 520px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1a4b8c;
}

.stat-text {
  font-size: 0.9rem;
  color: #6b7280;
}

.hero-logo {
  max-width: 320px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.feature-card i {
  font-size: 1.5rem;
  color: #7cb518;
  margin-bottom: 10px;
  display: block;
}

.feature-card p {
  font-size: .95rem;
  font-weight: 600;
  color: #374151;
}

.empresas-destaque {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

/* Badge topo */
.badge-destaque {
  background: rgba(124, 181, 24, 0.1);
  color: #7cb518;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Card */
.empresa-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.empresa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Header */
.empresa-header {
  height: 190px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px;
}

.empresa-logo {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.empresa-card:hover .empresa-logo {
  transform: scale(1.05);
}

/* Selos */
.selo {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.emp.selo-ouro {
  background: linear-gradient(260deg, #facc15, #f59e0b);
  
}

.emp.selo-prata {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}

.emp.selo-bronze {
  background: linear-gradient(135deg, #d97706, #92400e);
}

/* Tags */
.tag {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 50px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* Links */
.link-detalhe {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a4b8c;
  text-decoration: none;
}

.link-detalhe i {
  margin-left: 4px;
}

.link-detalhe:hover {
  text-decoration: underline;
}

.link-externo {
  color: #94a3b8;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.link-externo:hover {
  color: #7cb518;
}


.selos-preview {
  background: #ffffff;
}

/* Badge topo */
.badge-selos {
  background: rgba(26, 75, 140, 0.1);
  color: #1a4b8c;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Card base */
.selo-card {
  border-radius: 28px;
  padding: 32px;
  border: 2px solid;
  transition: all 0.4s ease;
}

.selo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Bronze */
.selo-bronze {
  background: #fff7ed;
  border-color: #fcd34d;
}
.text-bronze { color: #b45309; }

/* Prata */
.selo-prata {
  background: #f8fafc;
  border-color: #cbd5f5;
}
.text-prata { color: #64748b; }

/* Ouro */
.selo-ouro {
  background: #fffbeb;
  border-color: #fde68a;
}
.text-ouro { color: #ca8a04; }

/* Ãcone */
.selo-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}

.selo-badge.bronze, .selo-icon.bronze {
  background: linear-gradient(135deg, #d97706, #92400e);
}

.selo-badge.prata, .selo-icon.prata {
  background: linear-gradient(135deg, #94a3b8, #475569);
}

.selo-badge.ouro, .selo-icon.ouro {
  background: linear-gradient(135deg, #facc15, #f59e0b);
}

.selo-icon i {
  font-size: 2.2rem;
}

/* TÃ­tulo */
.selo-title {
  font-weight: 800;
  margin-bottom: 20px;
}

/* Lista */
.selo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.selo-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #475569;
}

.selo-list i {
  font-size: 1.1rem;
}

/* Link */
.selo-link {
  font-weight: 600;
  text-decoration: none;
}

.selo-link:hover {
  text-decoration: underline;
}

/* Badge Ouro */
.selo-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}


.hero-section {
  min-height: 90vh;
  background: linear-gradient(135deg, #f8fafc, #ffffff, #ecfdf5);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.blob-green {
  width: 300px;
  height: 300px;
  background: #7cb518;
  top: 10%;
  left: 5%;
}
.blob-blue {
  width: 400px;
  height: 400px;
  background: #1a4b8c;
  bottom: 10%;
  right: 5%;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.1rem;
  color: #555;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1a4b8c;
}

.hero-slide {
  display: none;
  animation: slideFade 0.8s ease;
}
.hero-slide.active {
  display: block;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-indicators {
  display: flex;
  gap: 10px;
}
.hero-indicators .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.hero-indicators .dot.active {
  background: #7cb518;
  width: 30px;
}

.hero-logo {
  max-width: 320px;
}

.feature-card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  font-weight: 600;
}
.feature-card i {
  color: #7cb518;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.empresas-header {
  background: linear-gradient(135deg, #1a4b8c, #0f2d54);
}

.badge-header {
  background: rgba(255,255,255,.15);
  padding: 8px 16px;
  border-radius: 50px;
}

.filtros-box {
  margin-top: -40px;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #aaa;
}

.btn-filter {
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 600;
}

.btn-filter.active {
  background: #1a4b8c;
  color: #fff;
  border-color: #1a4b8c;
}

.btn-ouro.active {
  background: linear-gradient(to right, #facc15, #f59e0b);
  border: 0;
}
.btn-prata.active {
  background: linear-gradient(to right, #94a3b8, #475569);
  color: #fff;
}
.btn-bronze.active {
  background: linear-gradient(to right, #d97706, #92400e);
  color: #fff;
}

.empresa-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,.05);
}

.empresa-nivel {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}


    .header-empresa {
      background: linear-gradient(135deg, #1a4b8c, #0f2d54);
      color: #fff;
    }

    .logo-box {
      width: 130px;
      height: 130px;
      background: #fff;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,.15);
    }

    .selo-badge {
      border-radius: 16px;
      padding: 15px 20px;
      display: inline-flex;
      align-items: center;
      gap: 15px;
      color: #fff;
    }


/* Mudar Layout */



    .header-selos {
      background: linear-gradient(135deg, #1a4b8c, #0f2d54);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .header-selos::before {
      content: "";
      position: absolute;
      top: -150px;
      left: 20%;
      width: 400px;
      height: 400px;
      background: #7cb518;
      opacity: .15;
      border-radius: 50%;
      filter: blur(80px);
    }

    .icon-box {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: linear-gradient(135deg, #7cb518, #5a8a0f);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      margin: auto;
    }

    .check-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 12px;
      flex-shrink: 0;
    }

    .badge-servico {
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid;
    }


        .blog-header {
      background: linear-gradient(135deg, #1a4b8c, #0f2d54);
      color: #fff;
    }

    .badge-header {
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(6px);
    }

    .filter-box {
      margin-top: -60px;
      position: relative;
      z-index: 10;
    }

   

    .artigo-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,.05);
      transition: transform .2s;
    }

    .artigo-card:hover {
      transform: translateY(-5px);
    }

    .artigo-img {
      height: 220px;
      background-size: cover;
      background-position: center;
    }

    .artigo-destaque .artigo-img {
      height: 380px;
    }

    .badge-servico.yellow{
      color: #f9c90b;
    }

    .text-success{
      color: rgb(92 171 45) !important;
    }

    .text-white-50.fs-5-corgrey.mb-4{
      color: rgb(92 171 45) !important;

    }
    .imagemdestaque {
    background-size: cover!important;
    height: 500px;
    background-repeat: no-repeat!important;
    background-position: center!important;
    border-radius: 10px 10px 0 0;
}
    ul.wg-pagination.justify-center.wow.fadeInUp.animated {
    gap: 10px;
    margin: 30px 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
}

  .wg-pagination li{background-color: #143c6f;border-radius: 5px;}

.wg-pagination li a{
  text-decoration: none !important;
  color: #ffffff !important;
  padding: 5px 10px;
  display: block;
}


  .cta {
    background: linear-gradient(0deg, #0f2d54, #1a4b8c);
  }

    .hero-img {
      height: 32rem;
      position: relative;
      overflow: hidden;
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
    }

    .badge-categoria {
      font-size: .85rem;
      padding: .5rem 1rem;
      border-radius: 50px;
    }

    .prose h2 {
      margin-top: 3rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .prose h3 {
      margin-top: 2rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .prose p {
      color: #555;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .prose img {
      border-radius: 1rem;
      margin: 2rem 0;
      max-width: 100%;
    }

  .hero-img {
    background-size: cover !important;!i;!;
    background-position: center !important;!i;!;
    background-repeat: no-repeat !important;!i;!;
    height: 500px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.hero-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000a3;
    top: 0;
    left: 0;
}

.info {
    margin-bottom: 40px;
    color: #fff;
}


.back {
    background: #239133;
    color: #fff;
    padding: 10px 30px;
    text-decoration: auto;
    border-radius: 50px;
}