/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(37, 99, 235, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
    var(--bg-deep);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-glow);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-title .accent { color: var(--blue-bright); }
.hero-title .gold   { color: var(--gold-light); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-sub strong { color: var(--white); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── PHONE MOCKUP ─── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  background: #1c1c1e;
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.03),
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(37, 99, 235, 0.15);
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #1c1c1e;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  background: #fff;
  min-height: 540px;
  padding-top: 36px;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ─── GMB MOCKUP (dentro do phone) ─── */
.gmb-header {
  background: #fff;
  padding: 12px 16px 8px;
  border-bottom: 1px solid #e8eaed;
}

.gmb-search {
  background: #f1f3f4;
  border-radius: 24px;
  padding: 8px 14px;
  font-size: 12px;
  color: #5f6368;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gmb-business {
  padding: 12px 16px;
}

.gmb-name {
  font-size: 14px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
}

.gmb-category {
  font-size: 11px;
  color: #5f6368;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.gmb-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.gmb-stars span {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
}

.gmb-rating-num {
  font-size: 13px;
  font-weight: 700;
  color: #202124;
  font-family: 'Inter', sans-serif;
}

.gmb-reviews-count {
  font-size: 11px;
  color: #1a73e8;
  font-family: 'Inter', sans-serif;
}

.gmb-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.gmb-btn {
  background: #e8f0fe;
  color: #1a73e8;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  flex: 1;
  text-align: center;
}

.gmb-divider {
  height: 8px;
  background: #f1f3f4;
}

.gmb-reviews-section {
  padding: 12px 16px;
}

.gmb-section-title {
  font-size: 12px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.gmb-review {
  margin-bottom: 12px;
}

.gmb-review-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.gmb-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.gmb-reviewer-name {
  font-size: 11px;
  font-weight: 600;
  color: #202124;
  font-family: 'Inter', sans-serif;
}

.gmb-review-stars {
  color: #f59e0b;
  font-size: 10px;
}

.gmb-review-text {
  font-size: 10px;
  color: #5f6368;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}
