:root {
  /* Colors */
  --bg-cream: #FFE794;
  /* Amarelo mais vibrante (Vibrant Yellow) */
  --bg-white: #FFFFFF;

  /* Text Colors */
  --text-brown: #3E2723;
  /* Marrom escuro para contraste */
  --text-body: #4E342E;
  /* Marrom suave */

  /* Action & Highlights */
  --green-cta: #2E7D32;
  /* Verde dinheiro forte */
  --green-cta-hover: #1B5E20;
  --yellow-highlight: #FBC02D;
  --yellow-urgency: #F9A825;
  /* Amarelo escuro/Laranja para urgência */

  /* Spacing */
  --spacing-sm: 1.5rem;
  --spacing-md: 3rem;
  --spacing-lg: 5rem;
  /* ~80px */

  /* UI Elements */
  --border-radius-pill: 50px;
  --border-radius-card: 24px;
  --shadow-card: 0 10px 30px rgba(62, 39, 35, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-brown);
  line-height: 1.6;
  font-size: 18px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-brown);
}

h1 {
  font-size: 2rem;
  /* Mobile default */
}

h2 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  /* Ensure consistent spacing */
  font-size: 1.125rem;
  /* ~18px */
}

strong,
.text-bold {
  font-weight: 700;
  color: var(--text-brown);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1140px;
  /* Standard Desktop */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Center content for readability in wide sections if needed */
.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

section {
  padding: var(--spacing-lg) 0;
}

/* Colors & Backgrounds */
.bg-cream {
  background-color: var(--bg-cream);
}

.bg-white {
  background-color: var(--bg-white);
}

.text-highlight {
  background-color: var(--yellow-highlight);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-brown);
}

.text-green {
  color: var(--green-cta);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

/* Components: Cards */
.card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
  border: 1px solid rgba(62, 39, 35, 0.05);
  position: relative;
}

.hero-card {
  text-align: center;
  margin-top: 1rem;
}

.hero-subheadline {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  /* ~24px */
  color: var(--text-body);
  /* Not dark brown */
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  /* Regular */
  line-height: 1.4;
}

.hero-media-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-seller-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-product-logo {
  width: 150px;
  /* Reduced size for logo "seal" look */
  height: auto;
  display: block;
}

/* Hero Specifics */
.hero-image-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.hero-logo-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  /* Adjust size as needed */
  height: auto;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Urgency Strip */
.urgency-strip {
  background-color: #D32F2F;
  /* Vermelho Urgência */
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 10px 1rem;
  font-size: 1rem;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.urgency-text-container {
  background-color: #D32F2F;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-weight: bold;
}

.urgency-block {
  background-color: #FFF3E0;
  color: #E65100;
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #FFCC80;
}

/* Components: Buttons */
.btn-cta {
  display: inline-block;
  background-color: var(--green-cta);
  color: white;
  text-align: center;
  padding: 1.5rem 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 6px 15px rgba(27, 94, 32, 0.3);
  transition: all 0.3s ease;
  font-size: 1.25rem;
  margin: 1rem 0;
  line-height: 1.2;
}

.btn-cta:hover {
  background-color: var(--green-cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(27, 94, 32, 0.4);
}

.btn-subtext {
  font-size: 0.9rem;
  color: #6D4C41;
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 1.5rem auto;
}

img.hero-img {
  max-width: 100%;
}

/* Lists */
ul.check-list {
  list-style: none;
  padding: 0;
}

ul.check-list li {
  margin-bottom: 1.2rem;
  padding-left: 2.2rem;
  position: relative;
  font-size: 1.15rem;
}

ul.check-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 2px;
}

ul.cross-list li::before {
  content: '❌';
  position: absolute;
  left: 0;
  top: 2px;
}

/* Price Box */
.price-box {
  background-color: #F1F8E9;
  border: 2px dashed var(--green-cta);
  padding: 2.5rem;
  border-radius: var(--border-radius-card);
  text-align: center;
  margin: 2rem 0;
}

.old-price {
  text-decoration: line-through;
  color: #8D6E63;
  font-size: 1.25rem;
}

.new-price {
  color: var(--green-cta);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.5rem 0;
}

/* Grid for "Who is this for" */
.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 2.25rem;
    /* 36px */
  }

  h2 {
    font-size: 2.25rem;
  }

  img.hero-img {
    max-width: 60%;
  }
}

/* NewModule Cards Grid */
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  /* Increased mobile gap */
}

.module-card {
  background: #FFFFFF;
  border-radius: 12px;
  /* Slight rounded */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Sombra suave */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-brown);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--green-cta);
  /* Linha verde opcional */
  padding-bottom: 0.5rem;
  display: inline-block;
}

.module-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-body);
}

/* Grid Layout for Desktop - Max 2 Columns */
@media (min-width: 900px) {
  .grid-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .module-card {
    width: calc(50% - 2rem);
  }
}

/* Remove 3-column override */
@media (min-width: 1100px) {
  .module-card {
    width: calc(50% - 2rem);
  }
}

/* Bonus List Styling: Cards */
.bonus-list {
  list-style: none;
  padding: 0;
}

.bonus-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bonus-item:last-child {
  margin-bottom: 0;
}

/* Ensure paragraph spacing is generally visible as requested */
p+p {
  margin-top: 1.5rem;
}

/* Icons */
.card-icon-container {
  background-color: var(--green-cta);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  /* Centered */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-icon-container svg {
  width: 32px;
  height: 32px;
  color: white;
  fill: white;
}

/* Guarantee Section */
.guarantee-section {
  margin-top: 2rem;
  padding: 2.5rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-card);
  text-align: center;
  box-shadow: var(--shadow-card);
}

/* FAQ Section Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: #fff;
  border: 1px solid rgba(62, 39, 35, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

details[open] {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

summary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-brown);
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

summary:focus {
  outline: none;
}

/* Hide default marker in Webkit */
summary::-webkit-details-marker {
  display: none;
}

/* Custom indicator */
summary::after {
  content: '+';
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-cta);
  transition: transform 0.3s ease;
  line-height: 1;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.faq-content {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-content p {
  margin-bottom: 1rem;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  summary {
    font-size: 1rem;
  }
}

/* NewModule Cards Grid */
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  /* Increased mobile gap */
}

.module-card {
  background: #FFFFFF;
  border-radius: 12px;
  /* Slight rounded */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Sombra suave */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-brown);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--green-cta);
  /* Linha verde opcional */
  padding-bottom: 0.5rem;
  display: inline-block;
}

.module-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-body);
}

/* Icons */
.card-icon-container {
  background-color: var(--green-cta);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  /* Centered */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-icon-container svg {
  width: 32px;
  height: 32px;
  color: white;
  fill: white;
}

/* Grid Layout for Desktop - Max 2 Columns */
@media (min-width: 900px) {
  .grid-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .module-card {
    width: calc(50% - 2rem);
  }
}

/* Remove 3-column override */
@media (min-width: 1100px) {
  .module-card {
    width: calc(50% - 2rem);
  }
}

/* Testimonials Carousel Section */
.bg-green {
  background-color: #4CB050;
  color: white;
  /* Default text color for section, though title overrides */
}

.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  overflow: hidden;
  /* Hide overflow of slides */
}

.carousel-track-container {
  position: relative;
  height: 500px;
  /* Adjust based on image aspect ratio needs */
  width: 100%;
  margin-bottom: 1.5rem;
}

.carousel-track {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  display: flex;
}

.carousel-slide {
  /* position: absolute; Removed for Flex layout */
  /* top: 0; bottom: 0; */
  min-width: 100%;
  width: 100%;
  display: flex;
  /* Center image */
  align-items: center;
  justify-content: center;
}

.carousel-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Ensure full image is visible */
  border-radius: 8px;
}

/* Nav Arrows */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  font-size: 2rem;
  color: #333;
  /* Black arrows */
  padding: 10px;
}

.carousel-button:hover {
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.carousel-button--left {
  left: 10px;
}

.carousel-button--right {
  right: 10px;
}

/* Nav Dots */
.carousel-nav {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.carousel-indicator {
  border: 0;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #ddd;
  /* Inactive grey */
  margin: 0 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicator.current-slide {
  background: #333;
  /* Active black */
}

@media (max-width: 600px) {
  .carousel-track-container {
    height: 400px;
    /* Smaller height for mobile */
  }

  .carousel-container {
    padding: 1.5rem 0.5rem;
    /* Less padding on mobile */
  }

  .carousel-button {
    font-size: 1.5rem;
    padding: 5px;
  }
}

/* ------------------------------------------------------------------ */
/* MOBILE REFINEMENTS AND SPECIFIC USER REQUESTS                      */
/* ------------------------------------------------------------------ */
@media (max-width: 768px) {

  /* 4.3 Sessão da HEADLINE (MOBILE) */
  .hero-card h1 {
    font-size: 1.4rem !important;
    /* Reduced font size ~22-24px */
    max-width: 100% !important;
    /* Allow full width */
    margin: 0 auto;
    line-height: 1.3;
  }

  .hero-card p {
    margin-top: 1.5rem !important;
    /* Spacing between headline and subheadline */
    margin-bottom: 2rem !important;
    /* Spacing between subheadline and content */
    font-size: 1.1rem;
  }


  /* 4.2 Sessão “Apresento a Abordagem de 75 Segundos do Pobre Esperto” (MOBILE) */
  /* This text is usually in a card with h2 "Apresento a Abordagem..." */
  /* We can target the section or card specifically if needed. */
  .card p {
    margin-bottom: 2rem !important;
    /* Include more breathing room */
    line-height: 1.8 !important;
    /* More comfortable reading */
  }

  /* 4.1 Sessão de BÔNUS (MOBILE) */
  .bonus-item {
    margin-bottom: 2rem !important;
    /* Maior margem entre cards */
    padding: 2rem !important;
    /* Maior espaçamento interno */
  }

  .bonus-item p {
    line-height: 1.7 !important;
    margin-top: 1rem !important;
    /* Space between Title and Text */
  }

  /* 4.4 Demais textos no MOBILE – Respiração */
  p {
    line-height: 1.75 !important;
  }

  /* Ensure container padding is good */
  .container {
    padding: 0 1.25rem;
  }
}