/* Hero Image Styles */
.hero-image-wrapper {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26, 35, 50, 0.2);
    background: transparent; /* Remove o gradient anterior */
    padding: 0; /* Remove padding anterior */
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        height: 350px;
        border-radius: 20px;
    }
}