:root {
    --black: #000000;
    --dark-gray: #333333;
    --gray: #565557;
    --light-gray: #858585;
    --yellow: #ffbe00;
    --light-yellow: #fff5d9;
    --prospecta-blue: #0066cc;
    --prospecta-orange: #ff6600;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-gray);
    background-color: #fff;
    line-height: 1.6;
}

.amsterdam-font { font-family: 'Times New Roman', Times, serif; font-weight: 700; letter-spacing: 1px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Header */
.app-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.1); position: sticky; top: 0; z-index: 1000; }
.app-header .container { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.brand { display: flex; align-items: center; }
.brand-logo { display: flex; flex-direction: column; align-items: center; margin-right: 20px; }
.brand-name { font-size: 28px; color: var(--black); line-height: 1; }
.brand-tagline { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-align: center; margin-top: 2px; }

/* Back button (página de detalhe) */
.back-btn {
    background-color: transparent; color: var(--dark-gray); border: 1px solid var(--light-gray);
    padding: 10px 20px; border-radius: 5px; font-weight: 600; cursor: pointer; transition: all .3s;
    display: inline-flex; align-items: center; text-decoration: none;
}
.back-btn:hover { background-color: #f5f5f5; text-decoration: none; color: var(--dark-gray); }
.back-btn i { margin-right: 8px; }

/* Upload button */
.upload-btn {
    background-color: var(--yellow); color: var(--black); border: none; padding: 10px 20px;
    border-radius: 5px; font-weight: 600; cursor: pointer; transition: background-color .3s;
}
.upload-btn:hover { background-color: #e6ab00; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,.5); }
.modal-content { background-color: #fefefe; margin: 10% auto; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,.3); width: 90%; max-width: 500px; position: relative; }
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; position: absolute; top: 15px; right: 20px; }
.close:hover, .close:focus { color: var(--black); text-decoration: none; cursor: pointer; }
.modal-title { color: var(--dark-gray); margin-bottom: 20px; text-align: center; }
.upload-form { display: flex; flex-direction: column; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 5px; font-weight: 600; }
.form-input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; font-family: 'Lato', sans-serif; }
.form-input:focus { border-color: var(--yellow); outline: none; }
.file-input { padding: 5px; }
.submit-btn {
    background-color: var(--yellow); color: var(--black); border: none; padding: 12px 20px; border-radius: 5px;
    font-weight: 600; cursor: pointer; transition: background-color .3s; margin-top: 10px; position: relative; font-size: 1rem;
}
.submit-btn:hover:not(:disabled) { background-color: #e6ab00; }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; }
.form-note { font-size: 12px; color: var(--gray); margin-top: 5px; }
.form-message { margin-top: 15px; padding: 10px; border-radius: 5px; display: none; }
.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.submit-spinner { display: none; }
.fa-spinner { animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Cover / hero */
.main { padding-top: 20px; }
.cover-background { position: relative; height: 400px; overflow: hidden; }
.cover-back-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover; background-position: center; filter: brightness(0.7);
}
.cover-front-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.cover-content { max-width: 800px; padding: 20px; }
.cover-logo { margin-bottom: 0; text-align: center; width: 100%; display: flex; justify-content: center; align-items: center; }
.cover-logo a { display: block; max-width: 300px; margin: 0 auto; }
.cover-logo img { max-width: 100%; height: auto; display: block; }
.cover-heading { font-size: 1.5rem; font-weight: 400; margin-bottom: 0; color: white; }
.cover-excerpt { font-size: 1.2rem; opacity: .9; color: white; }

/* Layout utilities */
.bg-gray-100 { background-color: #f5f7fa; }
.pt-50 { padding-top: 50px; }
.pb-20 { padding-bottom: 20px; }
.b-t-1 { border-top: 1px solid #ddd; }
.color-title { color: var(--dark-gray); }
.font-3xl { font-size: 2.5rem; }
.lh-120 { line-height: 1.2; }
.fw-700 { font-weight: 700; }
.text-center { text-align: center; }
.mb-15 { margin-bottom: 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-sm-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-9 { flex: 0 0 75%; max-width: 75%; }

/* Filters */
.sidebar-filter-container { background: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.1); margin-bottom: 20px; }
.sidebar-filter-container-button-open { display: none; }
.sidebar-filter-container-button-close { display: none; }
.card { position: relative; display: flex; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #fff; background-clip: border-box; border: 1px solid rgba(0,0,0,.125); border-radius: .25rem; }
.px-15 { padding-left: 15px; padding-right: 15px; }
.btn { display: inline-block; font-weight: 400; color: #212529; text-align: center; vertical-align: middle; cursor: pointer; background-color: transparent; border: 1px solid transparent; padding: .375rem .75rem; font-size: 1rem; line-height: 1.5; border-radius: .25rem; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; }
.btn-block { display: block; width: 100%; }
.btn-yellow { color: var(--black); background-color: var(--yellow); border-color: var(--yellow); }
.btn-yellow:hover { background-color: #e6ab00; border-color: #e6ab00; }
.py-15 { padding-top: 15px; padding-bottom: 15px; }
.px-25 { padding-left: 25px; padding-right: 25px; }
.b-b-1 { border-bottom: 1px solid #ddd; }
.font-xl { font-size: 1.5rem; }
.collapse-button { display: flex; align-items: center; text-decoration: none; color: var(--dark-gray); cursor: pointer; }
.font-sm { font-size: .875rem; }
.text-dark { color: var(--dark-gray); }
.mb-0 { margin-bottom: 0; }
.text-uppercase { text-transform: uppercase; }
.icon-container { display: inline-flex; align-items: center; justify-content: center; }
.ml-auto { margin-left: auto; }
.mt-10 { margin-top: 10px; }
.input-group-icon { position: relative; }
.input-group-icon.right i { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--light-gray); }
.input-group-icon-sm input { padding-right: 35px; }
.form-control { display: block; width: 100%; height: calc(1.5em + .75rem + 2px); padding: .375rem .75rem; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #495057; background-color: #fff; background-clip: padding-box; border: 1px solid #ced4da; border-radius: .25rem; transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; }
.form-control-sm { height: calc(1.5em + .5rem + 2px); padding: .25rem .5rem; font-size: .875rem; line-height: 1.5; border-radius: .2rem; }
.form-search:focus { border-color: var(--yellow); outline: 0; box-shadow: 0 0 0 .2rem rgba(255,190,0,.25); }
.custom-control { position: relative; display: block; min-height: 1.5rem; padding-left: 1.5rem; }
.custom-radio { position: relative; display: block; }
.custom-control-input { position: absolute; left: 0; z-index: -1; width: 1rem; height: 1.25rem; opacity: 0; }
.custom-control-label { position: relative; margin-bottom: 0; vertical-align: top; cursor: pointer; }
.custom-control-label::before { position: absolute; top: .25rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; pointer-events: none; content: ""; background-color: #fff; border: #adb5bd solid 1px; border-radius: 50%; }
.custom-control-input:checked ~ .custom-control-label::before { color: #fff; border-color: var(--yellow); background-color: var(--yellow); }
.custom-checkbox { position: relative; display: block; }
.custom-checkbox .custom-control-label::before { border-radius: .25rem; }
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { background-color: var(--yellow); border-color: var(--yellow); }
.custom-checkbox .custom-control-label::after { position: absolute; top: .25rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; content: ""; background: no-repeat 50% / 50% 50%; }
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); }
.p-0 { padding: 0; }
.js_filterHidden { display: none; }
.text-right { text-align: right; }
.radio-button { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-button-item { display: flex; align-items: center; }
.radio-button-item-input { margin-right: 5px; }

/* Vacancy list */
.card-vacancy { display: block; background: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.1); transition: transform .2s, box-shadow .2s; text-decoration: none; color: inherit; margin-bottom: 20px; }
.card-vacancy:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,.15); text-decoration: none; color: inherit; }
.card-body { padding: 20px; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.mb-10 { margin-bottom: 10px; }
.link { color: var(--yellow); text-decoration: none; }
.link:hover { color: #e6ab00; text-decoration: underline; }
.vacancy-detail { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; }
.text-medium { color: var(--gray); font-size: .9rem; }
.flex-wrap { flex-wrap: wrap; }
.align-middle { vertical-align: middle; }
.mr-20 { margin-right: 20px; }
.mr-5 { margin-right: 5px; }
.vacancy-date { color: var(--light-gray); font-size: .85rem; }
.pb-40 { padding-bottom: 40px; }
.pt-20 { padding-top: 20px; }
.btn-lg { padding: .5rem 1rem; font-size: 1.25rem; line-height: 1.5; border-radius: .3rem; }
.px-70 { padding-left: 70px; padding-right: 70px; }
.btn-light-grey { color: var(--dark-gray); background-color: #e9ecef; border-color: #e9ecef; }
.btn-light-grey:hover { background-color: #dde2e6; border-color: #dde2e6; }
.preloader { display: none; }
.no-results { text-align: center; padding: 40px; color: var(--gray); }
.pcd-badge { background-color: #0066cc; color: white; padding: 3px 10px; border-radius: 12px; font-size: .7rem; margin-left: 10px; display: inline-flex; align-items: center; }
.pcd-badge i { margin-right: 4px; }

/* Applied filters */
.box-chip-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.filter-chip { display: inline-flex; align-items: center; background-color: var(--light-yellow); color: var(--dark-gray); padding: 5px 12px; border-radius: 20px; font-size: .85rem; cursor: pointer; }
.filter-chip:hover { background-color: #ffe9a3; }
.filter-chip.active { background-color: var(--yellow); color: var(--black); font-weight: bold; }

/* Job detail page */
.job-header { background-color: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.1); padding: 30px; margin-bottom: 30px; }
.job-title { font-size: 2.2rem; color: var(--dark-gray); margin-bottom: 15px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.job-meta-item { display: flex; align-items: center; color: var(--gray); }
.job-meta-item i { margin-right: 8px; color: var(--yellow); }
.apply-btn { background-color: var(--yellow); color: var(--black); border: none; padding: 12px 30px; border-radius: 5px; font-weight: 600; cursor: pointer; transition: background-color .3s; font-size: 1.1rem; margin-top: 15px; }
.apply-btn:hover { background-color: #e6ab00; }
.job-content { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
@media (max-width: 992px) { .job-content { grid-template-columns: 1fr; } }
.job-section { background-color: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.1); padding: 25px; margin-bottom: 25px; }
.job-section-title { font-size: 1.5rem; color: var(--dark-gray); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--light-yellow); }
.job-description { line-height: 1.8; color: var(--gray); }
.job-description ul, .job-description ol { padding-left: 20px; margin: 15px 0; }
.job-description li { margin-bottom: 8px; }
.company-info { text-align: center; }
.company-logo { margin-bottom: 20px; }
.company-logo img { max-width: 200px; height: auto; }
.company-description { color: var(--gray); line-height: 1.7; margin-bottom: 25px; }
.company-details { text-align: left; }
.company-detail-item { display: flex; margin-bottom: 15px; }
.company-detail-icon { min-width: 30px; color: var(--yellow); }
.company-detail-text { color: var(--gray); }

/* Social */
.social-media-section { background-color: #e9ecef; padding: 20px 0; text-align: center; }
.social-title { font-size: 1.2rem; margin-bottom: 15px; color: var(--dark-gray); font-weight: 600; }
.social-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; color: white; font-size: 20px; transition: all .3s ease; text-decoration: none; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,.1); }
.facebook { background-color: #3b5998; } .facebook:hover { background-color: #2d4373; }
.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); } .instagram:hover { opacity: .9; }
.linkedin { background-color: #0077b5; } .linkedin:hover { background-color: #005582; }
.youtube { background-color: #ff0000; } .youtube:hover { background-color: #cc0000; }
.whatsapp { background-color: #25D366; } .whatsapp:hover { background-color: #128C7E; }

/* Footer */
footer { background-color: #f5f7fa; padding: 30px 0; }
.d-md-flex { display: flex; flex-wrap: wrap; }
.py-30 { padding-top: 30px; padding-bottom: 30px; }
.flex-grow-1 { flex-grow: 1; }
.pl-md-40 { padding-left: 40px; }
.order-2 { order: 2; }
.mb-30 { margin-bottom: 30px; }
.mb-md-0 { margin-bottom: 0; }
.caption { font-size: .85rem; color: var(--gray); text-decoration: none; }
.caption:hover { color: var(--yellow); text-decoration: underline; }
.mt-20 { margin-top: 20px; }
.c-md { color: var(--gray); font-size: .9rem; }
.order-1 { order: 1; }
.prospecta-brand { display: inline-block; font-size: 18px; font-weight: 700; margin: 10px 0; text-decoration: none; }
.prospecta-blue { color: var(--prospecta-blue); }
.prospecta-orange { color: var(--prospecta-orange); }

/* Responsive */
@media (max-width: 992px) {
    .col-md-3, .col-md-9 { flex: 0 0 100%; max-width: 100%; }
    .sidebar-filter-container { margin-bottom: 30px; }
}
@media (max-width: 768px) {
    .cover-heading { font-size: 2rem; }
    .cover-excerpt { font-size: 1rem; }
    .font-3xl { font-size: 2rem; }
    .vacancy-detail { flex-direction: column; align-items: flex-start; }
    .vacancy-date { margin-top: 10px; }
    .job-title { font-size: 1.8rem; }
    .job-meta { flex-direction: column; gap: 10px; }
    .modal-content { margin: 20% auto; padding: 20px; }
}
@media (max-width: 576px) {
    .app-header .container { flex-direction: column; text-align: center; }
    .brand { margin-bottom: 10px; }
    .brand-name { margin: 10px 0 0 0; }
    .cover-back-background { height: 250px; }
    .cover-heading { font-size: 1.75rem; }
    .btn-lg { width: 100%; padding-left: 20px; padding-right: 20px; }
    .cover-logo a { max-width: 250px; }
    .job-header { padding: 20px; }
    .job-title { font-size: 1.5rem; }
    .modal-content { width: 95%; padding: 15px; }
}
