/* Estilos para o Banner Gestor de Carreira */
.gestor-carreira-banner {
    background: linear-gradient(90deg, rgba(255,64,129,0.9) 0%, rgba(255,193,7,0.9) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.gestor-banner-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gestor-banner-text {
    flex: 1;
    padding: 20px 30px;
    color: white !important;
    z-index: 2;
}

.gestor-banner-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    color: white !important;
}

.gestor-banner-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    max-width: 600px;
    color: white !important;
}

.gestor-banner-image {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.gestor-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.gestor-banner-cta {
    display: inline-block;
    background-color: #fff;
    color: #FF4081 !important;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gestor-banner-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    color: #FF4081 !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .gestor-banner-container {
        flex-direction: column-reverse;
    }
    
    .gestor-banner-image {
        width: 100%;
        height: 350px;
    }
    
    .gestor-banner-text {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    
    .gestor-banner-text h2 {
        font-size: 1.8rem;
        color: white !important;
    }
    
    .gestor-banner-text p {
        color: white !important;
    }
}
