/* ==========================================================================
   RELAXEI 9.9 - LANDING PAGE CSS (PALETA OFICIAL DE CORES)
   Paleta da Marca:
   - Azul Principal: #2E8DD6
   - Amarelo Sol: #F9C800
   - Branco Puro: #FFFFFF
   - Preto: #000000
   ========================================================================== */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

:root {
  --brand-blue: #2E8DD6;
  --brand-blue-dark: #1E72B3;
  --brand-blue-deep: #0D4E85;
  --brand-cream: #F8FAFC;
  --brand-white: #FFFFFF;
  --brand-yellow: #F9C800;
  --brand-black: #000000;
  
  --text-dark: #0F172A;
  --text-muted: #475569;
  
  --radius-card: 24px;
  --radius-input: 14px;
  --radius-pill: 9999px;
  
  --shadow-card: 0 14px 35px -10px rgba(46, 141, 214, 0.15), 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-btn: 0 10px 25px rgba(46, 141, 214, 0.35), 0 0 15px rgba(249, 200, 0, 0.25);
  
  --transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Pretendard', -apple-system, sans-serif;
  background-color: #CBD5E1;
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Container Principal */
.page-container {
  width: 100%;
  max-width: 520px;
  background: var(--brand-white);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* 1. Faixa Superior / Ribbon */
.top-ribbon {
  position: relative;
  z-index: 2;
  background: var(--brand-blue);
  color: #FFFFFF;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(46, 141, 214, 0.2);
}

.top-ribbon .heart {
  color: #FFFFFF;
  display: inline-block;
  animation: pulseHeart 1.5s infinite ease-in-out;
}

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

/* 2. Conteúdo da Primeira Seção (Hero) */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 22px 18px 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
}

/* Logo */
.logo-wrapper {
  margin-bottom: 16px;
  display: block;
}

.logo-img {
  max-width: 115px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Copy Block */
.copy-header {
  margin-bottom: 16px;
  max-width: 460px;
}

.copy-paragraph {
  font-size: 15px;
  line-height: 1.48;
  color: var(--brand-blue);
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0 4px;
}

/* Tag Amarela Oficial #F9C800 */
.yellow-tag {
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 4px;
}

.copy-headline {
  font-family: 'Pretendard', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.32;
  color: var(--brand-blue);
}

.copy-headline .mystery-highlight {
  background: linear-gradient(180deg, transparent 55%, var(--brand-yellow) 55%);
  color: var(--brand-blue-dark);
  font-weight: 900;
  font-size: 25px;
  padding: 0 6px;
  border-radius: 4px;
}

.copy-headline .sub-blue {
  color: var(--brand-blue);
  font-size: 19px;
  font-weight: 800;
  display: block;
  margin-top: 4px;
}

/* Imagem da Caixa Misteriosa */
.mystery-box-area {
  position: relative;
  width: 100%;
  max-width: 140px;
  margin: 6px auto 16px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mystery-box-img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  background: transparent;
  filter: drop-shadow(0 0 20px rgba(249, 200, 0, 0.85));
  transition: transform var(--transition);
}

.mystery-box-img:hover {
  transform: scale(1.03);
}

/* Card do Formulário de Captura VIP */
.form-card {
  width: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-card);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(46, 141, 214, 0.15);
  border-top: 4px solid var(--brand-yellow);
  position: relative;
  z-index: 2;
}

.form-callout {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--brand-blue);
  font-weight: 700;
  margin: 0 -14px 20px -14px;
}

.form-callout .yellow-text {
  background-color: var(--brand-yellow);
  color: var(--brand-black);
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
}

.form-callout .underline-text {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
  color: var(--brand-blue);
}

.lead-form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.field-wrapper {
  position: relative;
  width: 100%;
}

.field-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 18px;
  pointer-events: none;
}

.form-input-field {
  width: 100%;
  height: 54px;
  padding: 0 18px 0 48px;
  border-radius: var(--radius-input);
  border: 2px solid #CBD5E1;
  background-color: #F8FAFC;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  transition: all 0.25s ease;
}

.form-input-field:focus {
  border-color: var(--brand-blue);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(46, 141, 214, 0.12);
}

.form-input-field:focus + .field-icon {
  color: var(--brand-blue);
}

/* Botão CTA Principal */
.btn-vip-submit {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--brand-blue);
  color: #FFFFFF;
  font-family: 'Pretendard', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  margin-top: 4px;
}

.btn-vip-submit::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: rotate(25deg);
  animation: shimmerSweep 3.5s infinite;
}

@keyframes shimmerSweep {
  0% { left: -60%; }
  30% { left: 140%; }
  100% { left: 140%; }
}

.btn-vip-submit .gem-icon {
  color: var(--brand-yellow);
  font-size: 20px;
}

.btn-vip-submit:hover {
  transform: translateY(-2px);
  background: var(--brand-blue-dark);
  box-shadow: 0 14px 30px rgba(46, 141, 214, 0.45);
}

.form-trust-info {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.form-trust-info i {
  color: var(--brand-blue);
}

/* ==========================================================================
   SEGUNDA SESSÃO (DESIGN VIBRANTE & HARMONIOSO COM TOM UNIFORME)
   ========================================================================== */
.section-two-wrapper {
  padding: 42px 20px 46px 20px;
  background-color: #F0F6FF;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(46, 141, 214, 0.15);
  border-bottom: 1px solid rgba(46, 141, 214, 0.15);
}

.section-two-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-yellow), transparent);
  border-radius: 999px;
}

.section-badge-pill {
  background: #EFF6FF;
  color: var(--brand-blue);
  border: 1px solid rgba(46, 141, 214, 0.22);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(46, 141, 214, 0.08);
}

.sec2-headline {
  font-family: 'Pretendard', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-blue);
  margin-bottom: 20px;
  line-height: 1.28;
}

.sec2-story-card {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 22px 20px;
  border: 1.5px solid rgba(46, 141, 214, 0.15);
  box-shadow: 0 10px 30px rgba(46, 141, 214, 0.08);
  margin-bottom: 28px;
  width: 100%;
  position: relative;
}

.story-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--brand-blue);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  box-shadow: 0 4px 12px rgba(46, 141, 214, 0.15);
}

.sec2-text-p1 {
  font-size: 15px;
  color: #475569;
  font-weight: 600;
  line-height: 1.58;
  margin-bottom: 12px;
}

.sec2-text-p2 {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.5;
}

.sec2-text-p2 .yellow-highlight {
  background-color: var(--brand-yellow);
  color: var(--brand-black);
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
}

.sec2-subheading {
  font-family: 'Pretendard', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 22px;
}

.bento-opportunity-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.bento-hero-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%);
  border-radius: 24px;
  padding: 24px 20px;
  border: 2px solid var(--brand-yellow);
  box-shadow: 0 12px 32px rgba(249, 200, 0, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bento-hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(249, 200, 0, 0.38);
}

.bento-badge {
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(249, 200, 0, 0.4);
}

.bento-img-wrap {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.bento-box-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(249, 200, 0, 0.9));
  animation: floatHeroBox 4.5s ease-in-out infinite;
}

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

.bento-hero-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1.35;
}

.bento-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
}

.bento-mini-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 18px 14px;
  border: 1.5px solid rgba(46, 141, 214, 0.18);
  box-shadow: 0 6px 20px rgba(46, 141, 214, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.bento-mini-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  box-shadow: 0 12px 28px rgba(46, 141, 214, 0.18);
}

.bento-mini-img-wrap {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #F8FAFC;
  border: 2px solid rgba(46, 141, 214, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.bento-mini-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.bento-mini-card:hover .bento-mini-img {
  transform: scale(1.08);
}

.bento-mini-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-black);
  line-height: 1.35;
}

.sec2-footer-info {
  font-size: 14px;
  color: #475569;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 440px;
}

.sec2-footer-info .blue-bold {
  color: var(--brand-blue);
  font-weight: 800;
}

.btn-sec2-cta {
  width: 100%;
  height: 58px;
  border-radius: var(--radius-pill);
  background: var(--brand-blue);
  color: #FFFFFF;
  font-family: 'Pretendard', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-sec2-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: rotate(25deg);
  animation: shimmerSweep 3.5s infinite;
}

.btn-sec2-cta .gem-icon {
  color: var(--brand-yellow);
  font-size: 20px;
}

.btn-sec2-cta:hover {
  transform: translateY(-3px) scale(1.01);
  background: var(--brand-blue-dark);
  box-shadow: 0 15px 35px rgba(46, 141, 214, 0.5);
}

/* ==========================================================================
   TERCEIRA SESSÃO (RELAXEI 9.9 - MISTERIO DA CAIXA - BRANCO PURISSIMO)
   ========================================================================== */
.section-three-wrapper {
  padding: 44px 20px 48px 20px;
  background: #FFFFFF;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border-top: 1px solid #E2E8F0;
}

.sec3-headline {
  font-family: 'Pretendard', sans-serif;
  font-size: 21px;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1.32;
  margin: 0 -10px 22px -10px;
}

.sec3-headline .mystery-highlight {
  background: linear-gradient(180deg, transparent 55%, var(--brand-yellow) 55%);
  color: var(--brand-blue-dark);
  font-weight: 900;
  padding: 0 6px;
  border-radius: 4px;
}

.sec3-copy-card {
  background: #F8FAFC;
  border-radius: 22px;
  padding: 22px 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 28px;
  width: 100%;
}

.sec3-p-text {
  font-size: 15px;
  color: #475569;
  font-weight: 600;
  line-height: 1.58;
  margin-bottom: 12px;
}

.sec3-p-highlight {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.5;
}

.sec3-p-highlight .yellow-tag {
  margin-top: 0;
}

.sec3-p-highlight .underline-link {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sec3-mystery-area {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 10px auto 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec3-mystery-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 22px rgba(249, 200, 0, 0.85));
  animation: floatSec3 4.5s ease-in-out infinite;
}

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

.teaser-bubble {
  position: absolute;
  background: #FFFFFF;
  border: 2px solid var(--brand-yellow);
  color: var(--brand-black);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(249, 200, 0, 0.35);
  z-index: 2;
  pointer-events: none;
  animation: floatBubble 3.5s ease-in-out infinite alternate;
}

.teaser-left {
  top: 15%;
  left: -15px;
  transform: rotate(-12deg);
  animation-delay: 0s;
}

.teaser-right {
  bottom: 20%;
  right: -15px;
  transform: rotate(10deg);
  animation-delay: 1.5s;
}

@keyframes floatBubble {
  0% { transform: translateY(0) scale(0.98); }
  100% { transform: translateY(-6px) scale(1.04); }
}

/* ==========================================================================
   QUARTA SESSÃO (CARROSSEL COM AS IMAGENS EXATAS & ALTURA DINÂMICA PERFEITA)
   ========================================================================== */
.section-four-wrapper {
  padding: 46px 18px 52px 18px;
  background: linear-gradient(180deg, #2E8DD6 0%, #1E72B3 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border-top: 3px solid var(--brand-yellow);
  overflow: hidden;
}

.section-four-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(249, 200, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.sec4-badge-pill {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sec4-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 25px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Viewport com Altura Fixa (Seção Estática — Não Cresce/Encolhe Entre Slides) */
.carousel-viewport {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 545px;
  overflow: hidden;
  border-radius: 22px;
  margin: 0 auto 16px auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  height: 100%;
  align-items: stretch;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 2px;
}

/* Cards de Depoimentos Recriados — Padrão único (estilo Facebook) */
.social-card.fb-card {
  width: 100%;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 12px 13px 10px;
  text-align: left;
  color: #1C1C1E;
  font-size: 12.5px;
  line-height: 1.45;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.fb-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

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

.fb-name {
  font-weight: 800;
  color: #050505;
  font-size: 12.5px;
  margin: 0;
}

.fb-time {
  font-size: 10.5px;
  color: #65676B;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 1px 0 0;
}

.fb-text {
  font-size: 12.5px;
  color: #050505;
  margin: 0 0 8px;
}

.fb-stats {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: #65676B;
  padding: 5px 0;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 3px;
}

.fb-reacts {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fb-reacts i {
  font-size: 8.5px;
  border-radius: 50%;
  padding: 3px;
  color: #FFFFFF;
}

.fb-reacts i.like {
  background: #1877F2;
}

.fb-reacts i.love {
  background: #F33E58;
  margin-left: -4px;
}

.fb-actions {
  display: flex;
  justify-content: space-around;
  font-size: 10.5px;
  font-weight: 700;
  color: #65676B;
  padding-top: 3px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EEEEEE;
}

.fb-actions span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Resposta da marca (drinkrelaxei) */
.fb-reply {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  min-width: 0;
}

.fb-reply .fb-avatar {
  width: 18px;
  height: 18px;
}

.fb-reply-text {
  font-size: 11px;
  color: #65676B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.fb-reply-text strong {
  color: #050505;
  font-weight: 800;
}

/* Controles de Navegação */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
  background: #FFFFFF;
  color: var(--brand-blue);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.carousel-dot.active {
  background: var(--brand-yellow);
  width: 26px;
  border-radius: 999px;
  box-shadow: 0 0 12px var(--brand-yellow);
}

.btn-sec4-cta {
  width: 100%;
  max-width: 440px;
  height: 58px;
  border-radius: var(--radius-pill);
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-family: 'Pretendard', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-sec4-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: rotate(25deg);
  animation: shimmerSweep 3.5s infinite;
}

.btn-sec4-cta .gem-icon {
  color: var(--brand-black);
  font-size: 20px;
}

.btn-sec4-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   QUINTA SESSÃO (RELAXEI 9.9 - FÓRMULA / BENEFÍCIOS DO PRODUTO)
   ========================================================================== */
.section-five-wrapper {
  padding: 46px 20px 50px 20px;
  background: #FFFFFF;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border-top: 1px solid #E2E8F0;
  overflow: hidden;
}

.section-five-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-yellow), transparent);
  border-radius: 999px;
}

.sec5-headline {
  font-family: 'Pretendard', sans-serif;
  font-size: 25px;
  font-weight: 900;
  color: var(--brand-blue);
  margin-bottom: 28px;
  line-height: 1.3;
}

.sec5-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 32px;
}

.sec5-feature-card {
  width: 100%;
  background: #F8FAFC;
  border-radius: 20px;
  padding: 20px 20px 22px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(46, 141, 214, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}

.sec5-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(46, 141, 214, 0.14);
  border-color: rgba(46, 141, 214, 0.3);
}

.sec5-feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec5-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background: var(--brand-blue);
  color: #FFFFFF;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(46, 141, 214, 0.35);
}

.sec5-feature-card:nth-child(even) .sec5-feature-icon {
  background: var(--brand-yellow);
  color: var(--brand-black);
  box-shadow: 0 6px 16px rgba(249, 200, 0, 0.4);
}

.sec5-feature-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-blue-deep);
}

.sec5-feature-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

.sec5-cta-lead {
  font-family: 'Pretendard', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 16px;
}

.simple-footer {
  margin-top: auto;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #94A3B8;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
}

/* ==========================================================================
   MODAL DE CONFIRMAÇÃO VIP
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  width: 100%;
  max-width: 440px;
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.25);
  border-top: 5px solid var(--brand-yellow);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--text-dark);
  position: relative;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-top-bar {
  padding: 16px 20px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F1F5F9;
}

.modal-badge-tag {
  background: #EFF6FF;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(46, 141, 214, 0.15);
}

.modal-badge-tag .dot-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--brand-yellow);
}

.modal-close-x {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  color: #64748B;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-x:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.modal-content-inner {
  padding: 24px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.check-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

.modal-heading {
  font-family: 'Pretendard', sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: var(--brand-black);
  line-height: 1.3;
  margin-bottom: 10px;
}

.modal-heading .modal-user-highlight {
  color: var(--brand-blue);
  background: linear-gradient(180deg, transparent 60%, rgba(249, 200, 0, 0.4) 60%);
  padding: 0 4px;
  font-weight: 900;
}

.modal-subtext {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 0 6px;
}

.modal-subtext .highlight-bold {
  color: var(--text-dark);
  font-weight: 700;
}

.modal-subtext .yellow-highlight {
  background-color: var(--brand-yellow);
  color: var(--brand-black);
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.countdown-widget-wrap {
  width: 100%;
  margin-bottom: 22px;
}

.countdown-widget-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.countdown-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown-column {
  background-color: var(--brand-yellow);
  border-radius: 14px;
  padding: 10px 4px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(249, 200, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.countdown-num {
  font-family: 'Pretendard', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1;
}

.countdown-txt {
  font-size: 10px;
  font-weight: 900;
  color: #453400;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.btn-whatsapp-group {
  width: 100%;
  height: 54px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-family: 'Pretendard', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.btn-whatsapp-group .wa-icon {
  font-size: 22px;
}

.btn-whatsapp-group:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

.modal-trust-micro {
  font-size: 11px;
  color: #94A3B8;
  font-weight: 600;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 640px) {
  body {
    padding: 24px 0;
  }
  
  .page-container {
    border-radius: 28px;
    overflow: hidden;
    min-height: auto;
  }
}
