@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800;900&amp;family=Outfit:wght@300;400;500;600;700&amp;display=swap');

/* Variables & Design System */
:root {
  --bg-dark: #070b14;
  --bg-card: #0d1322;
  --bg-glow: #1a2542;
  --yellow-primary: #facc15;
  --yellow-hover: #eab308;
  --blue-bright: #38bdf8;
  --purple-bright: #a855f7;
  --purple-dark: #7c3aed;
  --text-white: #ffffff;
  --text-gray: #94a3b8;
  --text-dark: #0c0f17;
  --border-blue: rgba(56, 189, 248, 0.2);
  --border-purple: rgba(168, 85, 247, 0.2);
  --glow-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
  
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Glowing Elements */
body::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(56, 189, 248, 0.05) 50%, transparent 100%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(168, 85, 247, 0.05) 60%, transparent 100%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Top Urgency Banner */
.top-banner {
  background-color: var(--yellow-primary);
  color: var(--text-dark);
  text-align: center;
  padding: 12px 16px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
  z-index: 10;
  position: relative;
  width: 100%;
}

.top-banner span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Main Container */
.container {
  width: 100%;
  max-width: 600px; /* Locked mobile-first experience */
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  padding: 40px 20px 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  max-width: 95%;
}

.hero h1 .highlight-white {
  color: var(--text-white);
  display: block;
}

.hero h1 .highlight-blue {
  color: var(--blue-bright);
}

.hero h1 .highlight-purple {
  color: var(--purple-bright);
}

.hero h1 .highlight-yellow {
  color: var(--yellow-primary);
}

/* Capsule Badge */
.badge-2026 {
  background-color: #0b152d;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--yellow-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15), inset 0 0 10px rgba(56, 189, 248, 0.1);
  margin-bottom: 35px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.badge-2026:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 6px 25px rgba(56, 189, 248, 0.25);
}

/* Mockup Image Container */
.mockup-container {
  position: relative;
  width: 100%;
  margin: 15px auto 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-glow {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(56, 189, 248, 0.2) 50%, transparent 100%);
  filter: blur(35px);
  z-index: -1;
}

.mockup-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(168, 85, 247, 0.15);
  transition: transform 0.5s ease;
}

/* Intro & Bullet Checklist Section */
.checklist-section {
  padding: 10px 20px 35px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-paragraph {
  font-size: 1.05rem;
  font-weight: 500;
  color: #cbd5e1; /* Gray-blue text */
  line-height: 1.6;
  margin-bottom: 35px;
  text-align: center;
  max-width: 95%;
}

.checklist-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 24px 20px;
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-align: left;
}

.checklist-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.check-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  line-height: 1.3;
}

/* Yellow CTA Button */
.btn-yellow-cta {
  background-color: #dfa612; /* Solid Warm Gold */
  color: #05080f;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.35rem;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 18px;
  padding: 22px 24px;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(223, 166, 18, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  display: block;
}

.btn-yellow-cta:hover {
  background-color: #f1b71d;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(223, 166, 18, 0.3);
}

/* Trust Indicators Below Button */
.trust-indicators {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 5px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
}

.trust-item svg {
  flex-shrink: 0;
}

/* What You Will Receive Section (White Background) */
.what-you-receive-section {
  background-color: #ffffff;
  color: #0c0f17;
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  position: relative;
}

.receive-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.85rem;
  color: #0c0f17;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.receive-title .blue-text {
  color: #2563eb;
}

.receive-card {
  border: 2px dashed #2563eb;
  border-radius: 24px;
  padding: 35px 20px;
  background-color: #ffffff;
  margin-bottom: 25px;
  width: 100%;
  max-width: 100%;
}

.receive-card:last-child {
  margin-bottom: 0;
}

.receive-card-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.35rem;
  color: #1d4ed8;
  margin-bottom: 25px;
  text-align: center;
}

.receive-item {
  text-align: center;
  margin-bottom: 24px;
}

.receive-item:last-child {
  margin-bottom: 0;
}

.receive-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.5;
  display: inline-block;
  text-align: center;
  max-width: 90%;
}

.receive-emoji {
  display: inline-block;
  margin-right: 6px;
  font-size: 1.2rem;
  vertical-align: middle;
}

/* Ideal For You Section (Blue Background) */
.ideal-section {
  background-color: #2563eb; /* Vibrant Primary Blue */
  color: #ffffff;
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  position: relative;
}

.ideal-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.85rem;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.ideal-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
}

.ideal-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.ideal-card:hover {
  transform: translateY(-2px);
}

.ideal-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.15));
}

.ideal-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.4;
}

/* How to Use Section (White Background) */
.how-to-use-section {
  background-color: #ffffff;
  color: #0c0f17;
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  position: relative;
}

.how-to-use-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.85rem;
  color: #0c0f17;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.how-to-use-title .purple-text {
  color: var(--purple-bright);
}

.step-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 100%;
}

.step-card {
  background-color: #f8fafc; /* Very light premium gray-blue */
  border-radius: 30px;
  padding: 45px 20px 30px 20px;
  position: relative;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #e2e8f0;
  color: #475569;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.72rem;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.step-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  width: 100%;
}

.step-image {
  max-width: 85%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
}

.step-image:hover {
  transform: scale(1.02);
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: #64748b; /* Soft gray for high-quality body copy */
  line-height: 1.6;
  max-width: 95%;
  margin: 0 auto;
  text-align: center;
}

/* Thoughtful Design Section (Light Lavender Background) */
.thoughtful-section {
  background-color: #f5f6ff; /* Soft premium lavender background */
  color: #0c0f17;
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  position: relative;
}

.thoughtful-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.85rem;
  color: #0c0f17;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.thoughtful-title .blue-text {
  color: #2563eb;
}

.thoughtful-card {
  background-color: #2563eb; /* Vibrant Primary Blue */
  border-radius: 30px;
  padding: 55px 20px 45px 20px;
  position: relative;
  width: 100%;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
  margin-top: 25px;
}

.floating-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #10b981; /* Vibrant bright green */
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 12px 26px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.thoughtful-card-text {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.22rem;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.2px;
}

.thoughtful-card-text .yellow-text {
  color: #facc15; /* Vibrant warm gold yellow */
  display: inline-block;
}

.menina-mockup-container {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.menina-mockup-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid #ffffff;
}

.thoughtful-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  margin-bottom: 25px;
}

.thoughtful-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  width: 100%;
}

.thoughtful-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.thoughtful-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.thoughtful-list-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.4;
}

/* Exclusive Bonus Section (White Background) */
.bonus-section {
  background-color: #ffffff;
  color: #0c0f17;
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  position: relative;
}

.bonus-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.85rem;
  color: #0c0f17;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.bonus-subtitle {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.85rem;
  color: var(--purple-dark);
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.bonus-badge {
  background-color: var(--yellow-primary);
  color: #0c0f17;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
  margin-bottom: 45px;
  letter-spacing: 0.5px;
}

.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 100%;
}

.bonus-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 20px 20px 25px 20px;
  position: relative;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.15);
}

.bonus-card-badge {
  align-self: flex-end;
  background-color: #f3e8ff;
  color: var(--purple-dark);
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.72rem;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  z-index: 2;
}

.bonus-card-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.bonus-card-img {
  max-width: 75%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-card-img {
  transform: scale(1.03);
}

.bonus-card-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.12rem;
  color: #0c0f17;
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.3;
}

.bonus-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

/* Offer Section (Deep Blue Card) */
.offer-section {
  background-color: #ffffff;
  color: #0c0f17;
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-urgency-badge {
  background-color: #fff1f2;
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #e11d48;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.08);
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.offer-section-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.85rem;
  color: #0c0f17;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.offer-section-title .blue-text {
  color: #2563eb;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pricing-card {
  border-radius: 30px;
  padding: 40px 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.basic-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.basic-card .pricing-card-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.85rem;
  color: #0f172a;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.complete-card {
  background-color: #1e3a8a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(30, 58, 138, 0.25);
  margin-top: 15px;
}

.complete-card .pricing-card-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.85rem;
  color: var(--yellow-primary);
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.pricing-card-img-container {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-card-img {
  max-width: 85%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

.complete-card .pricing-card-img {
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
}

.pricing-receive-container {
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-receive-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  padding-left: 5px;
}

.basic-card .pricing-receive-title {
  color: #0f172a;
}

.complete-card .pricing-receive-title {
  color: #ffffff;
}

.basic-receive-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.basic-receive-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.basic-receive-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.5;
}

.recommended-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #10b981;
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  white-space: nowrap;
  z-index: 5;
}

.price-green {
  color: #00b67a !important;
}

.basic-card .price-main {
  font-family: var(--font-title);
  color: #00b67a !important;
  text-shadow: none !important;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -2.5px;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}

.basic-card .price-currency-basic {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  vertical-align: top !important;
  margin-top: 8px;
  margin-right: 2px;
  color: #00b67a !important;
  line-height: 1;
}

.basic-card .price-value-basic {
  font-size: 5.5rem;
  font-weight: 900;
  color: #00b67a !important;
  line-height: 1;
  letter-spacing: -4px;
}

.basic-card .price-cents-basic {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #00b67a !important;
  margin-top: 8px;
  letter-spacing: 0;
  line-height: 1;
}

.price-subtitle-dark {
  color: #475569 !important;
}

.savings-green {
  color: #00b67a !important;
}

.security-tag-dark {
  color: #64748b !important;
}

.btn-buy-green {
  background: #10b981 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35) !important;
  animation: pulse-green-button 2s infinite !important;
}

@keyframes pulse-green-button {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 35px rgba(16, 185, 129, 0.55), 0 0 15px rgba(16, 185, 129, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
  }
}

.basic-footer-badge {
  background-color: #e8fdf4;
  border: 1px solid #a7f3d0;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 15px;
}

.basic-footer-badge span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: #065f46;
  text-align: center;
}

.basic-footer-badge .down-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.offer-receive-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 18px;
  text-transform: uppercase;
  padding-left: 5px;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.offer-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.offer-list-item:first-child {
  padding-top: 0;
}

.offer-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.offer-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.offer-list-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: #ffffff;
  line-height: 1.5;
}

.offer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin-bottom: 30px;
}



.price-section {
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.price-slashed {
  text-decoration: line-through;
  color: #ef4444; /* red-500 */
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.price-main {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 4.5rem; /* Large size for 19,90 */
  color: var(--yellow-primary);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -2px;
}

.price-main span {
  font-size: 2rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: -4px;
}

/* Styled price for basic plan R$10 */
.price-currency-basic {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  vertical-align: super !important;
  margin-right: 2px !important;
  color: #16a34a;
}

.price-value-basic {
  font-size: 5rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
  letter-spacing: -3px;
}

.price-cents-basic {
  font-size: 2rem !important;
  font-weight: 700 !important;
  vertical-align: super !important;
  color: #16a34a;
  letter-spacing: 0;
}

.price-subtitle {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 15px;
  opacity: 0.95;
}

.price-savings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #10b981;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.savings-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}



/* Pulsing Buy Button */
.btn-buy {
  background: var(--yellow-primary);
  color: #0c0f17; /* Dark blue/black text */
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.35rem; /* Larger font size */
  text-transform: uppercase;
  border: none;
  border-radius: 14px;
  padding: 20px 24px;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(250, 204, 21, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulse-yellow-button 2s infinite;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.security-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.security-tag svg {
  fill: #facc15; /* Yellow lock */
}





.section-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.section-title span {
  color: var(--yellow-primary);
}



/* Warranty Section */
.warranty-section {
  padding: 0 20px 40px 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #ffffff; /* Establishes a seamless light background flow */
  overflow: hidden;
}

.warranty-card {
  background-color: #fdfbf7;
  border-radius: 24px;
  padding: 40px 25px 50px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.warranty-badge-container {
  width: 200px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.warranty-badge-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.warranty-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.warranty-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

.warranty-text p {
  margin: 0;
}

.warranty-text strong {
  font-weight: 800;
  color: #0f172a;
}

/* New Section Title */
.section-title-new {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #0f172a;
  text-transform: uppercase;
}

.section-title-new span {
  color: #1d4ed8;
  border-bottom: 4px solid var(--yellow-primary);
  display: inline-block;
}

/* Testimonials Carousel */
.testimonials-section {
  padding: 50px 20px;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.testimonials-carousel {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-img {
  width: 320px;
  height: auto;
  flex-shrink: 0;
  border-radius: 20px;
  scroll-snap-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Auto-Playing Testimonials Carousel */
.auto-carousel-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.auto-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.auto-carousel-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auto-carousel-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* Dots indicator */
.auto-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 0 4px 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.carousel-dot.active {
  background-color: #1d4ed8;
  width: 24px;
  border-radius: 4px;
}

.faq-section-new {
  padding: 50px 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-list-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 40px;
}

.faq-item-new {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question-new {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 20px;
  text-align: left;
  color: #0f172a;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.faq-q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.faq-q-text {
  flex-grow: 1;
  line-height: 1.4;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #ffffff;
}

.faq-answer-content-new {
  padding: 0 20px 24px 55px;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* Active FAQ state */
.faq-item-new.active {
  border-color: #3b82f6;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.faq-item-new.active .faq-q-icon {
  color: #2563eb;
}

.faq-item-new.active .faq-toggle-icon {
  background-color: #2563eb;
  color: #ffffff;
}

.faq-item-new.active .faq-toggle-icon line:first-child {
  opacity: 0;
}

.faq-item-new.active .faq-answer-new {
  max-height: 500px;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0 30px 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-gray);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--blue-bright);
}

.footer-copy {
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 0.65rem;
  opacity: 0.6;
  max-width: 90%;
  margin: 0 auto;
}

/* Animations */
@keyframes pulse-button {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 10px 35px rgba(34, 197, 94, 0.6), 0 0 20px rgba(34, 197, 94, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
  }
}

@keyframes pulse-yellow-button {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 35px rgba(250, 204, 21, 0.55), 0 0 15px rgba(250, 204, 21, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.35);
  }
}

/* Desktop optimization - center layout, add background image or frames for tablet/desktop */
@media (min-width: 768px) {
  body {
    background-color: #03060a;
  }
  
  /* Create an elegant container wrapper to look like a phone mockup on Desktop */
  .desktop-wrapper {
    max-width: 480px;
    margin: 40px auto;
    background-color: var(--bg-dark);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border-radius: 40px;
    overflow: hidden;
    border: 8px solid #1e293b;
    position: relative;
  }
  
  .top-banner {
    position: sticky;
    top: 0;
  }

  /* Responsive Grid for actual PC viewport (when not using mobile mockup wrapper) */
  .step-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  /* Force vertical mobile stacking inside the elegant phone wrapper mockup */
  .desktop-wrapper .step-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .desktop-wrapper .bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .desktop-wrapper .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

/* Popup Modal Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-modal {
  background-color: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  position: relative;
  animation: popup-bounce 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popup-bounce {
  from {
    transform: scale(0.9) translateY(10px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}

.popup-header {
  background: linear-gradient(90deg, #d31a1a 0%, #ea580c 100%);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.popup-header-text {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.72rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
  padding-right: 15px; /* Leave space for close button */
}

.popup-close-btn {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.2s ease;
}

.popup-close-btn:hover {
  background: rgba(0, 0, 0, 0.4);
}

.popup-body {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.popup-headline {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.35rem;
  color: #0f172a;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 18px;
}

.popup-headline .highlight-price {
  color: #ea580c;
  border-bottom: 3px solid #facc15;
  display: inline-block;
}

.popup-pricing-box {
  background: linear-gradient(135deg, #fffdf5 0%, #fff7ed 100%);
  border: 1px dashed #fde68a;
  border-radius: 16px;
  padding: 14px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 18px;
}

.popup-price-regular {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 4px;
}

.popup-price-deal {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 2.5rem;
  color: #d97706;
  line-height: 1;
  margin-bottom: 10px;
}

.popup-price-deal span {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: super;
}

.popup-saving-badge {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.popup-saving-icon {
  font-size: 0.9rem;
}

.popup-features-box {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 14px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 18px;
}

.popup-features-title {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-align: left;
}

.popup-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.popup-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.feature-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.feature-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
}

.feature-muted {
  color: #94a3b8;
  font-weight: 500;
}

.feature-highlight {
  color: #d97706;
  font-weight: 700;
}

.popup-upgrade-btn {
  background-color: #059669;
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.popup-upgrade-btn:hover {
  background-color: #047857;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.upgrade-btn-check {
  font-size: 1.1rem;
}

.upgrade-btn-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.popup-upgrade-btn:hover .upgrade-btn-arrow {
  transform: translateX(3px);
}

.popup-decline-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.popup-decline-link:hover {
  color: #0f172a;
  text-decoration: underline;
}
