.hero-recursos {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.hero-recursos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 51, 102, 0.8), 
        rgba(77, 124, 158, 0.8)
    );
    z-index: 1;
}

.hero-recursos .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-recursos .hero-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-size: cover;
    background-position: center;
    transform-origin: center;
    transition: all 0.5s ease;
}

.hero-recursos .hero-background-layer.layer-1 {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(77, 124, 158, 0.9));
    transform: translateZ(-50px) rotateX(15deg);
}

.hero-recursos .hero-background-layer.layer-2 {
    background: linear-gradient(225deg, rgba(218, 165, 32, 0.3), rgba(77, 124, 158, 0.3));
    transform: translateZ(-25px) rotateX(10deg);
}

.hero-recursos .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 15px;
    color: var(--white);
}

.hero-recursos .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--white);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.hero-recursos .hero-title .title-accent {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--gold);
}

.hero-recursos .hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-recursos .hero-divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto;
}

@media (max-width: 768px) {
    .hero-recursos {
        min-height: 200px;
    }

    .hero-recursos .hero-title {
        font-size: 2rem;
    }

    .hero-recursos .hero-subtitle {
        font-size: 0.85rem;
    }
}