/* ============================================
   NOVAS SEÇÕES DA LANDING PAGE
   ============================================ */

/* Container Base */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-header h2 i {
  color: var(--accent);
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   O QUE É O SIGAAE
   ============================================ */
.what-is-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0) 0%, rgba(17, 27, 46, 0.5) 100%);
  position: relative;
  z-index: 2;
}

.what-is-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.what-is-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.what-is-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.what-is-card:hover {
  transform: translateY(-8px);
  border-color: rgba(43, 124, 219, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.what-is-card:hover::before {
  transform: scaleX(1);
}

.wi-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  transition: transform 0.3s;
}

.what-is-card:hover .wi-icon {
  transform: scale(1.1) rotate(-5deg);
}

.what-is-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.what-is-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   FUNCIONALIDADES (UPDATE)
   ============================================ */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(17, 27, 46, 0.5) 0%, rgba(11, 17, 32, 0.3) 100%);
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feat-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(43, 124, 219, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  transition: transform 0.3s;
}

.feat-card:hover .feat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feat-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.feat-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferencias-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.3) 0%, rgba(17, 27, 46, 0.6) 100%);
  position: relative;
  z-index: 2;
}

.diferencias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.dif-card {
  background: rgba(43, 124, 219, 0.08);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.dif-card:hover {
  background: rgba(43, 124, 219, 0.15);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.dif-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #D4A020);
}

.dif-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.dif-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   PREÇOS (UPDATE)
   ============================================ */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(17, 27, 46, 0.6) 0%, rgba(11, 17, 32, 0.4) 100%);
  position: relative;
  z-index: 2;
}

.price-wrap {
  max-width: 500px;
  margin: 0 auto;
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.price-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.old-amount {
  font-size: 1.3rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.amount span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--muted);
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--success), #22c55e);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--fg);
  font-size: 0.95rem;
}

.price-features li i {
  color: var(--success);
  margin-top: 3px;
  flex-shrink: 0;
}

.trial-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ============================================
   QUEM SOMOS (UPDATE)
   ============================================ */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.4) 0%, rgba(17, 27, 46, 0.5) 100%);
  position: relative;
  z-index: 2;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.about-company {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.about-inner p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-since {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(43, 124, 219, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================
   APP DOWNLOAD (UPDATE)
   ============================================ */
.app-download-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(17, 27, 46, 0.5) 0%, rgba(11, 17, 32, 0.3) 100%);
  position: relative;
  z-index: 2;
}

.app-download-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
}

.app-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.app-download-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.app-download-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-app-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #34D399, #22c55e);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-app-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(52, 211, 153, 0.35);
}

/* ============================================
   CTA FINAL (UPDATE)
   ============================================ */
.cta {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.3) 0%, rgba(17, 27, 46, 0.4) 100%);
  position: relative;
  z-index: 2;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(43, 124, 219, 0.15), rgba(91, 106, 191, 0.1));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  backdrop-filter: blur(12px);
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  color: #fff;
}

.cta-box p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section-header h2 {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 8px;
  }

  .what-is-grid,
  .features-grid,
  .diferencias-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .what-is-card,
  .feat-card,
  .dif-card {
    padding: 24px 20px;
  }

  .price-wrap {
    padding: 32px 24px;
  }

  .amount {
    font-size: 2.5rem;
  }

  .about-logo-row {
    flex-direction: column;
    gap: 12px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }
}

/* ============================================
   ANIMAÇÕES DE SCROLL (REVEAL)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
