body {
    font-family: 'Lato', sans-serif;
    background-color: var(--secondary-light);
}

#imagem-lateral {
    width: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 100vh;
}

#imagem-lateral img {
    z-index: 2;
    width: 300px;
    max-width: 90%;
    height: auto;
    padding: 2rem;
}

.creditos-fotografo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #ebebeb;
    font-size: 0.8em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    z-index: 3;
}

#imagem-lateral::after {
    position: absolute;
    background-color: var(--primary-light);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    top: 0;
    left: 0;
}

.mobile-logo {
    display: none;
}

/* ==== RESPONSIVIDADE ==== */

@media (max-width: 998px) {
    body {
        flex-direction: column !important;
        background-color: #f8f9fa;
    }
    
    #imagem-lateral {
        display: none !important;
    }
    
    .mobile-logo {
        display: block !important;
        width: 100% !important;
        text-align: center;
        padding: 2rem 1rem 1rem 1rem;
        order: -1;
        margin-bottom: 50px;
        margin-left: 60%;
    }
    
    .mobile-logo img {
        width: 300px;
        max-width: 80%;
        height: auto;
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    .w-50:first-child {
        width: 100% !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        padding: 0 1rem 2rem 1rem;
    }
    
    .w-50.bg-white {
        max-width: 400px !important;
        width: 90% !important;
        margin: 0 auto !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        order: 1;
    }
    
    .p-6.space-y-4.md\\:space-y-6.sm\\:p-8.py-12 {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .mobile-logo {
        padding: 1.5rem 1rem 0.5rem 1rem !important;
    }
    
    .mobile-logo img {
        width: 160px;
    }
    
    .w-50:first-child {
        padding: 0 0.5rem 1.5rem 0.5rem !important;
    }
    
    .w-50.bg-white {
        width: 95% !important;
    }
    
    .p-6.space-y-4.md\\:space-y-6.sm\\:p-8.py-12 {
        padding: 1.5rem !important;
    }
    
    .system-name {
        font-size: 1.1rem !important;
    }
}