/* 
  Colors Palette:
  Dark Green: #0E2A1E, #091C14
  Emerald Green: #10B981, #059669
  White & Light Gray: #FFFFFF, #F8FAFC
  Vibrant Orange: #FF6A00, #E65C00
*/

:root {
  --green-dark: #0E2A1E;
  --green-darker: #091C14;
  --green-emerald: #10B981;
  --green-emerald-hover: #059669;
  --orange: #FF6A00;
  --orange-hover: #E65C00;

  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;

  --text-dark: #1E293B;
  --text-body: #475569;
  --text-light: #F1F5F9;

  --gold: #FBBF24;

  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.2;
}

.text-dark {
  color: var(--text-dark);
}

.text-center {
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

/* Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.container-sm {
  max-width: 800px;
}

.bg-light {
  background-color: var(--bg-light);
}

.mt-8 {
  margin-top: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .btn {
    display: flex;
    width: 100%;
    white-space: normal;
  }
}

.btn-large {
  font-size: 1.3rem;
  padding: 1.5rem 2.5rem;
}

.btn-full {
  width: 100%;
}

.btn-orange {
  background-color: var(--orange);
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

.btn-orange:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.5);
}

.btn-green {
  background-color: var(--green-emerald);
  color: var(--bg-white);
  box-shadow: 0 8px 15px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
  background-color: var(--green-emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.4);
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 106, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

/* ================================
   1. HERO SECTION
   ================================ */
.hero {
  background-color: var(--green-dark);
  background-image: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 100%);
  color: var(--text-light);
  text-align: center;
}

.hero .container {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.hero .pre-headline {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background-color: rgba(251, 191, 36, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.hero .headline {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

.hero .headline .highlight {
  color: var(--green-emerald);
}

@media (max-width: 768px) {
  .hero .headline {
    font-size: 2.2rem;
  }
}

.hero .sub-headline {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 0 auto 3rem auto;
  color: #CBD5E1;
}

/* Video Placeholder */
.video-container {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(45deg, #1f2937, #111827);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  color: #fff;
}

.video-placeholder svg {
  margin-bottom: 1rem;
  color: var(--green-emerald);
}

.secure-access-text {
  text-align: center;
  color: #10B981;
  font-size: 0.95rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.social-proof-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10B981;
  font-size: 0.95rem;
}

.proof-item svg {
  color: #10B981;
}

@media (max-width: 768px) {
  .social-proof-inline {
    gap: 1rem;
    flex-direction: column;
  }
}

.authority-bar-new {
  background-color: #1E8148;
  /* Darker green background from the image */
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.2rem 1rem;
  color: var(--bg-white);
  width: 100%;
}

.authority-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.authority-stat svg {
  color: #A7F3D0;
  /* lighter green for icons */
  margin-bottom: 0.2rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #A7F3D0;
  /* lighter green text for subtitle */
}

@media (max-width: 600px) {
  .authority-bar-new {
    gap: 2rem;
    flex-direction: column;
  }
}

/* ================================
   2. DORES SECTION
   ================================ */
.dores {
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card {
  background-color: var(--bg-white);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), border 1px solid #F1F5F9;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.error-card svg {
  color: #ef4444;
  /* red icon for negative feeling */
  margin-bottom: 1rem;
}

.error-card p {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

.transition-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-emerald);
  margin-bottom: 2rem;
}

/* ================================
   3. BENEFÍCIOS SECTION
   ================================ */
.beneficios {
  text-align: center;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-block {
  background: var(--bg-white);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: left;
  border-bottom: 4px solid var(--green-emerald);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-3px);
}

.feature-block .icon-wrapper {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--green-emerald);
  display: inline-flex;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.feature-block h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ================================
   4. MOCKUPS SECTION
   ================================ */
.mockups {
  padding: 5rem 0;
}

.bg-light-green {
  background-color: #F2F9F6;
}

.section-header {
  margin-bottom: 4rem;
}

.pre-title {
  color: var(--green-emerald);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-body);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

.mockup-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1050px;
  margin: 0 auto;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-image {
  flex: 1.5;
}

.img-placeholder {
  display: none;
}

.mockup-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  display: block;
}

.showcase-content {
  flex: 1;
  text-align: left;
}

.step-number {
  margin-bottom: 1rem;
}

.step-number span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--green-emerald);
  color: var(--bg-white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
}

.showcase-title {
  color: var(--text-dark);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.showcase-desc {
  color: var(--text-body);
  font-size: 1.1rem;
}

@media (max-width: 900px) {

  .showcase-item,
  .showcase-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .showcase-content {
    text-align: center;
  }

  .section-subtitle br {
    display: none;
  }
}


/* ================================
   5. DEPOIMENTOS SECTION
   ================================ */
.depoimentos {
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-emerald);
}

.client-details strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.client-details span {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* ================================
   6. OFERTA / PRECIFICAÇÃO
   ================================ */
.oferta {
  background-color: var(--bg-white);
  padding: 2rem 0 5rem 0;
}

.pricing-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
  }
}

.pricing-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.basic {
  border: 1px solid #D1FAE5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-top: 2rem;
}

.pricing-card.premium {
  border: 2px solid var(--orange);
  box-shadow: 0 15px 35px rgba(255, 106, 0, 0.08);
  margin-top: 0;
}

.badge-new {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--bg-white);
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.plan-name {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  font-weight: 900;
}

.text-green {
  color: #10B981;
  /* adjusted green */
}

.text-orange {
  color: #FF6A00;
  /* vibrant orange */
}

.plan-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.plan-divider {
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.mt-4 {
  margin-top: 1.5rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 600;
}

.icon-green {
  color: #10B981;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon-orange {
  color: #FF6A00;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon-star {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dashed-divider {
  border-top: 2px dashed #fcd34d;
  margin: 1.5rem 0;
}

.bonuses b {
  color: var(--text-dark);
}

.price-area {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.price-label {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.price-discount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.old-price-inline {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 600;
}

.discount-badge {
  background-color: #ffedd5;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.current-price {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.current-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 0.25rem;
  position: relative;
  top: -1.5rem;
}

.current-price .cents {
  font-size: 1.5rem;
  font-weight: 800;
}

.secure-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

/* ================================
   7. GARANTIA
   ================================ */
.garantia {
  background-color: var(--green-emerald);
  color: var(--bg-white);
}

.garantia .section-title {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.garantia-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--green-dark);
}

.garantia-text {
  font-size: 1.25rem;
  font-weight: 500;
}

/* ================================
   8. FAQ
   ================================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background-color: var(--bg-white);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
  color: var(--green-emerald);
  flex-shrink: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-content p {
  padding-bottom: 1.5rem;
}

/* Active State */
.accordion-item.active {
  border-color: var(--green-emerald);
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

/* ================================
   9. RODAPÉ / CTA FINAL
   ================================ */
.footer-cta {
  background-color: var(--green-dark);
  color: var(--bg-white);
  padding-top: 5rem;
}

.footer-cta .headline {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.footer-cta .sub-headline {
  font-size: 1.5rem;
  color: #cbd5e1;
}

.footer-legal {
  background-color: var(--green-darker);
  margin-top: 5rem;
  padding: 3rem 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.legal-links {
  margin: 1.5rem 0;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: var(--bg-white);
}

.copyright {
  margin-top: 1rem;
}

/* ================================
   10. SCARCITY TIMER
   ================================ */
.scarcity-timer {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: 8px;
  padding: 1rem;
  margin: 0 auto 3rem auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.05);
  animation: bgPulse 2s infinite;
}

@keyframes bgPulse {
  0% {
    background-color: #FEF2F2;
  }

  50% {
    background-color: #FFF1F2;
  }

  100% {
    background-color: #FEF2F2;
  }
}

.timer-text {
  color: #DC2626;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timer-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #DC2626;
  font-weight: 900;
  font-size: 1.5rem;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.time-box span {
  background-color: #EF4444;
  color: white;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  min-width: 45px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.time-box small {
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 0.2rem;
  color: #DC2626;
  text-transform: uppercase;
}