.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-images {
    flex: 1;
    position: relative;
    height: 400px;
}

.floating-image {
    position: absolute;
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.floating-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.floating-image.robot {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatRobot 4s ease-in-out infinite;
}

.floating-image.chat {
    bottom: 0;
    left: 0;
    animation: floatChat 4s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-image.whatsapp {
    bottom: 0;
    right: 0;
    animation: floatWhatsapp 6s ease-in-out infinite;
    animation-delay: 2s;
    width: 180px;
    height: 180px;
    transform-origin: center;
}

.floating-image.whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(37, 211, 102, 0.3));
}

@keyframes floatRobot {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes floatChat {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes floatWhatsapp {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    75% {
        transform: translateY(5px) rotate(-2deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .hero-images {
        height: 300px;
        width: 100%;
    }

    .floating-image {
        width: 150px;
        height: 150px;
    }

    .floating-image.whatsapp {
        width: 130px;
        height: 130px;
    }
} 