/* 
  Néctar NPK - Stylesheet
  Botanical, Natural, Educational Aesthetics
*/

:root {
  /* Color Palette */
  --primary-green: #388E3C;
  --primary-green-hover: #2E7D32;
  --dark-green: #1B4332;
  --light-green: #E8F5E9;
  --border-green: #C8E6C9;
  
  --phosphorus-yellow: #F9A826;
  --light-yellow: #FFF8E1;
  
  --potassium-blue: #0288D1;
  --light-blue: #E1F5FE;
  
  --text-main: #333333;
  --text-muted: #555555;
  --bg-color: #FDFBF7; /* Off-white / paper-like */
  --white: #FFFFFF;
  
  /* Typography */
  --font-heading: 'Fraunces', serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.05);
  --shadow-md: 0 8px 24px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 12px 32px rgba(27, 67, 50, 0.12);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23388e3c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark-green);
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.text-green { color: var(--primary-green); }
.text-blue { color: var(--potassium-blue); }
.text-yellow { color: var(--phosphorus-yellow); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: var(--shadow-md);
  width: 100%;
}

@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--light-green);
}

.pulse {
  animation: pulse 2s infinite ease-in-out;
}

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

/* Sections General */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 1. Hero Section */
.hero {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, var(--light-green) 0%, rgba(255,255,255,0) 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  .hero-container .cta-subtext {
    justify-content: center;
    text-align: center;
  }
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--primary-green);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: var(--light-yellow);
  bottom: 5px;
  left: 0;
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta {
  margin-top: 2rem;
}

.cta-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

@media (min-width: 768px) {
  .cta-subtext {
    text-align: left;
    justify-content: flex-start;
  }
  .hero-title {
    font-size: 3rem;
  }
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-placeholder {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.mockup-book {
  background: var(--white);
  border-radius: 8px 16px 16px 8px;
  box-shadow: 
    -10px 0 20px rgba(0,0,0,0.1),
    -2px 0 5px rgba(0,0,0,0.05),
    inset 2px 0 0 rgba(255,255,255,0.8);
  padding-left: 12px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.mockup-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 12px;
  background: linear-gradient(90deg, #1B4332 0%, #2D6A4F 100%);
  z-index: 2;
}

.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-overlay {
  position: absolute;
  top: 0;
  left: 12px;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.8), rgba(27,67,50,0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}

.mockup-overlay h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}



/* 2. Receive Section */
.receive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .receive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .receive-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.receive-card {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.icon-green { background: var(--light-green); color: var(--primary-green); }
.icon-yellow { background: var(--light-yellow); color: var(--phosphorus-yellow); }
.icon-blue { background: var(--light-blue); color: var(--potassium-blue); }

.receive-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-green);
}

/* 3. Why Choose Section */
.why-choose {
  background-color: var(--white);
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
}

.highlight-text {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.3rem;
  margin: 1.5rem 0;
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .comparison-container {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  border-radius: var(--radius-md);
  padding: 2rem;
}

.avoid-card {
  background-color: #FFF5F5;
  border: 1px solid #FFE3E3;
}

.have-card {
  background-color: var(--light-green);
  border: 1px solid var(--border-green);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.avoid-card .comparison-header { color: #E53E3E; }
.have-card .comparison-header { color: var(--primary-green); }

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

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.avoid-card .comparison-list i { color: #E53E3E; margin-top: 4px; }
.have-card .comparison-list i { color: var(--primary-green); margin-top: 4px; }

.impact-phrase {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark-green);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 2rem;
}

.impact-phrase i {
  font-size: 3rem;
  color: var(--border-green);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

@media (min-width: 768px) {
  .impact-phrase {
    font-size: 2.2rem;
  }
}

/* 4. Bonuses Section */
.bonuses {
  position: relative;
}

.badge {
  display: inline-block;
  background-color: var(--phosphorus-yellow);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.bonus-card {
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
}

.bonus-img {
  width: 80px;
  height: 80px;
  background-color: var(--light-green);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.bonus-card:nth-child(2) .bonus-img {
  background-color: var(--light-blue);
  color: var(--potassium-blue);
}

.bonus-card:nth-child(3) .bonus-img {
  background-color: var(--light-yellow);
  color: var(--phosphorus-yellow);
}

.bonus-tag {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background-color: var(--dark-green);
  color: white;
  padding: 0.3rem 3rem;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.bonus-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.bonus-content p {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
}

/* 5. Offer Section */
.offer {
  background-color: var(--dark-green);
  color: var(--white);
  padding: 6rem 0;
}

.offer .section-title {
  color: var(--white);
}

.offer-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  color: var(--text-main);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.offer-header {
  background-color: var(--primary-green);
  color: white;
  padding: 2.5rem 2rem;
  text-align: center;
}

.offer-header h2 {
  color: white;
  margin-bottom: 1rem;
}

.offer-header p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

.offer-content {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2rem;
  gap: 2rem;
}

@media (min-width: 768px) {
  .offer-content {
    grid-template-columns: 1.2fr 1fr;
    padding: 3rem;
    gap: 3rem;
  }
}

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

.offer-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-green);
}

.offer-list li:last-child {
  border-bottom: none;
}

.offer-list i {
  color: var(--primary-green);
  font-size: 1.5rem;
}

.offer-list i.text-blue { color: var(--potassium-blue); }

.offer-pricing {
  background-color: var(--bg-color);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.anchoring p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.anchoring ul {
  list-style: none;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-sm);
}

.anchoring li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.total-value {
  font-size: 1.2rem;
  color: #E53E3E !important;
  font-weight: bold;
}

.price-break p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-green);
  margin: 1.5rem 0;
}

.final-price {
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--dark-green);
  line-height: 1;
  margin-bottom: 0;
}

.timer-box {
  background-color: #FFF5F5;
  border: 1px solid #FFE3E3;
  color: #E53E3E;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.timer-box p { margin: 0; }
.timer-box span {
  display: inline-block;
  background: #E53E3E;
  color: white;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.secure-checkout {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* 6. Examples Carousel */
.examples {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-green);
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.slide-content {
  background-color: var(--bg-color);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.slide-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-green);
  text-align: center;
  border: 2px dashed var(--primary-green);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-green);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary-green);
  color: white;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

@media (min-width: 768px) {
  .carousel-btn.prev { left: 0; }
  .carousel-btn.next { right: 0; }
  .carousel-slide { padding: 0 40px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-green);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--primary-green);
}

/* 7. Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stars {
  color: var(--phosphorus-yellow);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-green);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--light-blue);
  color: var(--potassium-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: var(--dark-green);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 8. Guarantee */
.guarantee {
  background-color: var(--white);
}

.guarantee-box {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--bg-color) 100%);
  border: 2px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .guarantee-box {
    flex-direction: row;
    text-align: left;
    padding: 4rem;
  }
}

.guarantee-icon {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary-green);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.guarantee-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.guarantee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.guarantee-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.guarantee-list i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.guarantee-strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark-green);
  font-weight: 700;
}

/* 9. FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--light-green);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-green);
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px; /* arbitrary large value */
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background-color: var(--dark-green);
  color: var(--white);
  padding: 3rem 0;
}

.copyright {
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  max-width: 800px;
  margin: 0 auto;
}

/* --- NOVO: Top Banner --- */
.top-banner {
  background-color: #E53E3E;
  color: var(--white);
  text-align: center;
  padding: 0.8rem;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 100;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.top-banner span {
  background: var(--white);
  color: #E53E3E;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  margin: 0 0.1rem;
  display: inline-block;
}

/* --- NOVO: Hero Carousel --- */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 3/4;
  margin: 2.5rem auto;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.hero-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-green);
  border: 4px solid var(--white);
  border-radius: var(--radius-md);
  box-sizing: border-box;
}

.hero-slide-placeholder {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-green);
  text-align: center;
}

/* --- NOVO: Offer Mockup Square --- */
.offer-mockup-square {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1/1;
  margin: 0 auto 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 2px dashed var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.square-placeholder {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-green);
  text-align: center;
  padding: 1rem;
}

/* --- Preço Ancorado Hero --- */
.hero-price-anchor {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--light-green);
  border: 2px solid var(--border-green);
  border-radius: var(--radius-md);
  display: inline-block;
}

.hero-price-from {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.hero-price-from s {
  color: #E53E3E;
  font-weight: 700;
}

.hero-price-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-price-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin: 0;
}

/* --- Hero Carousel com botões de navegação --- */
.hero-carousel-wrapper {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-green);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  z-index: 20;
}

.hero-carousel-btn:hover {
  background: var(--primary-green);
  color: white;
}

.hero-prev { left: -22px; }
.hero-next { right: -22px; }

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-green);
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-carousel-dots .dot.active {
  background: var(--primary-green);
}

/* --- Road Map --- */
.roadmap {
  background: var(--white);
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
}

.roadmap-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.roadmap-step {
  background: var(--bg-color);
  border: 2px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 150px;
  position: relative;
  flex-shrink: 0;
}

.roadmap-icon {
  width: 70px;
  height: 70px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary-green);
  margin: 0 auto 1rem;
}

.roadmap-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-step h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 0.4rem;
}

.roadmap-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.roadmap-arrow {
  font-size: 2rem;
  color: var(--primary-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .roadmap-steps {
    flex-direction: column;
  }
  .roadmap-arrow {
    transform: rotate(90deg);
  }
  .roadmap-step {
    width: 200px;
  }
}
