﻿/* ==========================================================================
   EMPRESA: SPLIT CONTAINER
   ========================================================================== */
.split-image-container {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.img-empresa-ajuste {
    max-width: 100%;    
    max-height: 400px;   
    width: auto;         
    height: auto;
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    /* Inicia a animação de deslizar da esquerda para direita */
    animation: slideRight 1.2s ease-out forwards;
}

.split-content.second {
    padding: 60px !important;
}

.split-content.second h1 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
}

.split-content.second p {
    font-size: 19px;
    color: #373737;
    line-height: 1.8;
}

/* Animação: Deslizar da esquerda para a direita */
@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .split-image-container {
        min-height: auto;
        padding: 20px;
    }
    
    .img-empresa-ajuste {
        max-height: 250px;
    }
}