/* HERO */
.hero {
  min-height: 100svh;
  background: url(../../assets/images/personal-fundo.png) no-repeat center/cover;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.15) 100%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5vw 5rem 0rem;
  position: relative;
  z-index: 2;
  /* animation: fadeUp 0.9s 0.2s ease both; */
}

/* @keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  width: fit-content;
  border: 1px solid #C4D1FF;
}

.hero-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  display: block;
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.4rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
}

.line-accent {
  color: var(--blue);
}

.tag-lime {
  background: var(--lime);
  color: var(--text);
  border-radius: 12px;
  padding: 0 0.3em;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
  .hero-desc {
    font-size: 0.8rem;
  }
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(43, 91, 255, 0.3);
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(43, 91, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 0.82rem 1.8rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-kpis {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blue-dark);
  max-width: 350px;
}

.kpi-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  display: block;
  letter-spacing: -0.03em;
}

.kpi-num em {
  color: var(--blue);
  font-style: normal;
}

.kpi-label {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Hero right */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-bg-blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 85%;
  height: 115%;
  background: linear-gradient(145deg, var(--blue-light) 0%, var(--bg2) 100%);
  border-radius: 40% 0 0 40%;
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 2;
  width: 78%;
  max-width: 420px;
}

.pill {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 0.85rem 1.2rem;
  box-shadow: 0 8px 32px rgba(43, 91, 255, 0.12);
  border: 1px solid var(--border);
  animation: bob 4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.pill-a {
  left: 4%;
  top: 22%;
  animation-delay: 0s;
}

.pill-b {
  right: 2%;
  bottom: 30%;
  animation-delay: 2s;
}

.pill-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill-val {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 0.1rem;
}

.pill-icon {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.lime-badge {
  position: absolute;
  bottom: 6%;
  left: 8%;
  z-index: 3;
  background: var(--lime);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px rgba(198, 241, 53, 0.5);
}

.lime-badge .lbig {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1;
}

.lime-badge .lsm {
  font-size: 0.72rem;
  color: #4A5A0A;
  margin-top: 0.15rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    height: 320px;
  }
  .hero-left {
    padding: 3rem 6vw;
  }
  
 
}
@media (max-width: 450px) {
  .hero{
    background: url(../../assets/images/fundo-hero\ \(3\).png) no-repeat center/cover;
    
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(255, 232, 232, 0) 0%, var(--bg) 70%, var(--bg) 100%);
    opacity: 1;
  }
  .hero-desc{
    color: black;
  }
  .hero-kpis {
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}
  .kpi-num {
    font-size: 1rem;
  }
  .hero-desc,.hero-btns {
  margin-bottom: 1.5rem;
}
}