/* Hero Finvero Styles */
.hero-finvero {
  padding: 88px 20px 80px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.hero-finvero__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  overflow: hidden;
}

/* Left side text */
.hero-finvero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-finvero__headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0b1121; /* Very dark blue, almost black */
  margin-bottom: 24px;
}

.hero-finvero__subhead {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-finvero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-finvero__cta {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-finvero__cta:hover {
  transform: translateY(-2px);
}

.hero-finvero__cta--primary {
  background-color: #1a56ff; /* Finvero Vibrant Blue */
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(26, 86, 255, 0.3);
}

.hero-finvero__cta--primary:hover {
  box-shadow: 0 6px 20px rgba(26, 86, 255, 0.4);
}

.hero-finvero__cta--secondary {
  background-color: transparent;
  border: 1px solid #1a56ff;
  color: #1a56ff !important;
}

.hero-finvero__cta--secondary:hover {
  background-color: #f0f5ff;
}

/* Right side grid — 3 columnas tipo Belvo */
.hero-finvero__grid {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}

.hero-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.hero-col--offset {
  padding-top: 48px;
}

.hero-finvero__image-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  position: relative;
  background-color: #f3f4f6;
  flex-shrink: 0;
}

.hero-finvero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.hero-finvero__image-wrapper:hover img {
  transform: scale(1.04);
}

/* Badge overlay on hero images */
.hero-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  pointer-events: none;
  letter-spacing: 0.01em;
}

.hero-badge--approved {
  background: #16a34a;
  color: #ffffff;
}

/* Metrics Card built with HTML/CSS */
.hero-finvero__metrics {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border-radius: 16px;
  color: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  height: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

/* Glassmorphism subtle glow */
.hero-finvero__metrics::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: #38bdf8;
  filter: blur(60px);
  opacity: 0.3;
  border-radius: 50%;
}

.hero-finvero__metrics-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  position: relative;
  z-index: 1;
}

.hero-finvero__metrics-item:first-child {
  padding-top: 0;
}

.hero-finvero__metrics-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-finvero__metrics-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #38bdf8; /* vibrant cyan */
  line-height: 1;
}

.hero-finvero__metrics-label {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Media Queries */
@media (min-width: 1024px) {
  .hero-finvero {
    padding: 91px 20px 120px;
  }
  
  .hero-finvero__container {
    flex-direction: row;
    align-items: stretch;
  }
  
  .hero-finvero__headline {
    font-size: 4rem;
  }

  .hero-finvero__subhead {
    font-size: 1.25rem;
  }

  /* Desktop: mostrar 3 columnas */
  .hero-finvero__grid {
    display: flex;
  }
  .hero-col--offset {
    padding-top: 56px;
  }
}

@media (max-width: 768px) {
  .hero-finvero__headline {
    font-size: 2rem;
  }
  
  .hero-finvero__grid {
    flex-direction: column;
  }
  .hero-col--offset {
    padding-top: 0;
  }
  .hero-col {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-finvero__image-wrapper,
  .hero-finvero__metrics {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
    height: 180px !important;
  }
}
