  .about-section {
      padding: 26px 50px;
      max-width: 1800px;
      margin: 0 auto;
  }

  .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 80px;
  }

  .section-header h1 {
      font-size: 2.5rem;
      font-weight: 750;
      color: #065d9f;
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -1.5px;
  }

  .content-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 25px;
      align-items: center;
  }

  /* Sección de Imagen con efecto parallax */
  /* Imagen con efecto avanzado */
  .image-section {
      position: relative;
      height: 520px;
      max-height: 620px;
      max-width: 750px;
  }

  .image-wrapper {
      position: relative;
      height: 100%;
      width: 100%;
  }

  .main-image {
      position: absolute;
      width: 100%;
      height: 90%;
      top: 0;
      left: 0;
      border-radius: 10px;
      overflow: hidden;
      z-index: 3;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;

  }

  .main-image:hover {
      transform: translateY(-4px) scale(1.01);
  }

  .main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(1.05) contrast(1.05);
  }

  /* Sección de Contenido */
  .text-content {
      padding: 0 20px;
  }

  .text-content b {
      font-weight: 700;
      color: #078ae1;
  }

  .text-content p {
      font-size: 1.125rem;
      line-height: 1.4;
      color: #475569;
      margin-bottom: 24px;
      text-align: justify;
      margin: 0 0.8rem;
  }

  /* NUEVO DISEÑO DE CARDS MISIÓN Y VISIÓN */
  .container-mv {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 15px;
      perspective: 1000px;
  }

  .container-tarj {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 1400px;
  }

  .card {
      position: relative;
      width: 480px;
      height: 620px;
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow:
          0 10px 40px rgba(0, 0, 0, 0.08),
          0 0 0 1px rgba(8, 145, 178, 0.1);
      cursor: pointer;
  }

  .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg,
              rgba(8, 145, 178, 0.05) 0%,
              rgba(6, 182, 212, 0.05) 100%);
      opacity: 0;
      transition: opacity 0.6s ease;
      z-index: 1;
  }

  .card:hover::before {
      opacity: 1;
  }

  .card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow:
          0 30px 80px rgba(8, 145, 178, 0.25),
          0 0 0 1px rgba(8, 145, 178, 0.3);
  }

  .card-image {
      position: relative;
      width: 100%;
      height: 320px;
      overflow: hidden;
  }

  .card-image::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      transition: all 0.6s ease;
  }

  .card:hover .card-image::after {
      background: linear-gradient(180deg,
              transparent 0%,
              rgba(8, 145, 178, 0.25) 50%,
              rgba(8, 145, 178, 0.6) 100%);
  }

  .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .card:hover .card-image img {
      transform: scale(1.15);
  }

  /* Icono flotante en la imagen */
  .card-icon {
      position: absolute;
      top: 12px;
      right: 14px;
      width: 30px;
      height: 30px;
      background: rgb(255, 254, 254);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .card:hover .card-icon {
      transform: scale(1.15) rotate(15deg);
      background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
      box-shadow: 0 15px 50px rgba(8, 145, 178, 0.4);
  }

  .card-icon i {
      font-size: 1.2rem;
      color: #34bfde;
      transition: all 0.5s ease;
  }

  .card:hover .card-icon i {
      color: #ffffff;
      transform: scale(1.2);
  }

  .card-content {
      position: relative;
      padding: 20px 30px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      z-index: 2;
      text-align: center;
  }

  .card-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #0891b2;
      letter-spacing: -0.5px;
      position: relative;
      display: inline-block;
  }

  .card-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 0;
      height: 4px;
      background: linear-gradient(90deg, #0891b2, #06b6d4);
      border-radius: 2px;
      transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .card:hover .card-title::after {
      width: 100%;
  }

  .card-text {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #475569;
      text-align: justify;
      font-weight: 400;
      position: relative;
      z-index: 2;
  }

  /* Efecto de brillo */
  .card-shine {
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg,
              transparent 30%,
              rgba(255, 255, 255, 0.3) 50%,
              transparent 70%);
      transform: rotate(45deg);
      transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
      opacity: 0;
  }

  .card:hover .card-shine {
      opacity: 1;
      left: 100%;
  }

  /* Estilos específicos para cada card */
  .card.mission .card-icon {
      background: rgba(8, 145, 178, 0.1);
  }

  .card.vision .card-icon {
      background: rgba(6, 182, 212, 0.1);
  }

  .card.mission:hover {
      box-shadow:
          0 30px 80px rgba(8, 145, 178, 0.25),
          0 0 0 1px rgba(8, 145, 178, 0.3);
  }

  .card.vision:hover {
      box-shadow:
          0 30px 80px rgba(6, 182, 212, 0.25),
          0 0 0 1px rgba(6, 182, 212, 0.3);
  }

  /* Values Section */
  .values-section {
      display: flex;
      justify-content: center;
  }

  .values-grid {
      display: grid;
      gap: 1.75rem;
      margin: 2rem 4rem;
      max-width: 1600px;
  }

  .value-item {
      background: #fff;
      border-radius: 10px;
      border: 2px solid #e2e8f0;
      overflow: hidden;
      transition: var(--transition-smooth);
      box-shadow: var(--shadow-sm);
  }

  .value-item:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
  }

  .value-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 1.8rem;
      cursor: pointer;
      user-select: none;
      transition: var(--transition-smooth);
  }

  .value-item:hover .value-header {
      background: linear-gradient(to right, rgba(8, 145, 178, 0.03) 0%, transparent 100%);
  }

  .value-header-left {
      display: flex;
      align-items: center;
      gap: 0.6rem;
  }

  .value-number {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, #4fadbe 0%, #56c6e0 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 1.15rem;
      box-shadow: var(--shadow-md);
      letter-spacing: -0.01em;
  }

  .value-header h3 {
      font-size: 1.35rem;
      color: var(--dark);
      font-weight: 600;
      letter-spacing: -0.01em;
  }

  .value-icon {
      width: 36px;
      height: 36px;
      background: var(--gray-100);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: var(--transition-smooth);
      font-size: 0.9rem;
  }

  .value-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .value-content p {
      padding: 0 2.25rem 2rem 2rem;
      line-height: 1.85;
      color: var(--gray-600);
      font-size: 1.02rem;
      text-align: justify;
  }

  .value-item.active .value-content {
      max-height: 500px;
  }

  .value-item.active .value-icon {
      transform: rotate(180deg);
      background: var(--primary);
      color: var(--white);
  }

  .value-item.active {
      border-color: var(--primary);
  }

  /* Responsive */
  @media (max-width: 1024px) {
      .section-header h1 {
          font-size: 3rem;
      }

      .content-grid {
          gap: 50px;
      }

      .image-wrapper {
          height: 500px;
      }

      .text-content h2 {
          font-size: 2.2rem;
      }
  }

  @media (max-width: 768px) {
      .about-section {
          padding: 80px 20px;
      }

      .section-header {
          margin-bottom: 48px;
      }

      .section-header h1 {
          font-size: 2.5rem;
      }

      .section-subtitle {
          font-size: 1.125rem;
      }

      .content-grid {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .image-wrapper {
          height: 450px;
          order: -1;
      }

      .text-content {
          padding: 0;
      }

      .text-content h2 {
          font-size: 2rem;
      }

      .text-content p {
          font-size: 1.0625rem;
      }

      .container {
          gap: 40px;
      }

      .card {
          width: 100%;
          max-width: 450px;
          height: 580px;
      }

      .card-image {
          height: 280px;
      }

      .card-icon {
          width: 60px;
          height: 60px;
          top: 20px;
          right: 20px;
      }

      .card-icon i {
          font-size: 1.6rem;
      }

      .card-title {
          font-size: 1.6rem;
      }

      .card-content {
          padding: 30px 24px;
      }

      .card-text {
          font-size: 0.95rem;
      }

      .values-grid {
          margin: 2rem;
      }

      .value-content p {
          padding: 0 1.75rem 1.75rem 1.75rem;
      }

      .value-header {
          padding: 1.5rem 1.75rem;
      }
  }

  @media (max-width: 480px) {
      .about-section {
          padding: 12px 16px;
      }

      .section-header {
          margin-bottom: 32px;
      }

      .section-header h1 {
          font-size: 1.3rem;
          letter-spacing: -1px;
          margin-bottom: 8px;
      }

      .section-subtitle {
          font-size: 1rem;
      }

      .image-wrapper {
          height: 380px;
      }

      .text-content h2 {
          font-size: 1.75rem;
      }

      .text-content p {
          font-size: 0.84rem;
          margin-bottom: 8px;
          margin: 0 0.8rem;
      }

      .image-section {
          height: 300px;
      }

      .card {
          height: 520px;
      }

      .card-image {
          height: 260px;
      }

      .card-icon {
          width: 55px;
          height: 55px;
          top: 16px;
          right: 16px;
      }

      .card-icon i {
          font-size: 1.4rem;
      }

      .card-title {
          font-size: 1.4rem;
          margin-bottom: 16px;
      }

      .card-content {
          padding: 24px 20px;
      }

      .card-text {
          font-size: 0.84rem;
          line-height: 1.6;
      }

      .card-badge {
          font-size: 0.75rem;
          padding: 8px 16px;
          bottom: 16px;
          right: 16px;
      }

      .values-grid {
          margin: 2rem 1rem;
      }
  }

  /*Seccion Valores*/