.intro-content {
    display: flex;
    flex-direction: row-reverse; /* Reverses the order: image left, text right */
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.container-lgpd {
    margin: 100px auto;
}

.container{
    line-height: 1.6;
    text-align: justify;
}


.intro-text {
    flex: 1.5; /* Gives more space for the text */
    padding: 20px;
    margin-top: 100px;
}

.intro-text h2 {
    margin-bottom: 20px;
    color: #003366;
}

.intro-text p {
    line-height: 1.6;
    text-align: justify;
}

.intro-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.lgpd-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    opacity: 0; /* Start with 0 opacity */
    animation: fadeIn 1.5s ease-in forwards; /* Add fade-in animation */
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 768px) {

    .intro-content {
        flex-direction: column;
        padding: 10px;
    }
    
    .intro-image {
        order: -1;
        width: 100%;
    }

    .intro-text {
        padding: 10px;
    }

    .lgpd-image {
        max-width: 100%;
    }
}