.about__section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding-top: 3rem;
    padding-bottom: 7rem;

    background: var(--cor-base-escura-2);
}

.about__content {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin-top: 2rem;
}

.about__text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about__image-container {
    flex: 0 0 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.about__title{
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-align: center;

    color: var(--cor2-texto);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

    padding: 2rem 0 2rem 0;
    margin-bottom: 2rem;
    
    position: relative;
    overflow: hidden;
}

.about__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FF6100, #FF8A33);
    border-radius: 2px;
    animation: slideIn 0.8s ease-out;
}

.about__title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 97, 0, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.about__text{
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    font-variant-numeric: lining-nums;
    text-align: left;
    width: 100%;
    color: var(--cor2-texto);
    padding-top: 0;
    padding-bottom: 0;
}

.link-about-text{
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 140%;
    font-variant-numeric: lining-nums;

    width: 70%;
    color: var(--cor2-texto);
    text-decoration: none;
}

.link-about-text:hover:not(.graduation){
    color: #2A7AE4;
}

.assignature{
    width: 150px;
}

@media screen and (max-width: 1023px){
    .about__section{
        padding-bottom: 4rem;
    }

    .about__content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about__image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
    
    .about__image {
        height: 400px;
    }
    
    .about__text, .link-about-text{
        width: 100%;
        font-size: 1rem;
        line-height: 150%;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .about__content {
        gap: 1.5rem;
    }
    
    .about__image-container {
        max-width: 500px;
    }
    
    .about__image {
        margin-top: 1.5rem;
        height: 350px;
    }
    
    .about__title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        padding: 1.5rem 0 1.5rem 0;
        margin-bottom: 1rem;
    }
    
    .about__title::before {
        width: 50px;
        height: 3px;
    }
}

@media screen and (max-width: 480px) {
    .about__content {
        gap: 1rem;
    }
    
    .about__image-container {
        max-width: 100%;
    }
    
    .about__image {
        height: 400px;
        border-radius: 8px;
    }
    
    .about__title {
        font-size: 2rem;
        letter-spacing: 0.5px;
        padding: 1rem 0 1rem 0;
        margin-bottom: 0.5rem;
    }
    
    .about__title::before {
        width: 40px;
        height: 2px;
    }
    
    .about__title::after {
        animation: shimmer 1.5s infinite;
    }
}