

    .contenedor3 {
      max-width: 1200px;
      margin: auto;
      padding: 2.5rem 1rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
      animation: fadeInUp 1s ease-out;
      width: 100%;
    }

    .text {
      animation: fadeInLeft 1s ease-out;
    }

    .text h2 {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .text p {
      margin-bottom: 1rem;
      font-size: 16px;
    }

  