*{
	padding: 0px;
	margin: 0px;
	 font-family: "Inter", sans-serif;
}

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.headerstandard{
	width: 100%;
	height: auto;
	padding: 15px;
	background: rgb(0, 146, 71);
}

.typewriter-text {
  border-right: 2px solid rgb(220,220,220);
  padding-right: 4px;
  animation: blink-cursor 0.7s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { border-color: rgb(220,220,220); }
  50% { border-color: transparent; }
}
.hoverstandard:hover{
	background: rgb(0, 146, 71) !important;
	color: white !important;
	padding:5px !important;width:25px !important;height:25px !important;
	border-radius:50% !important;background:white;color:rgb(0, 146, 71);
}

.headermenustandard{
	width: 100%;height: auto;
	
	background: white;
	
}
/* Seu CSS existente */
.menustander {
  position: relative;
  top: 14px;
}
.menustander ul li {
  float: left;
  list-style: none;
  margin-right: 10px;
}
.menustander ul li a {
  text-decoration: none;
  padding: 8px 14px;
  position: relative;
  display: inline-block;
  color: rgb(0, 146, 71); /* ajuste a cor conforme seu site */
  font-weight: 600;
}

/* EFEITO BORDAS SE DESENHANDO */
.menustander ul li a::before,
.menustander ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: all 0.35s ease;
}
.menustander ul li a::before {
  top: 0;
  left: 0;
}
.menustander ul li a::after {
  bottom: 0;
  right: 0;
}
.menustander ul li a:hover::before {
  width: 100%;
  height: 100%;
  border-top-color: rgb(0, 146, 71);
  border-right-color: rgb(0, 146, 71);
  border-radius: 4px;
}
.menustander ul li a:hover::after {
  width: 100%;
  height: 100%;
  border-bottom-color: rgb(0, 146, 71);
  border-left-color: rgb(0, 146, 71);
  border-radius: 4px;
}

.stats-section {
    padding: 80px 0;
    background: #ffffff;
  }

  .stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 146, 71, 0.08);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #009247, #00c853);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 146, 71, 0.12), 0 4px 15px rgba(0,0,0,0.06);
    border-color: rgba(0, 146, 71, 0.15);
  }

  .stat-card:hover::before {
    transform: scaleX(1);
  }

  .stat-card:hover .stat-icon {
    transform: scale(1.1) rotateY(10deg);
  }

  .stat-card:hover .stat-number {
    color: #00a84f;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 146, 71, 0.15));
  }

  .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #009247;
    line-height: 1;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }

  .stat-number .plus {
    font-size: 2.2rem;
    vertical-align: super;
    margin-right: 2px;
  }

  .stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
  }

  .stat-label span {
    display: block;
    font-weight: 400;
    color: #777;
    font-size: 14px;
    margin-top: 2px;
  }

  /* Animação de entrada */
  .stat-card {
    opacity: 0;
    transform: translateY(30px);
  }

  .stat-card.visible {
    animation: fadeInUp 0.6s forwards;
  }

  .stat-card:nth-child(1).visible { animation-delay: 0s; }
  .stat-card:nth-child(2).visible { animation-delay: 0.15s; }
  .stat-card:nth-child(3).visible { animation-delay: 0.3s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Pulse no ícone ao carregar */
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }

  .stat-card.visible .stat-icon {
    animation: pulse 2s ease-in-out 0.8s 1;
  }