/* ===================================================
   HERO SECTION - Base e Responsive
   =================================================== */

.hero-section-luxury {
  min-height: 100vh;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 0 !important;
  padding-bottom: 80px;
}

.hero-luxury-header {
  padding: 0 24px 0;
  text-align: center;
  position: relative;
  z-index: 20;
}

.hero-luxury-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 48px 60px;
  gap: 60px;
  flex: 1;
  align-items: center;
}

.hero-text-side {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-title);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.headline-dynamic-gradient {
  display: block;
  margin-top: 10px;
}

.text-gradient-1 { background: linear-gradient(90deg, #dbf227, #06d6a0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-gradient-2 { background: linear-gradient(90deg, #00d2ff, #3a7bd5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-gradient-yellow { background: linear-gradient(90deg, #fceabb, #f8b500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }


.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-stars { color: #f59e0b; font-size: 16px; }
.proof-text { font-size: 13px; color: var(--text-muted); }

/* Creator Pill Premium */
.creator-pill-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px 6px 6px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.creator-mini-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0ea5e9;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

.creator-text {
  display: flex;
  flex-direction: column;
}

.creator-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0ea5e9;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.creator-name {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1200px) {
  .hero-luxury-container { display: flex; flex-direction: column; text-align: center; }
  .hero-visual-side { height: 400px; }
  .phone-mockup-3d { width: 180px; }
  .card-3d { zoom: 0.8; }
}

@media (max-width: 991px) {
  .hero-section-luxury {
    min-height: auto !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .hero-luxury-container {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px !important;
  }

  .hero-text-side {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .hero-title {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  .hero-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-actions .btn-primary {
    margin: 0 auto !important;
    display: inline-flex !important;
  }

  .hero-visual-side {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    min-height: 280px !important;
    position: relative !important;
  }

.luxury-glow-core {
  width: min(300px, 80vw) !important;
  height: min(300px, 80vw) !important;
}

  .exploded-interface-v3d {
    display: none !important;
  }

  .phone-mockup-3d {
    position: relative !important;
    width: 200px !important;
    margin: 0 auto !important;
  }

  .phone-mockup-3d .iphone-full-image {
    width: 200px !important;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  }

  .hero-social-proof {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .hero-subtitle {
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 300px !important;
    margin: 0 auto 24px !important;
    text-align: center !important;
    padding: 0 !important;
  }
}

/* Ocultar iPhone e Visual Side no Mobile conforme solicitado */
@media (max-width: 768px) {
  .hero-visual-side {
    display: none !important;
  }
  
  .hero-section-luxury {
    padding-bottom: 40px;
  }
}