/* ==========================================================================
   DESIGN SYSTEM DA LANDING PAGE (POUPA MEI)
   ========================================================================== */
:root {
  --brand-primary: #00875f;
  --brand-primary-hover: #00704f;
  --brand-light: #e6f4ea;
  
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  
  --border-color: #e2e8f0;
  --border-subtle: #f1f5f9;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- BOTÕES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--brand-primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background-color: var(--border-subtle);
}

.btn-cta {
  background-color: var(--brand-primary);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(0, 135, 95, 0.3);
}

.btn-cta:hover {
  background-color: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 135, 95, 0.35);
}

.btn-block {
  width: 100%;
}

/* --- NAVEGAÇÃO --- */
.navbar {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-badge {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.brand-name {
  font-size: 1.2rem;
  letter-spacing: -0.5px;
}

.brand-name strong {
  color: var(--brand-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
  color: var(--brand-primary);
}

/* --- HERO --- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: radial-gradient(circle at top, #e6f4ea 0%, #f8fafc 70%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-primary);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-guarantee {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-preview-badge {
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

/* --- BENEFÍCIOS / RECURSOS --- */
.section-features {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-title h2 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1rem;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-green { background: #e6f4ea; color: #00875f; }
.icon-blue { background: #e0f2fe; color: #0284c7; }
.icon-emerald { background: #d1fae5; color: #059669; }
.icon-amber { background: #fef3c7; color: #d97706; }
.icon-purple { background: #f3e8ff; color: #7e22ce; }
.icon-teal { background: #ccfbf1; color: #0d9488; }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-card code {
  background: var(--border-subtle);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* --- PLANOS & PREÇO --- */
.section-pricing {
  padding: 80px 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 12px;
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 6px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-right: 2px;
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-primary);
}

.pricing-price .cents {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--text-light);
  margin-left: 6px;
}

.pricing-trial-highlight {
  background-color: var(--brand-light);
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pricing-features li strong {
  color: var(--text-main);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* --- CTA FINAL --- */
.section-cta {
  padding: 80px 0;
  background-color: var(--bg-body);
  text-align: center;
}

.cta-container {
  max-width: 680px;
}

.section-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* --- RODAPÉ --- */
.footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 40px 0 24px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-brand strong {
  color: #fff;
  font-size: 1.1rem;
}

.footer-brand p {
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  width: 100%;
  padding-top: 20px;
  font-size: 0.78rem;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .nav-links a:not(.btn) { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 20px; }
}

/* ==========================================================================
   CARROSSEL DE TELAS E FUNCIONALIDADES
   ========================================================================== */
.section-showcase {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.carousel-container {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  position: relative;
  min-height: 380px;
}

.carousel-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: center;
}

.slide-text {
  text-align: left;
}

.slide-tag {
  display: inline-block;
  background-color: var(--brand-light);
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.slide-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 14px;
}

.slide-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.slide-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-bullets li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-bullets li::before {
  content: "✓";
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 1rem;
}

/* Moldura simulada de navegador para o print */
.browser-mockup {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.12), 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.browser-mockup:hover {
  transform: translateY(-3px);
}

.mockup-header {
  background-color: #f1f5f9;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-dot.red { background-color: #ef4444; }
.mockup-dot.yellow { background-color: #f59e0b; }
.mockup-dot.green { background-color: #10b981; }

.mockup-url {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2px 14px;
  font-size: 0.72rem;
  color: #64748b;
  margin-left: 12px;
  flex: 1;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-mockup img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background-color: #f8fafc;
}

/* Controles de navegação (setas e dots) */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 5px;
}

.carousel-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: var(--brand-light);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-dot.active {
  background-color: var(--brand-primary);
  width: 26px;
  border-radius: 10px;
}

/* Responsividade do Carrossel */
@media (max-width: 900px) {
  .slide-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .carousel-track {
    min-height: auto;
  }

  .slide-text {
    order: 2;
  }

  .slide-media {
    order: 1;
  }

  .slide-text h3 {
    font-size: 1.35rem;
  }
}