.performance{
  width:100%;
  padding:140px 0;
  background:#ffffff;
  position:relative;
  overflow:hidden;
}

/* GRID TECH CLARO */
.performance::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(13,110,253,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,110,253,.06) 1px, transparent 1px);
  background-size:80px 80px;
  opacity:.6;
}

/* GLOW SUAVE */
.performance::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:#0d6efd;
  filter:blur(200px);
  opacity:.08;
  right:-200px;
  top:-200px;
}

.performance-inner{
  width:100%;
  max-width:80%;
  margin:0 auto;
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:90px;
  align-items:center;
}

/* ===============================
   TEXTO
================================ */

.performance-kicker{
  display:block;
  margin-bottom:18px;
  color:#0d6efd;
  font-weight:800;
  letter-spacing:2px;
}

.performance-left h2{
  font-size:52px;
  font-weight:900;
  line-height:1.05;
  color:#252525;
  margin-bottom:26px;
}

.performance-left p{
  font-size:17px;
  line-height:1.7;
  color:#555;
  max-width:540px;
  margin-bottom:34px;
}

/* TAGS */
.performance-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.performance-tags span{
  padding:8px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  background:rgba(13,110,253,.12);
  color:#0d6efd;
}

/* ===============================
   MÉTRICAS
================================ */

.performance-right{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.performance-metric{
  background:#ffffff;
  border-radius:20px;
  padding:36px;
  border:1px solid #e5e7eb;
  box-shadow:0 20px 50px rgba(0,0,0,.08);

  opacity:1; /* fallback seguro */
  transform:translateY(30px);
  transition:
    opacity .6s ease,
    transform .6s ease,
    box-shadow .4s ease,
    border-color .4s ease;
}

.performance-metric.show{
  transform:translateY(0);
}

.performance-metric:hover{
  border-color:#0d6efd;
  box-shadow:0 30px 70px rgba(0,0,0,.12);
  transform:translateY(-6px);
}

.performance-metric strong{
  display:block;
  font-size:46px;
  font-weight:900;
  color:#0d6efd;
  margin-bottom:8px;
}

.performance-metric span{
  font-size:13px;
  color:#777;
  letter-spacing:1px;
}

/* ===============================
   ANIMAÇÃO TEXTO
================================ */

.performance-animate{
  opacity:1;
  transform:translateY(30px);
  transition:all .8s ease;
}

.performance-animate.show{
  transform:translateY(0);
}

/* ===============================
   MOBILE
================================ */

@media(max-width:900px){
  .performance-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .performance-right{
    grid-template-columns:1fr;
  }

  .performance-tags{
    justify-content:center;
  }

  .performance-left h2{
    font-size:38px;
  }
}
