/* ===== RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f4d75;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --bg-light: #f6f7f8;
  --bg-dark: #111b21;
  --text-dark: #1f2937;
  --text-light: #f1f5f9;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

/* ===== URGENT BANNER TOP ===== */
.urgent-banner-top {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 16px 0;
  text-align: center;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.urgent-banner-top .container-narrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

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

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 80px 0 100px;
  text-align: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.hero-content {
  max-width: 800px;
}

.logo-placeholder {
  margin-bottom: 32px;
}

.logo {
  max-width: 200px;
  height: auto;
}

.hero-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(15, 77, 117, 0.1);
  border: 2px solid rgba(15, 77, 117, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-headline {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--primary);
  letter-spacing: -1px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-body {
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.7;
  color: var(--gray-600);
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 32px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--gray-600);
}

.cta-button {
  display: inline-block;
  padding: 18px 48px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

.cta-subtext {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-600);
}

/* ===== HERO IMAGE / VIDEO RESPONSIVO ===== */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.hero-image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

/* ===== FEATURE SECTIONS ===== */
.feature {
  padding: 100px 0;
}

.feature-light {
  background: white;
}

.feature-dark {
  background: var(--bg-light);
}

.feature-dark-premium {
  background: var(--bg-dark);
  color: white;
}

.feature-dark-premium .section-title {
  color: white;
}

.feature-dark-premium .section-intro {
  color: rgba(255, 255, 255, 0.95);
}

.feature-dark-premium .section-body {
  color: rgba(255, 255, 255, 0.9);
}

.feature-dark-premium .simple-list li {
  color: rgba(255, 255, 255, 0.9);
}

.feature-dark-premium .simple-list li::before {
  color: var(--accent);
}

.feature-dark-premium .highlight-text {
  color: var(--accent);
}

.feature-dark-premium .feature-list li {
  color: rgba(255, 255, 255, 0.9);
}

.feature-dark-premium .feature-list li::before {
  color: var(--accent);
}

.feature-blue {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3652 100%);
  color: white;
}

.feature-blue .section-title {
  color: white;
}

.feature-blue .section-intro {
  color: rgba(255, 255, 255, 0.95);
}

.feature-blue .section-body {
  color: rgba(255, 255, 255, 0.9);
}

.feature-blue .simple-list li {
  color: rgba(255, 255, 255, 0.9);
}

.feature-blue .simple-list li::before {
  color: var(--accent);
}

.feature-blue .highlight-text {
  color: var(--accent);
}

.feature .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-content {
  max-width: 600px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.section-intro {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--gray-800);
}

.section-body {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--gray-600);
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin: 24px 0;
}

.feature-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.simple-list {
  list-style: none;
  margin: 16px 0;
}

.simple-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 17px;
  color: var(--gray-600);
}

.simple-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.highlight-box {
  background: var(--primary);
  color: white;
  padding: 24px 32px;
  border-radius: 12px;
  margin: 32px 0;
}

.highlight-box p {
  margin-bottom: 8px;
  font-size: 17px;
}

.highlight-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 24px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 32px 0;
}

.feature-image {
  width: 100%;
}

.feature-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3652 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.cta-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
}

.cta-text {
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.cta-list {
  list-style: none;
  margin: 32px 0;
  font-size: 20px;
  font-weight: 600;
}

.cta-list li {
  padding: 12px 0;
}

.cta-list li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.professionals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.professional-card {
  padding: 32px 24px;
  background: var(--bg-light);
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.professional-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

/* ===== TYPES SECTION ===== */
.types-section {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 48px 0;
}

.type-card {
  padding: 24px;
  background: white;
  border-radius: 12px;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.type-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ===== TECHNICAL BASE ===== */
.technical-base {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.technical-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.technical-icon {
  font-size: 48px;
  margin-bottom: 8px;
}

.technical-item p {
  font-weight: 600;
  font-size: 16px;
  color: var(--gray-800);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-light);
  text-align: center;
}

.urgent-tag {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

.urgent-date {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.urgent-offer {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.urgent-access {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.pricing-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.pricing-warning {
  font-size: 20px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 16px;
}

.pricing-text {
  font-size: 18px;
  margin-bottom: 32px;
  color: var(--gray-600);
}

.urgency-bar {
  width: 100%;
  height: 24px;
  background: var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  margin: 32px 0 16px;
}

.urgency-fill {
  height: 100%;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  transition: width 0.3s ease;
}

.urgency-text {
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 48px;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary);
}

.plan-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.price-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin: 32px 0;
}

.price-currency {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-800);
  margin-top: 8px;
}

.price-value {
  font-size: 72px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-period {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 32px;
}

.price-installments {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.price-note {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.features-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 40px 0 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.pricing-features li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.more-features {
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  border-radius: 12px;
  margin: 40px 0 32px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.pricing-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

.guarantee-box {
  background: #ecfdf5;
  border: 2px solid #10b981;
  padding: 24px;
  border-radius: 12px;
  margin-top: 32px;
}

.guarantee-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: #059669;
  margin-bottom: 12px;
}

.guarantee-box p {
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 4px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-list {
  margin-top: 48px;
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--gray-200);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.faq-answer {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0;
  background: var(--gray-900);
  color: white;
  text-align: center;
}

.footer p {
  font-size: 14px;
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero .container {
    gap: 32px;
  }

  .logo {
    max-width: 150px;
  }

  .logo-placeholder {
    margin-bottom: 16px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .hero-headline {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .hero-body {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-benefits {
    margin: 20px 0;
    font-size: 16px;
  }

  .cta-button {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
  }

  .hero-image {
    margin-top: 24px;
    /* O padding-bottom do 16:9 já cuida da altura no mobile */
    max-width: 100%;
  }

  .hero-stats {
    gap: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  .feature .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-image {
    order: -1;
  }

  .section-title {
    font-size: 28px;
  }

  .two-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-title {
    font-size: 28px;
  }

  .pricing-title {
    font-size: 28px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .price-value {
    font-size: 56px;
  }

  .urgent-banner {
    padding: 20px 16px;
  }

  .urgent-offer {
    font-size: 18px;
  }

  .urgent-access {
    font-size: 14px;
  }

  .urgent-banner-top {
    padding: 12px 0;
  }

  .urgent-banner-top .container-narrow {
    flex-direction: column;
    gap: 6px;
  }

  .urgent-tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .urgent-date {
    font-size: 12px;
  }

  .urgent-offer {
    font-size: 13px;
  }

  .urgent-access {
    font-size: 11px;
  }
}

/* ===== SMOOTH SCROLL ===== */
html {
  scroll-behavior: smooth;
}
