/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  /* Colors */
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #14b8a6;
  --primary-bg-light: rgba(13, 148, 136, 0.05);
  --accent: #7c3aed;
  --accent-dark: #6d28d9;
  --cta: #ff530d;
  --cta-hover: #e64a0c;
  --cta-pulse: rgba(255, 83, 13, 0.35);
  
  --bg-main: #f8fafc;
  --bg-white: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  
  /* Fonts */
  --font-fredoka: 'Fredoka', sans-serif;
  --font-nunito: 'Nunito', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-premium: 0 25px 50px -12px rgba(13, 148, 136, 0.15);
  
  /* Borders */
  --radius-lg: 24px;
  --radius-xl: 32px;
}

.fredoka_beeaef0c-module__p94g-G__variable {
  --font-fredoka: 'Fredoka', sans-serif;
}

.nunito_2c63e403-module__JGQZ3W__variable {
  --font-nunito: 'Nunito', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-fredoka);
  font-weight: 700;
  color: var(--text-main);
}

/* Timer Bar */
.timer-bar {
  background-color: var(--cta);
  color: white;
  padding: 10px 0;
  text-align: center;
  font-family: var(--font-fredoka);
  font-size: 0.95rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
}

.timer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.timer-numbers {
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Header & Hero */
header {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: radial-gradient(circle at 10% 20%, rgba(13, 148, 136, 0.06) 0%, rgba(255, 255, 255, 0) 90%);
  position: relative;
}

.max-width-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
  justify-items: center;
}

@media(min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    text-align: left;
    justify-items: start;
    align-items: center;
  }
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  max-width: 20ch;
}

@media(max-width: 991px) {
  .hero-text-content h1 {
    margin: 0 auto;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 50ch;
}

@media(max-width: 991px) {
  .hero-subtitle {
    margin: 0 auto;
  }
}

/* Hero Image Container */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.25) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease-out;
}

.hero-img:hover {
  transform: translateY(-5px) scale(1.02);
}

/* Button UI */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 36px;
  font-family: var(--font-fredoka);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--cta);
  color: white;
  animation: pulseButton 2s infinite;
}

.btn-primary:hover {
  background-color: var(--cta-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 20px rgba(255, 83, 13, 0.4);
}

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

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 var(--cta-pulse);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 83, 13, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 83, 13, 0);
  }
}

.btn-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 10px;
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.section-title-wrap h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 60ch;
}

/* Glass & Card Styles */
.glass {
  background: var(--bg-white);
  border: 1px solid rgba(13, 148, 136, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

/* Benefits Section */
#beneficios {
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  background: var(--primary-bg-light);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.benefit-card h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Fundamentos Section */
.fundamentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media(min-width: 992px) {
  .fundamentos-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
}

.fundamentos-text h2 {
  text-align: left;
  margin-bottom: 10px;
}

.fundamentos-text p.subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.science-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width: 576px) {
  .science-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.science-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.science-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.science-icon {
  font-size: 2.2rem;
}

.science-card h4 {
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.science-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Carousel Container */
.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
  padding: 16px;
}

.carousel-title-box {
  text-align: center;
  margin-bottom: 16px;
}

.carousel-title-box h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.carousel-title-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.carousel-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 16px;
  overflow: hidden;
}

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

.carousel-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel Nav Buttons */
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  border: 1px solid rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.carousel-prev:hover, .carousel-next:hover {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.25);
  width: 20px;
  border-radius: 5px;
}

/* Bonus Section */
#bonus {
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.bonus-card {
  padding: 40px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

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

.bonus-tag {
  position: absolute;
  top: -16px;
  background-color: var(--cta);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-family: var(--font-fredoka);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

.bonus-image-box {
  width: 100%;
  aspect-ratio: 1;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.bonus-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-image-box img {
  transform: scale(1.05) rotate(2deg);
}

.bonus-card h3 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.bonus-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.bonus-price {
  font-size: 0.95rem;
  margin-top: auto;
}

.bonus-price .old {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 6px;
}

.bonus-price .free {
  color: var(--cta);
  font-weight: bold;
}

/* Testimonials / Instagram style */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.insta-card {
  background: var(--bg-white);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.insta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.insta-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-light);
  background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  font-family: var(--font-fredoka);
}

.insta-user-info {
  display: flex;
  flex-direction: column;
}

.insta-name {
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
}

.verified-badge {
  color: #3897f0;
  font-size: 0.85rem;
}

.insta-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.insta-dots {
  position: absolute;
  right: 0;
  top: 4px;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
}

.insta-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-main);
  flex-grow: 1;
}

.insta-text p {
  font-style: italic;
}

.insta-footer {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 12px;
  margin-top: auto;
}

.insta-actions {
  display: flex;
  gap: 16px;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.insta-btn-heart {
  color: #f43f5e;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
}

.insta-btn-heart:hover {
  transform: scale(1.15);
}

.insta-likes {
  font-size: 0.85rem;
  color: var(--text-main);
}

/* Offers Section */
#oferta {
  background: radial-gradient(circle at center, rgba(13, 148, 136, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.plans-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.plan-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Premium highlight styling */
.plan-card.premium {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  z-index: 10;
}

@media(max-width: 991px) {
  .plan-card.premium {
    transform: scale(1);
  }
}

.plan-card.premium:hover {
  transform: scale(1.05) translateY(-4px);
}

@media(max-width: 991px) {
  .plan-card.premium:hover {
    transform: translateY(-4px);
  }
}

.plan-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.plan-title {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.plan-card.premium .plan-title {
  margin-top: 10px;
}

.plan-price-box {
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-price-box .old {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: #ef4444;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--primary);
}

.price-currency {
  font-family: var(--font-fredoka);
  font-size: 1.4rem;
  font-weight: 700;
}

.price-amount {
  font-family: var(--font-fredoka);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}

.plan-features li.disabled {
  opacity: 0.45;
  text-decoration: line-through;
}

.plan-features li span {
  flex-shrink: 0;
}

.plan-card .btn {
  width: 100%;
}

.offers-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.offers-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* Proof Section */
.proof-section-box {
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.proof-img-container {
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.proof-img-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Guarantee Section */
.guarantee-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .guarantee-container {
    grid-template-columns: 1fr auto;
    text-align: left;
  }
}

@media(max-width: 767px) {
  .guarantee-container {
    text-align: center;
  }
}

.guarantee-text h2 {
  color: var(--primary-dark);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.guarantee-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.guarantee-badge-box {
  display: flex;
  justify-content: center;
}

.guarantee-badge-box img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

/* FAQ / Accordion Section */
.faq-box {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.06);
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  font-family: var(--font-fredoka);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
  outline: none;
}

.faq-trigger:hover {
  background-color: rgba(13, 148, 136, 0.03);
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-content {
  padding-bottom: 20px;
}

.faq-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Section */
footer {
  padding: 60px 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
  background-color: var(--bg-white);
  border-top: 1px solid #e2e8f0;
}

footer p {
  margin-bottom: 8px;
}

/* Notification Toast (Social Proof Purchase) */
.notification-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--bg-white);
  border: 1px solid rgba(13, 148, 136, 0.1);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 320px;
  pointer-events: none;
}

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

.toast-icon {
  font-size: 1.5rem;
  background: var(--primary-bg-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.toast-content {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.4;
}

/* Exit Intent Modal */
.exit-intent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.exit-intent-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

.modal-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.modal-content h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.modal-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 30px;
}

.modal-content .btn {
  width: 100%;
}

/* Reveal-on-scroll styles */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* OTIMIZAÇÕES VISUAIS PREMIUM */

/* 1. Progress Bar de Leitura */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10000;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--cta) 100%);
  width: 0%;
  transition: width 0.1s ease-out;
}

/* 2. Glow Blobs de Fundo */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-primary {
  background-color: var(--primary);
  width: 400px;
  height: 400px;
}

.blob-accent {
  background-color: var(--accent);
  width: 500px;
  height: 500px;
}

.blob-cta {
  background-color: var(--cta);
  width: 350px;
  height: 350px;
}

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}

/* 3. Glossy Shine sweep nos botões */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: none;
}

.btn:hover::after {
  left: 150%;
  transition: left 0.8s ease-in-out;
}

/* 4. Glassmorphism Otimizado */
.glass-premium {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.06) !important;
}

/* 5. Pricing Premium Glow Card */
.plan-card.premium {
  border: 2px solid transparent !important;
  background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.2) !important;
  position: relative;
}

.plan-card.premium::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: calc(var(--radius-lg) + 4px);
  z-index: -1;
  opacity: 0.35;
  filter: blur(12px);
  transition: opacity 0.3s ease;
}

.plan-card.premium:hover::before {
  opacity: 0.65;
}

/* OTIMIZAÇÕES MOBILE RESPONSIVE */

@media (max-width: 640px) {
  /* 1. Cronômetro / Timer Bar */
  .timer-bar {
    font-size: 0.8rem !important;
    padding: 6px 10px !important;
  }
  
  .timer-content {
    flex-direction: column !important;
    gap: 3px !important;
  }
  
  .timer-numbers {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 6px;
  }

  /* 2. Redução de Espaçamento Geral */
  header {
    padding-top: 2rem !important;
    padding-bottom: 2.5rem !important;
    min-height: auto !important;
  }

  section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  footer {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .gap-16 {
    gap: 2.5rem !important;
  }

  /* 3. Ajuste de Contêineres e Margens */
  .px-8 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .p-8 {
    padding: 1.25rem !important;
  }

  .p-10 {
    padding: 1.25rem !important;
  }

  /* 4. Carrossel Navigation */
  .carousel-prev, .carousel-next {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.8rem !important;
  }

  /* 5. Cartões de Preço e Bônus */
  .plan-card {
    padding: 1.75rem 1.25rem !important;
  }

  .plan-card.premium {
    padding-top: 2.5rem !important;
  }

  /* 6. Modal de Intenção de Saída */
  .modal-content {
    padding: 24px 16px !important;
    border-radius: 20px !important;
    width: 92% !important;
  }

  .modal-icon {
    font-size: 2.5rem !important;
    margin-bottom: 12px !important;
  }

  .modal-content h2 {
    font-size: 1.35rem !important;
    margin-bottom: 10px !important;
  }

  .modal-content p {
    font-size: 0.875rem !important;
    margin-bottom: 20px !important;
  }

  /* 7. Toast Notificações no Mobile */
  .notification-toast {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    font-size: 0.8rem !important;
    padding: 10px 14px !important;
  }
}
