html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Ajusta o padding para compensar o header fixo */
}

.section-alt {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.section-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ff7f00, #ff9500);
    border-radius: 2px;
}

.hero-bg {
    background-image: url('../bg/hero-bg-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 600px) {
    .hero-bg {
        background-image: url('../bg/hero-bg.jpg');
    }
}