/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

.text-center { text-align: center; }

.font-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  z-index: 50;
  background: transparent;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.nav.scrolled .nav-brand { color: #111827; }

.nav-brand span { color: #10B981; }

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.nav.scrolled .nav-links a { color: #4B5563; }

.nav-links a:hover { color: #10B981; }

.nav-cta {
  display: none;
  font-size: 14px;
  font-weight: 600;
  background: #10B981;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .nav-cta { display: inline-block; }
}

.nav-cta:hover { transform: scale(1.02); }

.nav-toggle {
  display: block;
  color: #ffffff;
  font-size: 24px;
  transition: color 0.3s;
}

.nav.scrolled .nav-toggle { color: #111827; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  padding: 8px 0;
}

.mobile-menu .mobile-cta {
  font-size: 16px;
  font-weight: 600;
  background: #10B981;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 8px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #111827 0%, #1F2937 50%, #111827 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 120px 24px 80px;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    padding-top: 100px;
  }
}

.hero-content {
  flex: 1;
  text-align: center;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .hero-content { text-align: left; }
}

.hero-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #10B981;
  border: 1px solid rgba(16,185,129,0.3);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.hero h1 span { color: #10B981; }

.hero p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #9CA3AF;
  max-width: 520px;
  margin-top: 24px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .hero-btns { flex-direction: row; }
}

.btn-primary {
  display: inline-block;
  font-weight: 600;
  background: #10B981;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s;
  pointer-events: auto;
}

.btn-primary:hover { transform: scale(1.02); box-shadow: 0 4px 20px rgba(16,185,129,0.3); }

.btn-outline {
  display: inline-block;
  font-weight: 500;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  pointer-events: auto;
}

.btn-outline:hover { border-color: #10B981; color: #10B981; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  font-size: 13px;
  color: #6B7280;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; background: #10B981; }

.hero-image {
  flex: 1;
  max-width: 500px;
  width: 100%;
  pointer-events: auto;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  object-fit: cover;
}

/* ========== SECTION LABEL & HEADINGS ========== */
.section-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #10B981;
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: #6B7280;
  margin-top: 16px;
  max-width: 560px;
}

/* ========== COMO FUNCIONA ========== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}

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

.step-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(16,185,129,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.step-icon svg { color: #10B981; }

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #10B981;
  margin-top: 16px;
  display: block;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-top: 8px;
}

.step-card p {
  font-size: 15px;
  color: #6B7280;
  margin-top: 12px;
  line-height: 1.6;
}

/* ========== RECURSOS ========== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
}

.feature-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  max-height: 360px;
  object-fit: cover;
}

.feature-txt h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.feature-txt p {
  font-size: 16px;
  color: #6B7280;
  margin-top: 16px;
  line-height: 1.7;
}

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #374151;
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  color: #10B981;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========== PLANOS - 5 COLUNAS ========== */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .plans-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.plan-card {
  background: #1F2937;
  border-radius: 16px;
  padding: 28px 20px;
  position: relative;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(40px);
  border: 1px solid #374151;
}

.plan-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border-color: #4B5563;
}

.plan-card.popular {
  border: 2px solid #10B981;
  background: #1E293B;
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #10B981;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 100px;
}

.plan-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #F9FAFB;
}

.plan-range {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
}

.plan-price .price {
  font-size: 28px;
  font-weight: 800;
  color: #F9FAFB;
}

.plan-price .period {
  font-size: 13px;
  color: #6B7280;
}

.plan-billing {
  font-size: 12px;
  color: #4B5563;
  margin-top: 4px;
}

.plan-discount {
  font-size: 11px;
  color: #10B981;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

.plan-discount.show { display: block; }

.plan-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.5;
}

.plan-features .check-icon {
  color: #10B981;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
}

.plan-btn {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
}

.plan-btn-primary {
  background: #10B981;
  color: #ffffff;
  border: none;
}

.plan-btn-primary:hover { transform: scale(1.02); background: #059669; }

.plan-btn-outline {
  background: transparent;
  color: #F9FAFB;
  border: 1px solid #4B5563;
}

.plan-btn-outline:hover { border-color: #10B981; color: #10B981; }

/* ========== TOGGLE MENSAL/TRIMESTRAL ========== */
.toggle-wrapper {
  display: inline-flex;
  align-items: center;
  background: #1F2937;
  border-radius: 10px;
  padding: 4px;
  border: 1px solid #374151;
  margin-bottom: 48px;
}

.toggle-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #9CA3AF;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  border: none;
}

.toggle-btn.active {
  background: #10B981;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16,185,129,0.4);
}

.toggle-btn:not(.active):hover {
  color: #F9FAFB;
}

/* ========== DEPOIMENTOS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.stars { display: flex; gap: 4px; margin-bottom: 16px; }

.star { color: #FBBF24; }

.testimonial-text {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #F3F4F6;
}

.testimonial-author .name {
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.testimonial-author .role {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 2px;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.faq-item {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
}

.faq-question span:first-child { padding-right: 16px; }

.faq-toggle {
  font-size: 20px;
  font-weight: 700;
  color: #10B981;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
}

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  padding: 100px 0;
}

.cta-section h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-top: 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 32px;
  background: #ffffff;
  color: #059669;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
}

.cta-btn:hover { transform: scale(1.02); }

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
}

/* ========== MODAL / POPUP ========== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #E5E7EB;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: all 0.2s;
  background: #F3F4F6;
}

.modal-close:hover { background: #E5E7EB; color: #111827; }

.modal-body {
  padding: 24px 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group label .optional {
  font-weight: 400;
  color: #9CA3AF;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: #10B981;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.form-submit:hover { transform: scale(1.01); background: #059669; }

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  display: none;
}

.form-message.show { display: block; }

.form-message.success {
  background: rgba(16,185,129,0.1);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.2);
}

.form-message.error {
  background: rgba(239,68,68,0.1);
  color: #DC2626;
  border: 1px solid rgba(239,68,68,0.2);
}

.plan-selected-info {
  background: #F0FDF4;
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #059669;
  font-weight: 500;
}

/* ========== MODAL SUCESSO ========== */
.modal-sucesso {
  max-width: 420px;
  text-align: center;
}

.modal-sucesso-body {
  padding: 48px 32px;
}

.sucesso-icon {
  color: #10B981;
  margin-bottom: 20px;
}

.modal-sucesso h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}

.modal-sucesso p {
  font-size: 16px;
  color: #6B7280;
  margin-top: 8px;
}

.sucesso-obrigado {
  font-size: 18px !important;
  font-weight: 600;
  color: #10B981 !important;
  margin-top: 16px !important;
}

.sucesso-btn {
  margin-top: 28px;
  padding: 14px 48px;
  background: #10B981;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sucesso-btn:hover {
  background: #059669;
  transform: scale(1.02);
}

/* ========== FOOTER ========== */
.footer {
  background: #111827;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.footer-brand {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand span { color: #10B981; }

.footer-desc {
  font-size: 14px;
  color: #9CA3AF;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 240px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #9CA3AF;
  transition: color 0.3s;
}

.footer-links a:hover { color: #10B981; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}

.footer-bottom span {
  font-size: 13px;
  color: #6B7280;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========== SPACING ========== */
.py-28 { padding-top: 96px; padding-bottom: 96px; }

@media (min-width: 1024px) {
  .py-28 { padding-top: 120px; padding-bottom: 120px; }
}

.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 80px; }

@media (min-width: 1024px) {
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* Planos section dark bg */
.planos-section {
  background: #111827;
  padding: 100px 0;
}

.planos-section .section-heading,
.planos-section .section-subtitle {
  color: #F9FAFB;
}

.planos-section .section-subtitle {
  opacity: 0.7;
}
