/* ============================================
   MERCOLUZ - CSS Estático
   ============================================ */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0a0f;
  color: #f5f5f7;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   SPLASH SCREEN
   ============================================ */
.splash {
  position: fixed;
  inset: 0;
  background: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}

.splash.hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-particles .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0.6;
  animation: pulse 2s infinite;
}

.splash-content {
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.splash-logo {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

.splash-logo svg {
  width: 40px;
  height: 40px;
  color: #FFD700;
}

.splash-title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #FFD700, #FFF700, #FFC107, #FFB300, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-bottom: 8px;
}

.splash-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 32px auto 0;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #FFC107, #FFB300, #FFD700);
  animation: loading 4s ease-out forwards;
}

@keyframes loading {
  from { width: 0%; }
  to { width: 100%; }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  position: relative;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* BOKEH EM TODO O SITE - Efeito de Luxo */
.global-bokeh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.bokeh-orb {
  position: absolute;
  border-radius: 50%;
  animation: bokehDrift 15s ease-in-out infinite;
}

.bokeh-orb:nth-child(1) {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, rgba(255, 215, 0, 0.25) 40%, transparent 70%);
  top: 10%;
  left: 8%;
  filter: blur(12px);
  animation-delay: 0s;
}

.bokeh-orb:nth-child(2) {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.45) 0%, rgba(255, 193, 7, 0.2) 40%, transparent 70%);
  top: 50%;
  right: 5%;
  filter: blur(15px);
  animation-delay: -4s;
}

.bokeh-orb:nth-child(3) {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 235, 59, 0.4) 0%, rgba(255, 235, 59, 0.18) 40%, transparent 70%);
  bottom: 20%;
  left: 15%;
  filter: blur(10px);
  animation-delay: -8s;
}

.bokeh-orb:nth-child(4) {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.38) 0%, rgba(255, 179, 0, 0.15) 40%, transparent 70%);
  top: 30%;
  right: 18%;
  filter: blur(14px);
  animation-delay: -12s;
}

.bokeh-orb:nth-child(5) {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.35) 0%, rgba(255, 215, 0, 0.12) 40%, transparent 70%);
  top: 70%;
  left: 30%;
  filter: blur(8px);
  animation-delay: -6s;
}

.bokeh-orb:nth-child(6) {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.32) 0%, rgba(255, 193, 7, 0.1) 40%, transparent 70%);
  top: 40%;
  left: 55%;
  filter: blur(10px);
  animation-delay: -10s;
}

@keyframes bokehDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(20px, -25px) scale(1.08); }
  40% { transform: translate(-15px, 18px) scale(0.95); }
  60% { transform: translate(25px, 12px) scale(1.05); }
  80% { transform: translate(-10px, -20px) scale(0.98); }
}

.particles .particle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
  pointer-events: none;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: #FFD700;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: bold;
  background: linear-gradient(135deg, #FFD700, #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  color: #25D366;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.hero-content {
  text-align: center;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge svg {
  width: 16px;
  height: 16px;
  color: #FFD700;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-light {
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  background: linear-gradient(135deg, #FFD700, #FFF700, #FFC107, #FFB300, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-subtitle strong {
  color: #FFD700;
}

/* CTAs */
.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #FFD700 0%, #FFC107 20%, #FFB300 40%, #FF9800 60%, #FFC107 80%, #FFD700 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  color: #0a0a0f;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.8);
}

.cta-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.cta-primary svg {
  width: 20px;
  height: 20px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-secondary:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
}

.cta-secondary svg {
  width: 20px;
  height: 20px;
  color: #FFD700;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Social Proof */
.social-proof {
  display: inline-block;
  padding: 24px;
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin-bottom: 60px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.stars svg {
  width: 20px;
  height: 20px;
  color: #FFD700;
}

.social-proof p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.social-proof strong {
  color: #FFD700;
}

.avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.avatar-list {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  font-size: 0.8rem;
}

.avatar:first-child {
  margin-left: 0;
}

.avatars span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   IMAGE SLIDER
   ============================================ */
.slider-section {
  margin-bottom: 60px;
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.slider-header svg {
  width: 20px;
  height: 20px;
  color: #FFD700;
}

.slider-header h3 {
  font-size: 1.1rem;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.slider-gradient-left,
.slider-gradient-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.slider-gradient-left {
  left: 0;
  background: linear-gradient(to right, #0a0a0f, transparent);
}

.slider-gradient-right {
  right: 0;
  background: linear-gradient(to left, #0a0a0f, transparent);
}

.slider {
  display: flex;
  gap: 20px;
  padding: 24px 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slide {
  flex-shrink: 0;
  width: 280px;
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0f;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.slide:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.slide:hover img {
  transform: scale(1.1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide:hover .slide-overlay {
  opacity: 1;
}

.slide-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.9));
  color: #0a0a0f;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.slide:hover .slide-badge {
  opacity: 1;
  transform: translateY(0);
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: scale(1.1);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.slider-dot.active {
  width: 32px;
  height: 12px;
  border-radius: 6px;
  background: #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 40px 0;
}

.feature {
  padding: 20px;
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: #FFD700;
}

.feature h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 60px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header svg {
  width: 40px;
  height: 40px;
  color: #FFD700;
  margin-bottom: 16px;
}

.testimonials-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFD700, #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 24px;
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #FFD700;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar svg {
  width: 22px;
  height: 22px;
  color: #FFD700;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: rgba(255, 215, 0, 0.7);
}

/* ============================================
   QUIZ SECTION
   ============================================ */
.quiz-section {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.quiz-container {
  max-width: 700px;
  margin: 0 auto;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-header span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.back-btn {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.back-btn:hover {
  opacity: 0.8;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #FFC107, #FFB300);
  transition: width 0.5s ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.question-card {
  padding: 32px;
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.question-card h2 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 8px;
}

.question-card > p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.options-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.quiz-option {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.quiz-option:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.7);
  transform: translateY(-2px);
}

.quiz-option.selected {
  background: rgba(255, 215, 0, 0.25);
  border-color: #FFD700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.option-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.quiz-option.selected .option-icon {
  background: #FFD700;
}

.option-icon svg {
  width: 24px;
  height: 24px;
  color: #FFD700;
}

.quiz-option.selected .option-icon svg {
  color: #0a0a0f;
}

.quiz-option p {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.quiz-option span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.other-input-container {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.form-input {
  flex: 1;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
  padding: 60px 0;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  overflow: hidden;
}

.form-container {
  position: relative;
  z-index: 5;
  max-width: 450px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(20, 20, 35, 0.53);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  animation: scaleIn 0.4s ease-out;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-icon svg {
  width: 32px;
  height: 32px;
  color: #FFD700;
}

.form-header h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.summary-card {
  padding: 16px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  margin-bottom: 24px;
}

.summary-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.summary-card p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.summary-card strong {
  color: #FFD700;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
}

.back-link {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #FFD700;
}

/* ============================================
   SUCCESS SECTION
   ============================================ */
.success-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.success-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  animation: scaleIn 0.4s ease-out;
}

.success-icon-container {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
}

.success-icon-pulse {
  position: absolute;
  inset: 0;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.success-icon {
  position: relative;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #FFD700, #FFB300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.success-icon svg {
  width: 48px;
  height: 48px;
  color: #0a0a0f;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: checkmark 0.6s ease-out 0.3s forwards;
}

@keyframes checkmark {
  to { stroke-dashoffset: 0; }
}

.success-title {
  font-size: 2rem;
  background: linear-gradient(135deg, #FFD700, #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.success-subtitle {
  font-size: 1.25rem;
  color: #FFD700;
  font-weight: 600;
  margin-bottom: 8px;
}

.success-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.exclusive-card {
  padding: 24px;
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin-bottom: 32px;
}

.exclusive-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.exclusive-header svg {
  width: 20px;
  height: 20px;
  color: #FFD700;
}

.exclusive-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.success-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-ctas .cta-primary,
.success-ctas .cta-secondary {
  width: 100%;
  justify-content: center;
}

.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Home Button */
.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
  color: #FFD700;
  transform: translateY(-2px);
}

.home-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  color: #FFD700;
}

.footer-brand-title {
  font-size: 1.25rem;
  font-weight: bold;
  background: linear-gradient(135deg, #FFD700, #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.footer-brand-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Footer Address Card */
.footer-address-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.footer-address-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-address-icon svg {
  width: 24px;
  height: 24px;
  color: #FFD700;
}

.footer-address-content h4 {
  font-size: 1rem;
  color: #FFD700;
  margin-bottom: 8px;
}

.footer-address-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
  line-height: 1.5;
}

.address-street {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
}

.address-cep {
  font-size: 0.8rem !important;
  color: rgba(255, 215, 0, 0.8) !important;
  font-weight: 500;
  margin-top: 8px;
}

/* Footer Contact Card */
.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-item .contact-icon svg {
  width: 18px;
  height: 18px;
  color: #FFD700;
}

.footer-contact-item a {
  text-decoration: none;
}

.footer-contact-item span {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer-contact-item small {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

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

.footer-contact-item a:hover span {
  color: #FFD700;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.footer-made {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .options-grid.three-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide {
    width: 240px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-address-card {
    order: -1;
  }
}

@media (max-width: 480px) {
  .whatsapp-btn span {
    display: none;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .slide {
    width: 200px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
