/* =========================
    ESTILO GERAL
========================= */

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #eef2f7;
    margin: 0;
    color: #333;
}

/* Cabeçalho */
.header {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.8em;
}

.header p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Container principal */
.container {
    width: 92%;
    max-width: 900px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* =========================
    CARDS DE VAGAS
========================= */

.vaga-card {
    background: #fff;
    display: flex;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
    gap: 18px;
    align-items: center;
    transition: .2s ease-in-out;
    border-left: 5px solid #0051a3;
}

.vaga-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

/* Imagem da vaga */
.vaga-card img {
    width: 95px;
    height: 95px;
    border-radius: 8px;
    object-fit: cover;
    background: #d9d9d9;
}

/* Informações */
.vaga-info h3 {
    margin: 0 0 6px 0;
    font-size: 20px;
    color: #002b55;
    font-weight: bold;
}

.vaga-info p {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #444;
}

/* Tag Local */
.vaga-info small {
    background: #0051a3;
    color: #fff;
    padding: 4px 9px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 600;
}

.loader {
    text-align: center;
    padding: 25px;
    font-size: 18px;
    color: #0051a3;
}

/* Responsividade */
@media(max-width: 650px){
    .container {
        padding: 10px;
    }
    
    .header {
        padding: 20px;
    }
    
    .logo {
        max-width: 120px;
    }
    .vaga-card {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid #0051a3;
    }

    .vaga-card img {
        margin-bottom: 10px;
    }
}

.btn.secondary {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(149, 165, 166, 0.3);
}

.btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.4);
}

.developer-credit-top {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9em;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
    display: inline-block;
}

.developer-credit-top strong {
    font-weight: 700;
}

.developer-name {
    font-size: 0.85em;
    opacity: 0.9;
    margin-top: 2px;
}
.developer-credit, .hosting-credit {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.developer-credit {
    border-left: 4px solid #3498db;
}

.hosting-credit {
    border-left: 4px solid #27ae60;
}

.developer-credit p:first-child,
.hosting-credit p:first-child {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #2c3e50;
}

.developer-credit .developer-name {
    font-size: 0.9em;
    color: #7f8c8d;
    font-style: italic;
}
/* Rodapé */
.footer {
    margin-top: auto;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.footer p {
    margin: 5px 0;
    color: #666;
    font-size: 0.9em;
}

.footer strong {
    color: #2c3e50;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}
/* ====== MODAL FULLSCREEN IMG ====== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.9);
}

.modal img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
