.historia {
    position: relative;
    padding: 120px 24px;
    background: linear-gradient(
      135deg,
      var(--azul-secundario),
      var(--azul-principal)
    );
    color: #ffffff;
  }
  
  .historia-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.35)
    );
    z-index: 1;
  }
  
  .historia-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Destaques */
  .historia-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
  
  .highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
  }
  
  .highlight:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
  }
  
  .highlight.cta {
    background: #ffffff;
    color: var(--azul-principal);
    text-decoration: none;
    cursor: pointer;
  }

  .highlight.cta:hover {
    background: #ffffff;
    color: var(--azul-principal);
    transform: translateY(-4px);
  }

  .highlight.cta {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Conteúdo */
  .historia-content {
    max-width: 900px;
    margin-bottom: 80px;
  }
  
  .historia-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 32px;
  }
  
  .historia-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f0f4fb;
  }
  
  /* Missão, Visão, Valores */
  .historia-mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .mvv-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  
  .mvv-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mvv-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 36px 30px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .mvv-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .mvv-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8edf7;
  }
  
  .mvv-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Responsivo */
  @media (max-width: 900px) {
    .historia-highlights {
      grid-template-columns: 1fr 1fr;
    }
  
    .historia-mvv {
      grid-template-columns: 1fr;
    }
  
    .historia-content h2 {
      font-size: 2.1rem;
    }
  }
  
  @media (max-width: 500px) {
    .historia-highlights {
      grid-template-columns: 1fr;
    }
  }  