/* SECCIÓN SOBRE NOSOTROS */
    #sobre-nosotros {
      max-width: 1200px;
      margin: 40px auto;
      padding: 80px 20px;
      background: var(--white);
    }

    #sobre-nosotros h2 {
      text-align: center;
      font-size: 2.8rem;
      color: var(--brand);
      margin: 20px 0px;
      font-weight: 700;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    #sobre-nosotros h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dodger-blue), var(--accent-red));
    border-radius: 2px;
    
}


    #sobre-nosotros > article {
      max-width: 900px;
      margin: 0 auto 60px;
      text-align: center;
      opacity: 0;
      animation: fadeInUp 0.8s ease 0.2s forwards;
    }

    #sobre-nosotros article p {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--text-gray);
    }

    #sobre-nosotros article strong {
      color: var(--brand);
      font-weight: 600;
    }

    /* TARJETAS DE INFORMACIÓN */
    .about-info-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .about-card {
      background: var(--white);
      padding: 35px 30px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
      transition: var(--transition);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.6s ease forwards;
      border: 1px solid #e5e7eb;
    }

    .about-card:nth-child(1) {
      animation-delay: 0.3s;
    }

    .about-card:nth-child(2) {
      animation-delay: 0.4s;
    }

    .about-card:nth-child(3) {
      animation-delay: 0.5s;
    }

    .about-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(13, 151, 255, 0.15);
      border-color: var(--dodger-blue);
    }

    .about-card img {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
      filter: brightness(0) saturate(100%) invert(13%) sepia(85%) saturate(2171%) hue-rotate(217deg) brightness(91%) contrast(103%);
      transition: var(--transition);
    }

    .about-card:hover img {
      filter: brightness(0) saturate(100%) invert(51%) sepia(98%) saturate(1759%) hue-rotate(187deg) brightness(101%) contrast(104%);
      transform: scale(1.1);
    }

    .about-card h3 {
      font-size: 1.5rem;
      color: var(--brand);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .about-card p {
      font-size: 1rem;
      color: var(--text-gray);
      line-height: 1.7;
    }

    .about-card ul {
      list-style: none;
      padding: 0;
      text-align: left;
    }

    .about-card ul li {
      padding: 8px 0 8px 28px;
      position: relative;
      color: var(--text-gray);
      font-size: 1rem;
    }

    .about-card ul li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--dodger-blue);
      font-weight: bold;
      font-size: 1.2rem;
    }

    /* SEPARADOR */
    hr {
      border: none;
      height: 1px;
      background: linear-gradient(to right, transparent, #e5e7eb, transparent);
      margin: 50px 0;
      opacity: 0;
      animation: fadeIn 0.8s ease 0.6s forwards;
    }

    /* CALL TO ACTION */
    .call-to-action {
      margin-top: 60px;
      padding: 45px 40px;
      background: linear-gradient(135deg, var(--brand) 0%, #0a1452 100%);
      border-radius: var(--radius);
      text-align: center;
      box-shadow: 0 10px 30px rgba(8, 14, 47, 0.2);
      opacity: 0;
      animation: fadeInUp 0.8s ease 0.7s forwards;
    }

    .call-to-action p {
      font-size: 1.6rem;
      color: var(--white);
      margin-bottom: 25px;
      font-weight: 600;
    }

    .call-to-action a {
      display: inline-block;
      padding: 16px 40px;
      background: var(--dodger-blue);
      color: var(--white);
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(13, 151, 255, 0.3);
    }

    .call-to-action a:hover {
      background: #0b85e0;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(13, 151, 255, 0.5);
      color: var(--white);
    }

    /* ANIMACIONES */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      #sobre-nosotros {
        padding: 50px 16px;
      }

      #sobre-nosotros h2 {
        font-size: 2.2rem;
      }

      #sobre-nosotros article p {
        font-size: 1.05rem;
      }

      .about-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .about-card {
        padding: 30px 25px;
      }

      .about-card img {
        width: 50px;
        height: 50px;
      }

      .about-card h3 {
        font-size: 1.35rem;
      }

      .call-to-action {
        padding: 35px 25px;
      }

      .call-to-action p {
        font-size: 1.35rem;
      }

      .call-to-action a {
        padding: 14px 32px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      #sobre-nosotros h2 {
        font-size: 1.9rem;
      }

      #sobre-nosotros article p {
        font-size: 1rem;
      }

      .about-card {
        padding: 25px 20px;
      }

      .about-card h3 {
        font-size: 1.25rem;
      }

      .about-card p,
      .about-card ul li {
        font-size: 0.95rem;
      }

      .call-to-action p {
        font-size: 1.2rem;
      }
    }