 a:hover {
  color: #000 !important;
}  
  

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        .mvv-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .mvv-section {
            display: flex;
            align-items: center;
            margin-bottom: 90px;
            gap: 50px;
        }

        .mvv-section:nth-child(even) {
            flex-direction: row-reverse;
        }

        .mvv-content {
            flex: 1;
        }

        .mvv-icon-container {
            flex: 0 0 200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mvv-icon {
            width: 120px;
            height: 120px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: white;
        }

        .missao-icon {
            background: #22c55e;
        }

        .visao-icon {
            background: #22c55e;
        }

        .valores-icon {
            background: #22c55e;
        }

        .mvv-title {
            position: relative;
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            padding-top: 20px;
        }

        .mvv-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: #f59e0b;
        }

        .mvv-text {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .mvv-text::before {
            content: '>';
            color: #f59e0b;
            font-weight: bold;
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mvv-section {
                flex-direction: column !important;
                text-align: center;
                gap: 40px;
                margin-bottom: 80px;
            }

            .mvv-icon-container {
                flex: none;
            }

            .mvv-icon {
                width: 100px;
                height: 100px;
                font-size: 40px;
            }

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

            .mvv-title::before {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        /* estilo da historyview */

      .history-section {
        padding: 40px 20px;
        background: white;
        max-width: 1200px;
        margin: 0 auto;
      }

      .history-section h2 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      }

      .title-underline {
        width: 50px;
        height: 3px;
        background-color: #f59e0b;
        margin-bottom: 30px;
      }

      .years-container {
        max-width: none;
      }

      .year-item {
        border-bottom: 1px solid #e5e7eb;
      }

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

      .year-toggle {
        width: 100%;
        padding: 15px 0;
        background: transparent;
        color: #374151;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        font-weight: normal;
        text-align: left;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      }

      .year-toggle:hover {
        color: #111827;
      }

      .arrow {
        font-size: 0.8rem;
        color: #6b7280;
        transition: transform 0.2s ease;
      }

      .year-item.active .arrow {
        transform: rotate(180deg);
      }

      .year-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
      }

      .year-item.active .year-content {
        max-height: 600px;
        padding: 0 0 20px 0;
      }

      .year-content p {
        margin: 0 0 15px 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #4b5563;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      }

      .year-content ul {
        margin: 15px 0;
        padding-left: 20px;
      }

      .year-content li {
        margin-bottom: 8px;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #4b5563;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      }

      @media (max-width: 768px) {
        .history-section {
          padding: 30px 15px;
        }

        .history-section h2 {
          font-size: 1.6rem;
        }

        .year-toggle {
          padding: 12px 0;
          font-size: 0.9rem;
        }
      }

