/*===========================
  ZARAÇÃO - DESIGN HUMANIZADO
  Conexões que fazem sentido
===========================*/

/*===========================
  PALETA EMOCIONAL
===========================*/
:root {
  /* Cores Principais - Tons quentes e acolhedores */
  --warm-black: #1C1917;
  --warm-charcoal: #292524;
  --deep-rose: #BE123C;
  --soft-rose: #FB7185;
  --blush: #FFF1F2;
  --amber-glow: #D97706;
  --honey: #FCD34D;
  --cream: #FFFBEB;
  --warm-white: #FAFAF9;
  --soft-gray: #78716C;
  --muted-stone: #A8A29E;
  
  /* Override do template */
  --primary: #BE123C;
  --primary-dark: #9F1239;
  --accent: #D97706;
  
  /* Gradientes Orgânicos */
  --gradient-warmth: linear-gradient(135deg, #BE123C 0%, #D97706 100%);
  --gradient-sunset: linear-gradient(180deg, #FFF1F2 0%, #FAFAF9 100%);
  --gradient-night: linear-gradient(180deg, #1C1917 0%, #292524 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(251,113,133,0.15) 0%, transparent 70%);
}

/*===========================
  TIPOGRAFIA COM ALMA
===========================*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--warm-charcoal);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background: var(--warm-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--warm-black);
}

/*===========================
  NAVBAR - FLUIDA E ACOLHEDORA
===========================*/
.navbar-area.navbar-nine {
  background: rgba(250, 250, 249, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
  padding: 8px 0;
}

.navbar-area.navbar-nine.sticky {
  background: rgba(250, 250, 249, 0.98);
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.08);
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  color: var(--soft-gray);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover,
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  color: var(--deep-rose);
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a::after {
  display: none;
}

.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  background-color: var(--warm-charcoal);
  height: 2px;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    background: var(--warm-white);
    border-radius: 16px;
    margin-top: 10px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(28, 25, 23, 0.15);
  }
}

/*===========================
  BOTÕES - TOQUE HUMANO
===========================*/
.btn-glow {
  background: var(--deep-rose);
  color: white;
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(190, 18, 60, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: none;
}

.btn-glow:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(190, 18, 60, 0.4);
  color: white;
}

.btn-gold-outline {
  background: transparent;
  color: var(--warm-charcoal);
  border: 1.5px solid var(--muted-stone);
  padding: 14px 32px;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold-outline:hover {
  background: var(--warm-charcoal);
  color: white;
  border-color: var(--warm-charcoal);
}

/*===========================
  HERO - PRIMEIRA IMPRESSÃO
===========================*/
.header-eight {
  background: var(--gradient-night);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.header-eight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: var(--gradient-glow);
  opacity: 0.6;
  pointer-events: none;
}

.header-eight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(28,25,23,0.8), transparent);
  pointer-events: none;
}

.header-eight .container {
  position: relative;
  z-index: 2;
}

.header-eight .header-content h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.5rem;
}

.header-eight .header-content h1 .emoji {
  display: inline-block;
  animation: gentle-pulse 4s ease-in-out infinite;
}

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

.header-eight .header-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
}

.header-eight .header-image img {
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.header-eight .button {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.header-eight .button .btn-gold-outline {
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.header-eight .button .btn-gold-outline:hover {
  background: white;
  color: var(--warm-black);
  border-color: white;
}

/*===========================
  SEÇÃO AMOR REAL - CONTRASTE
===========================*/
.amor-real-section {
  background: var(--warm-black);
  padding: 120px 0;
  position: relative;
}

.amor-real-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,113,133,0.3), transparent);
}

.amor-real-content {
  max-width: 720px;
  margin: 0 auto;
}

.amor-real-content h6.section-subtitle {
  color: var(--soft-rose);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.amor-real-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: white;
  line-height: 1.3;
  margin-bottom: 32px;
}

.amor-real-content .problemas-grid p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.amor-real-content .destaque-box {
  background: rgba(190, 18, 60, 0.1);
  border: none;
  border-left: 3px solid var(--deep-rose);
  padding: 24px 32px;
  margin: 40px 0;
  border-radius: 0 16px 16px 0;
}

.amor-real-content .destaque-box .verdade {
  color: white;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
}

.amor-real-content .solucao-zaracao p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.amor-real-content .solucao-zaracao .highlight {
  color: var(--honey);
  font-weight: 600;
}

/*===========================
  TÍTULOS DE SEÇÃO
===========================*/
.section-title-zaracao {
  text-align: center;
  margin-bottom: 72px;
}

.section-title-zaracao h6 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: 16px;
}

.section-title-zaracao h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--warm-black);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title-zaracao p {
  font-size: 1.05rem;
  color: var(--soft-gray);
  max-width: 560px;
  margin: 0 auto;
}

/*===========================
  COMO FUNCIONA - PASSOS
===========================*/
#como-funciona {
  background: var(--gradient-sunset);
  padding: 120px 0;
}

.como-funciona-card {
  background: white;
  border-radius: 24px;
  padding: 48px 32px 40px;
  text-align: left;
  position: relative;
  height: 100%;
  border: none;
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.como-funciona-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(28, 25, 23, 0.12);
}

.como-funciona-card .step-number {
  position: absolute;
  top: -20px;
  left: 32px;
  background: var(--gradient-warmth);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(190, 18, 60, 0.35);
}

.como-funciona-card .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.como-funciona-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--warm-black);
  margin-bottom: 16px;
  line-height: 1.3;
}

.como-funciona-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--soft-gray);
  margin-bottom: 0;
}

.como-funciona-card .destaque-texto {
  color: var(--deep-rose);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

/*===========================
  A VERDADE - STORYTELLING
===========================*/
.porque-nasceu-section {
  background: white;
  padding: 120px 0;
  position: relative;
}

.porque-nasceu-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.porque-nasceu-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--warm-charcoal);
  margin-bottom: 1.5rem;
}

.verdade-destaque {
  background: var(--gradient-warmth);
  padding: 36px 44px;
  border-radius: 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.verdade-destaque::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.verdade-destaque .lead-text {
  color: white !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.estudo-box {
  background: var(--cream);
  border: none;
  border-radius: 16px;
  padding: 28px 32px;
  margin: 36px 0;
}

.estudo-box .estudo-resultado {
  color: var(--warm-charcoal);
  font-size: 1.05rem;
  margin: 0;
}

.porque-nasceu-content .conclusao {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--warm-black);
  text-align: center;
  margin-top: 40px;
  padding: 0;
  background: none;
}

/*===========================
  DIFERENCIAIS - GRID LIMPO
===========================*/
#diferencial {
  background: var(--warm-white);
  padding: 120px 0;
}

.diferencial-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(28, 25, 23, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-warmth);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferencial-card:hover {
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.1);
  border-color: transparent;
}

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

.diferencial-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.diferencial-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--warm-black);
  margin-bottom: 12px;
}

.diferencial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--soft-gray);
}

.diferencial-card .destaque-small {
  color: var(--deep-rose);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 12px;
  font-style: normal;
}

/*===========================
  NÍVEIS - ELEGÂNCIA
===========================*/
.niveis-section {
  background: linear-gradient(180deg, white 0%, var(--blush) 100%);
  padding: 120px 0;
}

.nivel-card {
  background: white;
  border-radius: 24px;
  padding: 56px 32px 40px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
}

.nivel-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px rgba(28, 25, 23, 0.15);
}

.nivel-card .nivel-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 10px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.nivel-card.nivel-ouro .nivel-badge {
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  color: white;
}

.nivel-card.nivel-prata .nivel-badge {
  background: linear-gradient(135deg, #6B7280, #9CA3AF);
  color: white;
}

.nivel-card.nivel-bronze .nivel-badge {
  background: linear-gradient(135deg, #92400E, #B45309);
  color: white;
}

.nivel-card.nivel-ouro { border: 2px solid #F59E0B; }
.nivel-card.nivel-prata { border: 2px solid #9CA3AF; }
.nivel-card.nivel-bronze { border: 2px solid #B45309; }

.nivel-card .icon {
  font-size: 3.5rem;
  margin: 20px 0 24px;
  display: block;
}

.nivel-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--soft-gray);
}

/*===========================
  MISSÃO - IMPACTO EMOCIONAL
===========================*/
.missao-section {
  background: var(--warm-black);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.missao-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0.4;
}

.missao-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.missao-content h6 {
  color: var(--soft-rose) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
}

.missao-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 500 !important;
  color: white !important;
  margin-bottom: 40px !important;
}

.missao-content .porque-funciona-lista p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
}

.missao-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  color: white !important;
  font-weight: 400 !important;
}

.missao-content h3 span {
  color: var(--honey) !important;
}

.missao-content .tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 48px;
  line-height: 1.6;
}

/*===========================
  PRÉ-CADASTRO VIP - NOVO LAYOUT
===========================*/
:root {
  --vip-red-dark: #6B1520;
  --vip-red-medium: #8B1E2B;
  --vip-gold: #D4A853;
  --vip-gold-light: #E8C97A;
  --vip-gold-dark: #B8923F;
}

.pre-cadastro-vip-section {
  background: var(--vip-red-dark);
  background-image: 
    radial-gradient(ellipse at 20% 30%, rgba(139, 30, 43, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 30, 43, 0.4) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.08'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.pre-cadastro-vip-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vip-gold), transparent);
}

.pre-cadastro-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pre-cadastro-titulo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  font-style: italic;
  color: var(--vip-gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pre-cadastro-subtitulo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--vip-gold-light);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.pre-cadastro-subtitulo::before,
.pre-cadastro-subtitulo::after {
  content: '—';
  color: var(--vip-gold);
  margin: 0 15px;
  opacity: 0.6;
}

.pre-cadastro-descricao {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid de Benefícios */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.beneficios-grid .beneficio-card:nth-child(4),
.beneficios-grid .beneficio-card:nth-child(5) {
  grid-column: span 1;
}

@media (min-width: 992px) {
  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .beneficios-grid .beneficio-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    width: calc(100% - 25px);
    transform: translateX(50%);
  }
  
  .beneficios-grid .beneficio-card:nth-child(5) {
    grid-column: 3 / 4;
    margin-right: auto;
    width: calc(100% - 25px);
    transform: translateX(-50%);
  }
}

.beneficio-card {
  background: transparent;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.beneficio-card:hover {
  transform: translateY(-5px);
}

.beneficio-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficio-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--vip-gold);
  stroke-width: 1.5;
}

.beneficio-icon .percent-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--vip-gold);
  color: var(--vip-red-dark);
  font-size: 12px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficio-icon.calendar-icon {
  position: relative;
}

.beneficio-icon .dias-badge {
  position: absolute;
  background: var(--vip-gold);
  color: var(--vip-red-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.beneficio-icon .dias-badge small {
  font-size: 8px;
  font-weight: 600;
  margin-top: 2px;
}

.beneficio-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vip-gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.beneficio-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

.beneficio-card p strong {
  color: var(--vip-gold-light);
}

/* Botão VIP */
.vip-button-container {
  text-align: center;
  margin-top: 20px;
}

.btn-vip {
  display: inline-block;
  background: linear-gradient(135deg, var(--vip-gold) 0%, var(--vip-gold-dark) 100%);
  color: var(--vip-red-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px 60px;
  border: 3px solid var(--vip-gold-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 15px rgba(212, 168, 83, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.btn-vip:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(212, 168, 83, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
  background: linear-gradient(135deg, var(--vip-gold-light) 0%, var(--vip-gold) 100%);
}

/* Modal de Cadastro */
.modal-cadastro-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-cadastro-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-cadastro-content {
  background: linear-gradient(180deg, var(--vip-red-medium) 0%, var(--vip-red-dark) 100%);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--vip-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: modalSlideIn 0.3s ease;
}

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

.modal-cadastro-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: var(--vip-gold);
  text-align: center;
  margin-bottom: 8px;
}

.modal-cadastro-content > p {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--vip-gold);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  transform: scale(1.2);
}

/* Estilos do formulário dentro do modal */
.modal-cadastro-content .cadastro-form-completo button[type="submit"] {
  background: linear-gradient(135deg, var(--vip-gold) 0%, var(--vip-gold-dark) 100%);
  color: var(--vip-red-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.modal-cadastro-content .cadastro-form-completo button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--vip-gold-light) 0%, var(--vip-gold) 100%);
}

/* Responsivo */
@media (max-width: 991px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .beneficios-grid .beneficio-card:nth-child(4),
  .beneficios-grid .beneficio-card:nth-child(5) {
    transform: none;
    width: 100%;
    margin: 0;
  }
  
  .beneficios-grid .beneficio-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .pre-cadastro-vip-section {
    padding: 60px 0 80px;
  }
  
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 350px;
  }
  
  .beneficios-grid .beneficio-card:nth-child(5) {
    max-width: 100%;
  }
  
  .beneficio-card {
    padding: 20px 15px;
  }
  
  .btn-vip {
    padding: 16px 40px;
    font-size: 1rem;
  }
  
  .modal-cadastro-content {
    padding: 30px 20px;
  }
}

/* Manter compatibilidade com seção antiga caso necessário */
.cadastro-section {
  background: var(--deep-rose);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cadastro-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cadastro-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217,119,6,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cadastro-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cadastro-content h6 {
  color: var(--honey) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
}

.cadastro-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
  line-height: 1.25;
}

.cadastro-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cadastro-form {
  max-width: 420px;
  margin: 0 auto;
}

/*===========================
  FORMULÁRIO COMPLETO
===========================*/
.cadastro-form-completo {
  max-width: 500px;
  margin: 0 auto;
}

.cadastro-form-completo .form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cadastro-form-completo .form-field {
  width: 100%;
}

.cadastro-form-completo input,
.cadastro-form-completo select {
  width: 100%;
  padding: 7px 20px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: white;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
  color: var(--warm-black);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cadastro-form-completo select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.cadastro-form-completo select:disabled {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}

.cadastro-form-completo input:focus,
.cadastro-form-completo select:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 4px rgba(252, 211, 77, 0.2);
}

.cadastro-form-completo input::placeholder {
  color: var(--muted-stone);
}

.cadastro-form-completo .form-field-submit {
  margin-top: 8px;
}

.cadastro-form-completo button[type="submit"] {
  width: 100%;
  padding: 18px 32px;
  border-radius: 12px;
  background: var(--warm-black);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none;
}

.cadastro-form-completo button[type="submit"]:hover {
  background: var(--warm-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.4);
}

.cadastro-form-completo button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Estados de erro */
.cadastro-form-completo input.field-error,
.cadastro-form-completo select.field-error {
  border-color: #EF4444 !important;
  background-color: #FEF2F2;
  animation: shake 0.4s ease-in-out;
}

.cadastro-form-completo .error-message {
  color: #FEE2E2;
  font-size: 0.85rem;
  margin-top: 6px;
  padding-left: 4px;
  animation: fadeIn 0.3s ease;
}

/* Estilo de erro para checkbox */
.cadastro-form-completo .form-field-checkbox.field-error label {
  color: #FEE2E2;
}

.cadastro-form-completo .form-field-checkbox.field-error input[type="checkbox"] {
  outline: 2px solid #EF4444;
  outline-offset: 2px;
}

/* Estilo customizado para checkbox de aceite */
.cadastro-form-completo .form-field-checkbox input[type="checkbox"],
.modal-cadastro-content .form-field-checkbox input[type="checkbox"],
#aceite-termos {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  background-image: none !important;
  cursor: pointer !important;
  position: relative !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cadastro-form-completo .form-field-checkbox input[type="checkbox"]:hover,
.modal-cadastro-content .form-field-checkbox input[type="checkbox"]:hover,
#aceite-termos:hover {
  border-color: #d4af37 !important;
  background: rgba(212, 175, 55, 0.15) !important;
}

.cadastro-form-completo .form-field-checkbox input[type="checkbox"]:checked,
.modal-cadastro-content .form-field-checkbox input[type="checkbox"]:checked,
#aceite-termos:checked {
  background: #d4af37 !important;
  border-color: #d4af37 !important;
}

.cadastro-form-completo .form-field-checkbox input[type="checkbox"]:checked::after,
.modal-cadastro-content .form-field-checkbox input[type="checkbox"]:checked::after,
#aceite-termos:checked::after {
  content: '✓' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: #1a1a2e !important;
  font-size: 16px !important;
  font-weight: bold !important;
  line-height: 1 !important;
}

.cadastro-form-completo .form-field-checkbox input[type="checkbox"]:focus,
.modal-cadastro-content .form-field-checkbox input[type="checkbox"]:focus,
#aceite-termos:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4) !important;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 767px) {
  .cadastro-form-completo {
    max-width: 100%;
  }
  
  .cadastro-form-completo input,
  .cadastro-form-completo select {
    padding: 14px 16px;
    font-size: 16px; /* Previne zoom no iOS */
  }
}

/*===========================
  FOOTER - FECHAMENTO SUAVE
===========================*/
.footer-zaracao {
  background: var(--warm-white) !important;
  padding: 60px 0 40px;
}

.footer-zaracao .footer-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-zaracao .tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--soft-gray) !important;
  font-style: normal;
  margin: 8px 0;
}

.footer-zaracao .social-links {
  margin: 28px 0;
}

.footer-zaracao .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--deep-rose);
  color: white;
  margin: 0 6px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-zaracao .social-links a:hover {
  background: var(--warm-black);
  color: white;
  transform: translateY(-3px);
}

.footer-zaracao .footer-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-zaracao .footer-info p {
  color: var(--soft-gray) !important;
  font-size: 0.85rem;
}

/*===========================
  SCROLL E ANIMAÇÕES
===========================*/
html {
  scroll-behavior: smooth;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .amor-real-section,
  .porque-nasceu-section,
  #diferencial,
  .niveis-section,
  .missao-section {
    padding: 80px 0;
  }
}

/* Subtle reveal animation */
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Selection color */
::selection {
  background: var(--soft-rose);
  color: white;
}

/* Scrollbar sutil */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--warm-white);
}

::-webkit-scrollbar-thumb {
  background: var(--muted-stone);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--soft-gray);
}
