/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Background decorative elements */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(66,133,244,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(52,168,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Google dots pattern */
.hero__dots {
  position: absolute;
  top: 80px;
  right: 60px;
  width: 200px;
  height: 200px;
  background-image:
    radial-gradient(circle, rgba(66,133,244,0.15) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.7;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-md) 0;
}

/* ─── Hero Content ─── */
.hero__content {
  animation: fadeInUp 0.7s ease both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px 6px 8px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.01em;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--google-blue);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.hero__title .highlight-blue  { color: var(--google-blue); }
.hero__title .highlight-red   { color: var(--google-red); }
.hero__title .highlight-yellow { color: var(--google-yellow); }
.hero__title .highlight-green  { color: var(--google-green); }



.hero__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

/* Price Display */
.hero__price-box {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
}

.hero__price-label {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

.hero__price-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--google-green);
  letter-spacing: -0.03em;
}

.hero__price-each {
  font-size: 14px;
  color: var(--gray-400);
  align-self: flex-end;
  margin-bottom: 4px;
}

/* CTA Group */
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero__cta-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 14px;
  color: var(--gray-600);
}

.hero__social-proof-avatars {
  display: flex;
}

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-left: -8px;
}

.hero__avatar:first-child { margin-left: 0; }
.hero__avatar:nth-child(1) { background: var(--google-blue); }
.hero__avatar:nth-child(2) { background: var(--google-red); }
.hero__avatar:nth-child(3) { background: var(--google-green); }
.hero__avatar:nth-child(4) { background: var(--google-yellow); color: var(--gray-800); }

/* ─── Hero Visual ─── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn 0.9s ease 0.2s both;
}

.hero__product-wrapper {
  position: relative;
  display: inline-block;
}

.hero__product-img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 24px 48px rgba(60,64,67,0.18));
  border-radius: 24px;
}

/* Floating info cards */
.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--gray-200);
  animation: float 6s ease-in-out infinite;
}

.hero__card--reviews {
  bottom: 15%;
  left: -12%;
  animation-delay: -2s;
  color: var(--gray-800);
}

.hero__card--nfc {
  top: 15%;
  right: -10%;
  animation-delay: -4s;
  color: var(--gray-800);
}

.hero__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero__card-icon--green { background: rgba(52,168,83,0.12); }
.hero__card-icon--blue  { background: rgba(66,133,244,0.12); }

.hero__card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__card-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.hero__card-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1;
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 50px;
  }

  /* Grid de 3 linhas: eyebrow+título | imagem | subtítulo+restante */
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
    gap: var(--space-lg);
  }

  /* Conteúdo vira um subgrid de 3 linhas */
  .hero__content {
    display: contents;
  }

  .hero__eyebrow {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: 0;
    justify-self: center;
  }

  .hero__title {
    grid-row: 2;
    grid-column: 1;
    margin-bottom: 0;
    font-size: clamp(26px, 7.5vw, 36px);
  }



  /* Imagem entre título e subtítulo */
  .hero__visual {
    grid-row: 3;
    grid-column: 1;
  }

  .hero__subtitle {
    grid-row: 4;
    grid-column: 1;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }

  .hero__price-box {
    grid-row: 5;
    grid-column: 1;
    justify-content: center;
    justify-self: center;
    margin-bottom: 0;
  }

  .hero__cta {
    grid-row: 6;
    grid-column: 1;
  }

  .hero__cta-buttons {
    justify-content: center;
  }

  .hero__social-proof {
    justify-content: center;
  }

  .hero__product-img {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .hero__cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta-buttons .btn {
    justify-content: center;
  }

  .hero__card {
    display: none;
  }

  .hero__title {
    font-size: 18px !important;
    white-space: normal;
  }
}

