/* Modern & Premium Design System - Buffet Encanto & Magia */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-primary: 'Outfit', sans-serif;
  --font-display: 'Nunito', sans-serif;
  
  /* Color Palette */
  --bg-primary: #0a1f5c;         /* Navy Blue Deep */
  --bg-secondary: #071642;       /* Ultra Navy Dark */
  --bg-light: #1e4cc8;           /* Royal Blue */
  --bg-gradient-blue: linear-gradient(135deg, #0a1f5c 0%, #1e4cc8 100%);
  --bg-gradient-glow: radial-gradient(circle at 50% 50%, rgba(30, 76, 200, 0.25) 0%, rgba(10, 31, 92, 0) 70%);
  
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  /* Gold Accent Theme */
  --accent-gold: #ffcc00;        /* Bright Gold */
  --accent-gold-hover: #e6b800;  /* Darker Gold */
  --accent-gold-glow: rgba(255, 204, 0, 0.3);
  
  /* Custom Transitions & Borders */
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 40px;
  
  --shadow-card: 0 15px 35px -5px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 8px 25px -5px var(--accent-gold-glow);
  --border-light: 1px solid rgba(255, 255, 255, 0.08);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-image: var(--bg-gradient-blue);
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Base Layout Utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  overflow-wrap: anywhere;
}

h2 span {
  color: var(--accent-gold);
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius-xl);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  white-space: normal;
  line-height: 1.15;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  z-index: -1;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.btn:hover::before {
  left: 140%;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-secondary);
  box-shadow: var(--shadow-gold);
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--accent-gold);
  color: var(--bg-secondary);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 34px -8px rgba(255, 204, 0, 0.65);
  animation-play-state: paused;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn:focus-visible {
  outline: 3px solid var(--text-primary);
  outline-offset: 4px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-primary);
  transform: translateY(-3px);
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: var(--shadow-gold);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 204, 0, 0.08), 0 14px 32px -10px rgba(255, 204, 0, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn::before,
  .btn-primary {
    animation: none;
    transition: none;
  }
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 31, 92, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: var(--border-light);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-overlay {
  display: none;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 650px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-characters {
  order: 2;
  display: none;
}

.hero-conversion-block {
  order: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 76, 200, 0.4);
  border: var(--border-light);
  padding: 0.5rem 1.2rem;
  border-radius: var(--border-radius-xl);
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  order: 1;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 0 40px rgba(10, 31, 92, 0.95);
  overflow-wrap: anywhere;
}

.hero-content h1 span {
  color: var(--accent-gold);
}

.hero-content p {
  order: 2;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.hero-urgency {
  display: none;
}

.hero-actions {
  order: 4;
}

/* Confetti Background decoration */
.confetti-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 204, 0, 0.08) 1px, transparent 1px),
                    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 2px, transparent 2px),
                    radial-gradient(circle at 50% 15%, rgba(6, 182, 212, 0.08) 1.5px, transparent 1.5px);
  background-size: 100px 100px;
  opacity: 0.6;
}


/* Sections Global */
section {
  padding: 7rem 0;
  position: relative;
}

.bg-dark {
  background-color: var(--bg-secondary);
}

/* Diferenciais Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(10, 31, 92, 0.08);
  border-radius: var(--border-radius-md);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 38px -18px rgba(0, 0, 0, 0.45);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 26px 55px -20px rgba(0, 0, 0, 0.55);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(10, 31, 92, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  border: 1px solid rgba(10, 31, 92, 0.12);
  font-size: 2rem;
  box-shadow: 0 8px 18px rgba(10, 31, 92, 0.12);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--bg-primary);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--bg-primary);
}

/* ============================================
   Passo a Passo Section — Premium Redesign
   ============================================ */

.steps-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Header do bloco */
.steps-header {
  text-align: center;
  margin-bottom: 5rem;
}

.steps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.25);
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.steps-header h2 {
  margin-bottom: 1rem;
}

.steps-header h2::after {
  content: none;
}

.steps-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* Track com 3 cards */
.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-bottom: 4rem;
  align-items: stretch;
}

/* Cards de passo */
.step-card {
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.step-card-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.step-card-inner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-card-inner {
  background: rgba(30, 76, 200, 0.18);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.5);
}

.step-card:hover .step-card-inner::before {
  transform: scaleX(1);
}

/* Card destaque (passo central) */
.step-featured .step-card-inner {
  background: rgba(30, 76, 200, 0.2);
  border-color: rgba(255, 204, 0, 0.25);
  box-shadow: 0 12px 40px -10px rgba(255, 204, 0, 0.12);
}

.step-featured .step-card-inner::before {
  transform: scaleX(1);
}

.step-featured:hover .step-card-inner {
  border-color: rgba(255, 204, 0, 0.5);
  box-shadow: 0 24px 50px -12px rgba(255, 204, 0, 0.2);
}

.step-number {
  position: absolute;
  top: 0.4rem;
  right: 1rem;
  z-index: 0;
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-size: 6.25rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.45;
  pointer-events: none;
  text-shadow: 0 0 24px rgba(255, 204, 0, 0.2);
}

.step-icon-wrap,
.step-content {
  position: relative;
  z-index: 1;
}

/* Ícone do passo */
.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(30, 76, 200, 0.4) 0%, rgba(10, 31, 92, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon-wrap {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.2) 0%, rgba(30, 76, 200, 0.4) 100%);
  border-color: rgba(255, 204, 0, 0.25);
  color: var(--accent-gold);
}

/* Conteúdo textual */
.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Lista de micro-detalhes */
.step-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.step-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--text-muted);
  transition: color 0.2s;
}

.step-checklist li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.step-card:hover .step-checklist li {
  color: var(--text-secondary);
}

/* CTA abaixo dos cards */
.steps-cta {
  text-align: center;
}

.steps-cta-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* --- Responsivo --- */
@media (max-width: 900px) {
  .steps-track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Pacotes Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.package-card {
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.package-card.featured {
  background: rgba(30, 76, 200, 0.2);
  border-color: var(--accent-gold);
  transform: scale(1.03);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg-secondary);
  padding: 0.4rem 1.2rem;
  border-radius: var(--border-radius-xl);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255,255,255,0.2);
}

.package-card.featured:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px -10px var(--accent-gold-glow);
}

.package-header {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.package-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.package-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.package-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.package-features li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.package-features li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.package-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Galeria Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  border: var(--border-light);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 31, 92, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay span {
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Mosaico de Fotos */
.magic-section {
  overflow: hidden;
}

.magic-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
}

.magic-photo {
  margin: 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.65);
}

.magic-photo-large {
  grid-column: span 2;
  grid-row: span 2;
}

.magic-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  min-height: 330px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 3.5rem;
  box-shadow: 0 22px 55px -26px rgba(0, 0, 0, 0.6);
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0.15rem;
  margin-bottom: 1.35rem;
  text-shadow: 0 0 18px var(--accent-gold-glow);
}

.testimonial-text {
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-text strong {
  color: var(--text-primary);
  font-weight: 900;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text-primary);
  border: 2px solid var(--accent-gold);
}

.user-info h4 {
  font-size: 1.1rem;
}

.user-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-control {
  background: rgba(30, 76, 200, 0.15);
  border: var(--border-light);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-control:hover {
  background: var(--accent-gold);
  color: var(--bg-secondary);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 0.6rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

/* Contact CTA Section */
.contact-section {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at 10% 90%, rgba(255, 204, 0, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 90% 10%, rgba(30, 76, 200, 0.3) 0%, transparent 60%);
}

.contact-wrapper-centered {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.contact-wrapper-centered h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-wrapper-centered h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-wrapper-centered p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-urgency {
  max-width: 620px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.5;
}

.btn-large {
  padding: 1.2rem 3.5rem;
  font-size: 1.25rem;
}

/* Reveal On Scroll Utility classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade - Media Queries */
@media (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .magic-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-track {
    gap: 1.25rem;
  }
  .step-card-inner {
    padding: 2.5rem 1.5rem 1.75rem;
  }
  .step-checklist li {
    font-size: 1.02rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  section {
    padding: 5rem 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  h2 {
    margin-bottom: 2.75rem;
  }
  .navbar {
    padding: 0.8rem 0;
  }
  .logo img {
    height: 44px;
  }
  .nav-btn {
    flex: 0 0 auto;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }
  .hero {
    min-height: 100svh;
    padding-top: 100px;
    padding-bottom: 2.75rem;
    align-items: flex-start;
  }
  .hero-bg {
    background: linear-gradient(180deg, #5ca3ff 0%, var(--bg-primary) 58%, var(--bg-secondary) 100%);
  }
  .hero-bg picture {
    display: none;
  }
  .hero-wrapper {
    display: block;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-characters {
    display: block;
    width: min(118vw, 520px);
    max-height: 44svh;
    align-self: center;
    object-fit: contain;
    margin: -0.25rem auto -0.7rem;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-9%);
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.35));
  }
  .hero-content h1 {
    order: 1;
    font-size: clamp(1.35rem, 5.4vw, 1.72rem);
    max-width: 21rem;
    margin: 0 auto 0.35rem;
    text-align: center;
    line-height: 1.14;
  }
  .hero-content p {
    order: 4;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 31rem;
    margin: 1rem auto 0;
    text-align: center;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 100%;
    text-align: center;
  }
  .hero-conversion-block {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: visible;
  }
  .hero-actions .btn {
    width: min(100%, 19rem);
    align-self: center;
    margin-top: 0;
    min-height: 3.45rem;
    box-shadow: 0 16px 34px -12px rgba(255, 204, 0, 0.85);
  }
  .hero-urgency {
    display: block;
    max-width: 22rem;
    margin: 0.72rem auto 0;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-style: italic;
    line-height: 1.35;
    text-align: center;
  }
  .steps-track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .steps-header {
    margin-bottom: 3rem;
  }
  .steps-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 1px;
  }
  .steps-subtitle {
    font-size: 1rem;
  }
  .feature-card {
    padding: 2.25rem 1.5rem;
  }
  .magic-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.8rem;
  }
  .magic-photo-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .testimonials-carousel {
    min-height: 0;
  }
  .testimonial-slide {
    padding: 2.2rem;
  }
  .testimonial-text {
    font-size: 1.15rem;
  }
  .stars {
    font-size: 1.45rem;
  }
  .contact-urgency {
    font-size: 0.92rem;
  }
  .contact-wrapper-centered p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
  .btn-large {
    padding: 1.05rem 2rem;
    font-size: 1.08rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  section {
    padding: 4rem 0;
  }
  .navbar .container {
    gap: 0.75rem;
  }
  .logo img {
    height: 38px;
  }
  .nav-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.74rem;
    letter-spacing: 0.2px;
    max-width: 52vw;
  }
  .hero {
    padding-top: 86px;
    padding-bottom: 2.5rem;
  }
  .hero-characters {
    width: min(122vw, 430px);
    max-height: 43svh;
    margin: -0.2rem auto -0.65rem;
    transform: translateX(-10%);
  }
  .hero-content h1 {
    font-size: clamp(1.22rem, 5.9vw, 1.55rem);
    max-width: 19.8rem;
  }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.48;
    max-width: 20.5rem;
    margin-top: 1.1rem;
  }
  .hero-actions .btn {
    width: min(100%, 17.5rem);
    min-height: 3.25rem;
    margin-top: 0;
  }
  .hero-urgency {
    max-width: 19rem;
    font-size: 0.76rem;
  }
  .steps-header h2 {
    font-size: clamp(1.9rem, 10vw, 2.2rem);
  }
  .magic-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }
  .magic-photo-large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .step-card-inner {
    padding: 2.5rem 1.25rem 1.5rem;
  }
  .step-number {
    font-size: 4.5rem;
    opacity: 0.34;
  }
  .step-checklist li {
    align-items: flex-start;
    font-size: 1rem;
  }
  .testimonial-slide {
    padding: 1.8rem 1.25rem;
  }
  .testimonial-text {
    font-size: 1.03rem;
    line-height: 1.6;
  }
  .stars {
    font-size: 1.22rem;
    letter-spacing: 0.08rem;
  }
  .btn {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
    padding: 0.95rem 1.2rem;
    font-size: 0.98rem;
  }
  .nav-btn {
    width: auto;
    margin-top: 0;
  }
  .btn-secondary {
    margin-left: 0;
  }
  .contact-wrapper-centered h2 {
    margin-bottom: 1.5rem;
  }
  .contact-wrapper-centered p {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .nav-btn {
    font-size: 0.68rem;
    padding: 0.45rem 0.65rem;
  }
  .hero-content h1 {
    font-size: 1.12rem;
    max-width: 17rem;
  }
  .hero-characters {
    width: min(124vw, 370px);
    max-height: 40svh;
    margin-bottom: -0.55rem;
    transform: translateX(-10%);
  }
  .hero-urgency {
    font-size: 0.7rem;
  }
  .btn {
    font-size: 0.92rem;
  }
}
