.about-me {
  height: 70vh;
  overflow: hidden;

  .base-limitator {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .text-container {
      width: 100%;
      max-width: 60rem;
      display: flex;
      flex-direction: column;
      gap: 4rem;
      opacity: 0;
      transform: translateX(-100px);
      animation: slideInLeft 1s ease forwards;
      animation-delay: 0.5s;

      .resume-download {
        width: 100%;
        max-width: 20rem;
        height: 5rem;
        border-radius: 1rem;
        color: var(--white-color);
        background: var(--gradient-primary);
        font-size: 2rem;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
        border: none;
        cursor: pointer;

        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
        }

        &:focus {
          outline: 2px solid var(--focus-color);
          outline-offset: 2px;
        }

        &:active {
          transform: translateY(0);
        }
      }
    }

    .image-container {
      width: 50rem;
      height: 30rem;
      position: relative;
      opacity: 0;
      transform: translateX(100px);
      animation: slideInRight 1s ease forwards;
      animation-delay: 0.5s;

      .image {
        top: 0;
        left: 0;
        z-index: 2;
        width: 25rem;
        height: 25rem;
        border-radius: 50%;
        position: absolute;
        object-fit: contain;
        background-color: #edf7fa6b;
      }

      .ellipse {
        top: 2rem;
        z-index: 1;
        left: 2rem;
        width: 25rem;
        height: 25rem;
        border-radius: 50%;
        position: absolute;
        background-color: #9cbbea;
      }
    }
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1074px) {
  .about-me {
    height: 80vh;

    .base-limitator {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;

      .text-container {
        align-items: center;
        text-align: center;
        animation: slideInUp 1s ease forwards;
        animation-delay: 0.5s;
      }

      .image-container {
        width: 30rem;
        margin: auto;
        animation: slideInDown 1s ease forwards;
        animation-delay: 0.5s;
      }
    }
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
