.mission-vision-values {
    padding: 60px 20px 40px 20px;
    text-align: center;
  }
  
  .mv-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .mv-cards {
    padding-top: 64px;
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
  }
  
  .mv-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    max-width: 340px;
    min-width: 260px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .mv-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  }
  
  .mv-icon {
    width: 100%;
  }
  
  .mv-card h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 600;
  }

  @media (min-width: 900px) {
    .mv-card-center {
      transform: translateY(-32px);
      z-index: 2;
      box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    }
  }
  
  .mv-card p, .mv-card ul {
    color: #cfd8dc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  .mv-card ul {
    list-style: disc inside;
    text-align: left;
    margin-top: 0;
  }
  
  @media (max-width: 900px) {
    .mv-cards {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .mv-card {
      max-width: 100%;
      min-width: 0;
      width: 100%;
    }
  }

  /* Nova seção: Crypto Market Today */
  .crypto-market-section {
    padding: 64px 0 64px 0;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
  }
  .crypto-market-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .crypto-market-image img {
    width: 480px;
    max-width: 90vw;
    min-height: 400px;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    object-fit: cover;
  }
  .crypto-market-content {
    flex: 1 1 400px;
    min-width: 320px;
    max-width: 600px;
  }
  .crypto-market-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.15;
  }
  .crypto-market-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
  }
  .crypto-market-list li {
    margin-bottom: 18px;
    font-size: 0.98rem;
    font-weight: 300;
    position: relative;
    opacity: 0.8;
  }
  .crypto-market-bar {
    background: #23252b;
    border-radius: 8px;
    height: 10px;
    width: 100%;
    margin-top: 8px;
    overflow: hidden;
  }
  .bar {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, #2d7cff 0%, #00e0ff 100%);
  }
  .bar-1 { width: 55%; }
  .bar-2 { width: 70%; }
  .bar-3 { width: 80%; }
  .bar-4 { width: 60%; }
  .bar-5 { width: 90%; }
  .crypto-market-sources {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
    opacity: 0.8;
    font-size: 1.1rem;
    flex-wrap: wrap;
  }
  .crypto-market-sources span {
    min-width: 60px;
    font-weight: 300;
    opacity: 0.7;
  }
  .crypto-market-sources img {
    height: 28px;
    max-height: 32px;
    width: auto;
    max-width: 90px;
    min-width: 40px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.2);
    opacity: 0.85;
    margin-right: 4px;
    margin-bottom: 2px;
    vertical-align: middle;
  }
  @media (max-width: 600px) {
    .crypto-market-sources {
      gap: 10px;
      justify-content: flex-start;
    }
    .crypto-market-sources img {
      height: 22px;
      max-height: 26px;
      max-width: 60px;
      min-width: 28px;
    }
  }
  @media (max-width: 900px) {
    .crypto-market-container {
      flex-direction: column;
      gap: 32px;
      padding: 0 16px;
    }
    .crypto-market-image img {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      display: block;
    }
    .crypto-market-content {
      max-width: 100%;
    }
    .crypto-market-title {
      font-size: 2rem;
    }
  }