:root {
  /* Colors */
  --color-primary: #059669; /* Green for buttons */
  --color-primary-light: #D1FAE5; /* Light green for microcopy */
  --color-secondary: #BE185D; /* Dark Pink */
  --color-accent: #FDF2F8; /* Very Light Pink for cards */
  --color-accent-dark: #F472B6; /* More visible Light Pink for text highlight */
  --color-bg: #FFFFFF; /* White background */
  --color-text: #000000; /* Black for text */
  --color-text-light: #4B5563; /* Muted text */
  --color-white: #FFFFFF;
  
  /* Typography */
  --font-sans: 'Poppins', sans-serif;
  --font-headline: 'Bricolage Grotesque', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Container */
  --container-max-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

img {
  max-width: 100%;
  display: block;
}

h1 {
  font-family: var(--font-headline);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2, h3, h4 {
  font-family: var(--font-sans);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  color: var(--color-text-light);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  padding: 60px 15px; /* Standardized spacing with side padding for mobile */
  width: 100%;
  display: flex;
  justify-content: center;
}

.container.text-center {
  align-items: center;
  text-align: center;
}

.container.text-center h2,
.container.text-center p {
  width: 100%;
  text-align: center;
}
.text-left { text-align: left; }
.text-accent { color: var(--color-accent-dark); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.font-bold { font-weight: 800; }

/* Components */

/* 0. Top Bar */
.top-bar {
  background-color: #e11d48; /* Red color */
  color: #000000;
  padding: var(--spacing-xs) var(--spacing-md);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  width: 100%;
  z-index: 1000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 1. Hero */
.hero {
  padding: 40px 0;
  background: radial-gradient(circle at top right, rgba(190, 24, 93, 0.05), transparent);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
  font-weight: 800;
  text-align: center;
}

.hero .subheadline {
  font-size: clamp(1.125rem, 4vw, 1.25rem);
  margin-bottom: var(--spacing-md);
  max-width: 600px;
  text-align: center;
}

.video-showcase {
  background: linear-gradient(180deg, #ffffff 0%, #fdf2f8 100%);
  border: 1px solid rgba(190, 24, 93, 0.1);
  border-radius: 2rem;
  padding: 1.5rem;
  margin: var(--spacing-xl) auto;
  width: 100%;
  max-width: 400px; /* Reduced width for vertical video */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.video-title {
  font-size: 1.25rem;
  color: var(--color-secondary);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.video-support {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.video-wrapper {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 177.77%; /* 9:16 Aspect Ratio (16 / 9 = 1.7777...) */
  background: #000;
}

.video-wrapper vturb-smartplayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.price-callout {
  font-size: 1.125rem;
  color: var(--color-text); /* Black */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.price-callout strong {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 800;
}

.hero .microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  justify-content: center;
}

.hero .microcopy span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #065F46;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--color-primary-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

.hero .microcopy span::before {
  content: '✓';
  color: var(--color-primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  width: 100%;
  max-width: 340px;
  margin-top: 1rem; /* Closer to affiliated element */
  animation: pulse-subtle 2s infinite ease-in-out;
}

@keyframes pulse-subtle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px 0 rgba(5, 150, 105, 0.39);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.23);
  background-color: #047857;
}

/* 2. Prova Visual */
.visual-proof {
  background-color: var(--color-accent);
}

.visual-proof h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: var(--spacing-md);
}

.visual-proof .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.image-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
  contain: paint;
}

.image-card img {
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.image-card .price-tag {
  position: absolute;
  bottom: var(--spacing-sm);
  right: var(--spacing-sm);
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
}

/* 3. Oportunidade */
.opportunity {
  background-color: var(--color-bg);
}

.opportunity .blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  margin-bottom: 2rem;
}

.opt-card {
  background: var(--color-accent);
  padding: 2.5rem 2rem;
  border-radius: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(190, 24, 93, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.opt-card .icon {
  width: 54px;
  height: 54px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.opt-card h3 {
  margin-bottom: 1rem;
  color: var(--color-secondary);
  font-size: 1.5rem;
  font-weight: 800;
}

.opt-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.section-support {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.6;
}

/* 4. Benefícios */
.benefits {
  background-color: var(--color-white);
}

.benefits-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.benefit-item {
  background: #fdf2f8; /* Pink tint */
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(190, 24, 93, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.benefit-item .check {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.benefit-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.benefit-item strong {
  display: block;
  color: var(--color-secondary);
}

/* 5. Para quem é */
.for-who {
  background-color: var(--color-bg);
}

.for-who .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.who-card {
  padding: 2rem;
  border-radius: 2rem;
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.who-card.positive {
  background: #ecfdf5; /* Light Green */
  border: 2px solid #10b981;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
  transform: scale(1.02);
}

.who-card.negative {
  background: #fffafa; /* Very faint Red/Grey */
  border: 1px dashed #fecaca;
  opacity: 0.8;
  filter: grayscale(0.2);
}

.who-card h3 {
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.who-card.positive h3 {
  color: #065f46;
}

.who-card.negative h3 {
  color: #991b1b;
}

.who-card ul {
  list-style: none;
  padding: 0;
}

.who-card ul li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  gap: 0.5rem;
  line-height: 1.4;
}

.who-card.positive ul li::before {
  content: '✓';
  color: #10b981;
  font-weight: 900;
}

.who-card.negative ul li::before {
  content: '✕';
  color: #ef4444;
  font-weight: 700;
}

/* 6. Prova Social */
.social-proof {
  background-color: var(--color-white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.proof-card {
  background: #f8fafc;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
  height: auto;
}

.proof-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* 6.5 Bônus */
.bonus {
  background-color: var(--color-white);
}

.bonus-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: var(--spacing-xl) 0;
  width: 100%;
}

@media (min-width: 768px) {
  .bonus-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.bonus-item {
  background: #fdf2f8; /* Pink tint */
  padding: 1.25rem 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(190, 24, 93, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bonus-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(190, 24, 93, 0.05);
}

.bonus-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.bonus-item h4 {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.bonus-item p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.4;
  margin: 0;
}

.bonus-summary {
  margin-top: var(--spacing-lg);
  line-height: 1.1;
  text-align: center;
  width: 100%;
}

.free-bonus-container p {
  margin: 0;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
}

.free-bonus-line-3 {
  color: #38a169 !important; /* Closer to the bright green in the photo */
  font-size: 1.1rem !important;
  font-weight: 900;
  margin-top: 0 !important;
}

.text-pink {
  color: var(--color-secondary);
}

/* 7. Oferta */
.offer {
  background-color: var(--color-bg);
  padding: 30px 0;
}

.offer-title {
  font-size: 1.75rem; /* Standard heading size */
  font-weight: 800;
  margin-bottom: 2rem;
  color: #000000;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .offer-title {
    font-size: 2.25rem;
  }
}

/* Carousel Styles */
.swipe-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: -5px;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: lowercase;
}

.swipe-arrow {
  animation: swipe-move 1.5s infinite;
}

@keyframes swipe-move {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(5px); opacity: 1; }
}

@media (min-width: 768px) {
  .swipe-indicator {
    display: none;
  }
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
  align-items: center; /* Prevent vertical stretching of items */
}

.carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--spacing-md);
  width: 100%;
}

@media (min-width: 768px) {
  .carousel-dots {
    display: none;
  }
}

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

.dot.active {
  background-color: var(--color-secondary);
  transform: scale(1.2);
}

.carousel:active {
  cursor: grabbing;
}

.carousel > * {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* Specific item styling for carousels to ensure breathing room */
.image-card,
.opt-card,
.proof-card {
  width: calc(100% - 40px); /* 20px padding on each side */
  margin-left: auto;
  margin-right: auto;
}

/* Recovery for Desktop */
@media (min-width: 768px) {
  .carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    overflow-x: visible;
    cursor: default;
    gap: var(--spacing-lg);
  }
  .carousel > * {
    flex: none;
    display: block;
  }
  .image-card,
  .opt-card,
  .proof-card {
    width: 100%;
    margin: 0;
  }
}

/* Opportunity Section Specific Spacing */
.opportunity h2 {
  margin-bottom: 0px;
}

.opportunity .swipe-indicator {
  margin-top: 2rem; /* Espaço maior entre título e indicador */
  margin-bottom: 0px;
}

.opportunity .carousel {
  margin-top: 1.5rem; /* Pequeno espaço entre o texto "arraste para o lado" e o card */
  padding: 0;
}

.opportunity .carousel-dots {
  margin-top: 1.5rem; /* Pequeno espaço entre o card e as bolinhas de paginação */
}

.offer-title {
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.offer-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-anchor {
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xl);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  width: 100%;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.pricing-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 2rem;
  width: 100%;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 640px) {
  .pricing-card {
    padding: 2rem;
  }
}

.pricing-card.featured {
  border: 4px solid #00966d;
  background-color: #fdf2f8; /* Faint pink like in the image */
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0, 150, 109, 0.15); /* Stronger thematic shadow */
}

@media (min-width: 768px) {
  .pricing-card.featured {
    transform: scale(1.05); /* Vertical emphasis */
  }
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #00966d;
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: clamp(1.75rem, 8vw, 2.25rem);
  margin-bottom: 0.75rem;
  color: #BE185D;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-card .subtext {
  font-size: 1.1rem;
  color: #6B7280;
  margin-bottom: 2rem;
}

.price {
  margin-bottom: 1.5rem;
}

.price .old {
  text-decoration: line-through;
  font-size: 1.25rem;
  color: #EF4444;
  opacity: 1;
  font-weight: 700;
}

.price .new {
  font-size: clamp(3rem, 15vw, 4.5rem); /* Responsive font size */
  font-weight: 900;
  color: #00966d;
  display: block;
  line-height: 1;
  margin-top: 0.5rem;
}

.pricing-list {
  list-style: none;
  margin-bottom: var(--spacing-lg);
  text-align: left;
  width: 100%;
}

.pricing-list li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-list li::before {
  content: '✓';
  color: #00966d;
  font-weight: 900;
}

/* 8. Garantia */
.warranty {
  background-color: var(--color-white);
}

.warranty-content {
  max-width: 600px;
  margin: 0 auto;
}

.seals {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.seal {
  background: var(--color-bg);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 8. Guarantee */
.guarantee {
  background-color: var(--color-accent);
  padding-top: 20px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-sm);
}

@media (min-width: 768px) {
  .guarantee-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-lg);
}

.guarantee-badge {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-bottom: var(--spacing-md);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.guarantee-item h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-secondary);
}

.guarantee-item p {
  font-size: 0.9375rem;
  max-width: 400px;
}

/* 9. FAQ */
.faq {
  background-color: var(--color-secondary);
}

.faq h2 {
  color: var(--color-white);
}

.faq-container {
  max-width: 700px;
  margin: var(--spacing-xl) 0 0;
}

.faq-item {
  background: var(--color-white);
  margin-bottom: var(--spacing-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: var(--spacing-md);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--color-white);
}

.faq-answer p {
  padding: 0 var(--spacing-md) var(--spacing-md);
  font-size: 0.9375rem;
}

/* Footer */
footer {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-text);
  color: var(--color-white);
  text-align: left;
  font-size: 0.875rem;
}

/* Responsive */
@media (min-width: 768px) {
  .pricing-grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
  
  .pricing-card.featured {
    transform: scale(1.1);
  }
  
  .hero {
    text-align: center;
  }
  
  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 900px;
  }
  
  .hero .microcopy {
    justify-content: center;
  }
  
  .btn {
    width: auto;
    min-width: 300px;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--color-accent);
  padding: 20px 15px; /* Reduzi o padding interno */
  border-radius: 32px; /* Bordas bem arredondadas como solicitado */
  max-width: 88%;
  width: 360px; /* Reduzi um pouco a largura total */
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(190, 24, 93, 0.1);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 95vh;
  overflow-y: auto;
}

.modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.timer-container {
  margin: 0.5rem 0;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
}

.timer-container p {
  font-size: 0.65rem;
  margin-bottom: 2px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timer {
  font-size: 1.25rem;
  font-weight: 800;
  color: #e11d48; /* Red timer */
  font-family: var(--font-mono);
}

.promo-description {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promo-list li {
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.3;
}

.promo-pricing {
  margin-bottom: 1rem;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
}

.promo-badge {
  background: #e11d48;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 1rem;
}

.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.promo-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 1.5rem 0;
  background: #f8fafc;
  padding: 15px;
  border-radius: 8px;
}

.promo-item {
  display: flex;
  flex-direction: column;
}

.promo-item .label {
  font-size: 0.75rem;
  color: #64748b;
}

.promo-item .val {
  font-weight: 700;
}

.promo-item.highlight .val {
  color: #e11d48;
}

.promo-divider {
  font-weight: 800;
  color: #cbd5e1;
}

.total-promo {
  border-top: 1px dashed #cbd5e1;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.total-promo .price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
}

/* Sales Notification */
.sales-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-white);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
  border-left: 4px solid var(--color-primary);
}

.sales-notification.active {
  transform: translateY(0);
}

.sales-icon {
  background: var(--color-primary-light);
  color: var(--color-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sales-content p {
  font-size: 0.75rem;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0;
}

.sales-content strong {
  color: var(--color-secondary);
}

@media (max-width: 480px) {
  .sales-notification {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
}
