/* --- Estilos específicos para a página "Trabalhe Conosco" --- */

.work-hero {
    padding: 4rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.work-hero-text h1 {
    font-size: 2.8rem;
}

/* --- Ilustração de Prancheta com CSS --- */
.clipboard-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    perspective: 1000px;
}
.clipboard {
    width: 280px;
    height: 380px;
    background-color: #A0522D; /* Tom de madeira mais amigável */
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2), inset 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.clipboard:hover {
    transform: rotateY(0) rotateX(0);
}
.clip {
    width: 100px;
    height: 50px;
    background: linear-gradient(to right, #c0c0c0, #e0e0e0, #c0c0c0); /* Efeito metálico */
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px 5px 0 0;
    border: 1px solid #a0a0a0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}
.clip::before {
    content: '';
    width: 50px;
    height: 15px;
    background: linear-gradient(to right, #a0a0a0, #c0c0c0, #a0a0a0);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border-radius: 3px;
    border: 1px solid #888;
}
.paper {
    width: 90%;
    height: 85%;
    background-color: #fff;
    position: absolute;
    bottom: 15px;
    left: 5%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    background-image: repeating-linear-gradient(to bottom, #eee, #eee 1px, #fff 1px, #fff 25px);
    background-position: 0 20px;
}
@media (max-width: 991.98px) {
    .work-hero-text { text-align: center; order: 2; }
    .clipboard-container { order: 1; margin-bottom: 2rem; min-height: 400px; }
}