@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg-cream: #F9F4EB; /* Creme super claro */
  --bg-dark: #2C2014; /* Marrom bem escuro */
  --text-dark: #2C2014;
  --text-light: #F9F4EB;
  --text-gray: #E0DACA;
  --success-color: #25D366; /* Verde tipo Whatsapp/Kiwify */
  --success-hover: #20BA5A;
  --border-radius: 12px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-cream);
  overflow-x: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  display: block;
  -webkit-user-drag: none;
}

/* Layout */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

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

/* Section Colors */
.bg-cream {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--text-light);
}

.bg-dark p {
  color: var(--text-gray);
}

/* Buttons */
.cta-button {
  display: inline-block;
  background-color: var(--success-color);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 0px #1E9148, var(--shadow-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.cta-button:hover {
  transform: translateY(2px);
  background-color: var(--success-hover);
  box-shadow: 0 4px 0px #1E9148, var(--shadow-md);
  color: #fff;
}

.cta-button:active {
  transform: translateY(6px);
  box-shadow: 0 0 0;
}

.cta-container {
  margin: 2.5rem 0;
}

/* Header/Hero */
.hero-section {
  text-align: center;
  padding: 3rem 0 0 0;
}

.hero-logo {
  max-width: 200px;
  margin: 0 auto 1rem;
  border-radius: 0;
}

.hero-title {
  font-size: 2.2rem;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.highlight-green {
  color: #1A9E52;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto;
  color: #4a3728;
}

/* Mockup */
.mockup-main {
  max-width: 550px;
  width: 95%;
  margin: 1.5rem auto -120px;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

.intro-mockup {
  padding-top: 160px;
  padding-bottom: 4rem;
}

.intro-mockup h2 {
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Testimonials */
.testimonials-section {
  padding: 3rem 0;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials-grid img {
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-md);
  border-radius: 12px;
}

/* Swiper Styling */
.swiper-section {
  padding: 3rem 0 4rem;
}

.swiper-section > .container > h2 {
  font-size: 1.8rem !important;
  color: var(--text-dark) !important;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.theme-card {
  background-color: var(--bg-dark);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  margin: 0 auto 3rem;
  max-width: 600px;
}

.swiper-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.theme-swiper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 40px; /* Space for pagination */
  position: relative;
}

.swiper-pagination-bullet {
  background: var(--text-gray);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--success-color);
  opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
  color: rgba(255, 255, 255, 0.7);
  transform: scale(0.6);
  width: 30px;
  height: 30px;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-weight: bold;
}

.swiper-slide img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

/* Features/Recebe */
.features-section {
  padding: 4rem 0;
}

.features-box {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border: 1px solid #EAE3D5;
}

.features-box h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.features-highlight {
  background-color: var(--bg-cream);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid #EAE3D5;
}

.features-list {
  list-style: none;
}

.features-list li {
  background-color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #EAE3D5;
}

/* Bonuses */
.bonuses-section {
  padding: 4rem 0;
}

.bonuses-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.bonus-card {
  max-width: 450px;
  text-align: center;
  background-color: var(--bg-dark);
  border: 1px solid #D6973D; /* Gold border */
  border-radius: 20px;
  padding: 2.5rem 2rem;
}

.bonus-card img {
  max-width: 100%;
  margin: 0 auto 1.5rem;
  border-radius: 8px; 
}

.bonus-card .bonus-badge {
  font-size: 1.25rem; 
  color: #D6973D;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.bonus-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.bonus-card p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.bonus-price {
  margin: 1.5rem 0;
  font-weight: 800;
}

.bonus-price .strike {
  text-decoration: line-through;
  color: #7f8c8d;
  font-size: 1.05rem;
  margin-right: 8px;
}

.bonus-price .free {
  color: var(--success-color);
  font-size: 1.15rem;
}

/* Pricing */
.pricing-section {
  padding: 4rem 0;
}

.pricing-card {
  background-color: transparent;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-checklist {
  text-align: left;
  background-color: #fff;
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  border: 1px solid #EAE3D5;
}

.pricing-checklist ul {
  list-style: none;
}

.pricing-checklist li {
  margin-bottom: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.price-strike {
  text-decoration: line-through;
  color: #7f8c8d;
  font-size: 1.2rem;
}

.price-main {
  font-size: 3rem;
  color: var(--success-color);
  font-weight: 800;
  line-height: 1;
  margin: 0.5rem 0;
}

.price-sub {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Urgency Banner */
.urgency-banner {
  background: #ffe6e6;
  color: #b30000;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Guarantee */
.guarantee-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-box img {
  max-width: 200px;
  margin: 0 auto 1.5rem;
}

/* FAQ */
.faq-container {
  max-width: 700px;
  margin: 4rem auto 0;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

details {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  border: 1px solid #EAE3D5;
  cursor: pointer;
}

summary {
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  outline: none;
  padding-right: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 0;
  color: var(--success-color);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: '-';
}

.faq-content {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #EAE3D5;
  font-size: 0.95rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  section { padding: 2.5rem 0; }
  .hero-title { font-size: 1.6rem; }
  
  .mockup-main { margin: 1.5rem auto -60px; }
  .intro-mockup { padding-top: 90px; padding-bottom: 2rem; }
  
  .cta-container { margin: 1.5rem 0; }
  .features-box { padding: 1.5rem; }
  .price-main { font-size: 2.5rem; }
  
  .testimonials-grid img { max-width: 320px; }
  .theme-swiper { max-width: 320px; }
  
  .theme-card { padding: 1.5rem 1rem; margin-bottom: 2rem; }
  
  .bonuses-section { padding: 3rem 0; }
  .bonuses-grid { gap: 1.5rem; margin-top: 1.5rem; }
  .faq-container { margin-top: 2rem; }

  .cta-button { 
    font-size: 1.05rem; 
    padding: 1rem 1.2rem; 
    white-space: normal; /* permite quebrar a linha */
    text-align: center;
    line-height: 1.3;
  }
}
