/*
Theme Name: Jobzeek WordPress Theme
Description: Tema WordPress convertido do template Blogger Jobzeek JOB v3.0 - Tema premium para postagem de empregos
Version: 1.0
Author: Convertido do template original por Gila Temax
Text Domain: jobzeek
*/

/* ======================================
Jobzeek - WordPress Theme converted from Blogger Template
Original Design by Gila Temax (www.gilatemax.com)
Converted for WordPress
====================================== */

/* CSS Variables */
:root {
    --color-theme: #0e8136;
    --color-status-bar: #ffffff;
    --color-body-bg: #f9f9f9;
    --color-header-bg: #ffffff;
    --color-header-border: #dadce0;
    --color-nav-text: #010613;
    --color-nav-hover: #0e8136;
    --color-button-bg: #0e8136;
    --color-button-text: #ffffff;
    --color-footer-bg: #23282e;
    --color-footer-border: #3e4247;
    --color-footer-text: #ffffff;
    --color-footer-hover: #fda085;
    
    --width-theme: 1200px;
    --height-header: 60px;
    --height-logo: 52px;
    --height-footer-logo: 33px;
}

/* Reset e Normalize */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--color-body-bg);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem;
}

a {
    background: transparent;
    color: var(--color-theme);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--color-nav-hover);
    outline: 0;
}

img {
    height: auto;
    max-width: 100%;
    border: 0;
}

/* Layout Principal */
.site {
    max-width: var(--width-theme);
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.content-container {
    display: flex;
    gap: 30px;
    padding: 30px;
}

.content-area {
    flex: 1;
}

.widget-area {
    width: 300px;
    flex-shrink: 0;
}

/* Header */
.site-header {
    background: var(--color-header-bg);
    border-bottom: 1px solid var(--color-header-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: var(--height-header);
    max-width: var(--width-theme);
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-title a {
    color: var(--color-nav-text);
    text-decoration: none;
}

.site-description {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--color-nav-text);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--color-nav-hover);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 3px;
}

.menu-toggle-icon span {
    width: 25px;
    height: 3px;
    background: var(--color-nav-text);
    display: block;
    transition: all 0.3s ease;
}

.menu-toggle.toggled .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.toggled .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.toggled .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Search Form */
.header-search {
    margin-left: 20px;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-field {
    padding: 8px 12px;
    border: 1px solid var(--color-header-border);
    border-radius: 4px;
    font-size: 14px;
    min-width: 200px;
}

.search-submit {
    padding: 8px 16px;
    background: var(--color-button-bg);
    color: var(--color-button-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.search-submit:hover {
    background: #0a6b2d;
}

/* Posts */
.posts-container {
    display: grid;
    gap: 30px;
}

.job-post, .search-result {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.job-post:hover, .search-result:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.entry-title {
    margin-bottom: 10px;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--color-theme);
}

.entry-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.entry-meta a {
    color: #666;
}

.entry-meta a:hover {
    color: var(--color-theme);
}

.post-thumbnail {
    margin-bottom: 20px;
}

.post-thumbnail img {
    border-radius: 4px;
    width: 100%;
    height: auto;
}

.entry-content, .entry-summary {
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-button-bg);
    color: var(--color-button-text);
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background: #0a6b2d;
    color: var(--color-button-text);
}

/* Sidebar */
.widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.widget-title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-theme);
    font-size: 1.2rem;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #333;
    text-decoration: none;
}

.widget a:hover {
    color: var(--color-theme);
}

/* Footer */
.site-footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
    margin-top: 50px;
}

.footer-container {
    max-width: var(--width-theme);
    margin: 0 auto;
    padding: 40px 30px 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: var(--color-footer-text);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget li {
    padding: 5px 0;
}

.footer-widget a {
    color: var(--color-footer-text);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-widget a:hover {
    color: var(--color-footer-hover);
    opacity: 1;
}

.site-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-footer-border);
    font-size: 0.9rem;
}

/* Pagination */
.posts-navigation {
    margin: 40px 0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous, .nav-next {
    flex: 1;
}

.nav-previous a, .nav-next a {
    display: block;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.nav-previous a:hover, .nav-next a:hover {
    background: var(--color-theme);
    color: white;
    border-color: var(--color-theme);
}

/* Error 404 */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error-404 h1 {
    font-size: 6rem;
    margin-bottom: 20px;
    color: var(--color-theme);
}

.error-message {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #666;
}

.error-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.error-home-link {
    margin-top: 30px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-button-bg);
    color: var(--color-button-text);
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background: #0a6b2d;
    color: var(--color-button-text);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-theme);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #0a6b2d;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
    }
    
    .main-navigation {
        order: 4;
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        border-top: 1px solid var(--color-header-border);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
    }
    
    .header-search {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .search-field {
        min-width: 150px;
    }
    
    .content-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .widget-area {
        width: 100%;
    }
    
    .site-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-container {
        padding: 30px 20px 15px;
    }
    
    .error-404 h1 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: auto;
        min-height: var(--height-header);
        padding: 10px 15px;
    }
    
    .content-container {
        padding: 15px;
    }
    
    .job-post, .search-result, .widget {
        padding: 20px;
    }
    
    .search-field {
        min-width: 120px;
    }
    
    .error-404 h1 {
        font-size: 3rem;
    }
}

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link {
    background: var(--color-theme);
    color: white;
    padding: 8px 16px;
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 100000;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 7px;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--color-theme);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .widget-area,
    .back-to-top,
    .posts-navigation {
        display: none;
    }
    
    .content-container {
        padding: 0;
    }
    
    .site {
        box-shadow: none;
        max-width: none;
    }
}



/* Job Details Styling */
.job-details {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.job-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--color-theme);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.featured-icon {
    font-size: 1.1em;
}

.job-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.job-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.job-detail-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.job-detail-value {
    font-weight: 500;
    color: #333;
}

/* Job Application Buttons */
.job-application-buttons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.job-apply-button,
.job-email-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.job-apply-button {
    background: var(--color-theme);
    color: white;
}

.job-apply-button:hover {
    background: #0a6b2d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 129, 54, 0.3);
}

.job-email-button {
    background: #6c757d;
    color: white;
}

.job-email-button:hover {
    background: #545b62;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Job Summary for Listings */
.job-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid var(--color-theme);
}

.job-featured-badge-small {
    color: var(--color-theme);
    font-size: 1.2em;
    font-weight: bold;
}

.job-summary-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    flex: 1;
}

.job-company {
    font-weight: 600;
    color: #333;
}

.job-location {
    color: #666;
    font-size: 0.9rem;
}

.job-location:before {
    content: "📍 ";
    margin-right: 3px;
}

.job-type {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-type-full-time {
    background: #d4edda;
    color: #155724;
}

.job-type-part-time {
    background: #fff3cd;
    color: #856404;
}

.job-type-contract {
    background: #d1ecf1;
    color: #0c5460;
}

.job-type-freelance {
    background: #f8d7da;
    color: #721c24;
}

.job-type-internship {
    background: #e2e3e5;
    color: #383d41;
}

.job-type-remote {
    background: #d4edda;
    color: #155724;
}

/* Widget Styling for Job Search */
.job-search-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.search-field-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-field-wrapper .search-field {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-field-wrapper .search-submit {
    padding: 10px 16px;
    background: var(--color-theme);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.search-field-wrapper .search-submit:hover {
    background: #0a6b2d;
}

.search-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-category-filter,
.job-location-filter {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
}

/* Recent Jobs Widget */
.recent-jobs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-job-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.recent-job-item:last-child {
    border-bottom: none;
}

.job-title {
    font-weight: 500;
    color: #333;
    text-decoration: none;
    line-height: 1.3;
}

.job-title:hover {
    color: var(--color-theme);
}

.job-date {
    font-size: 0.85rem;
    color: #666;
}

/* Job Categories Widget */
.job-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-categories-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.job-categories-list li:last-child {
    border-bottom: none;
}

.job-categories-list a {
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-categories-list a:hover {
    color: var(--color-theme);
}

.job-categories-list .count {
    background: #e9ecef;
    color: #6c757d;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Featured Job Styling */
.featured-job .job-post,
.featured-job .search-result {
    border-left: 4px solid var(--color-theme);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.featured-job .entry-title:before {
    content: "★ ";
    color: var(--color-theme);
    font-weight: bold;
}

/* Responsive Design for Job Components */
@media (max-width: 768px) {
    .job-details-grid {
        grid-template-columns: 1fr;
    }
    
    .job-application-buttons {
        flex-direction: column;
    }
    
    .job-apply-button,
    .job-email-button {
        min-width: auto;
        width: 100%;
    }
    
    .job-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .job-summary-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }
    
    .search-field-wrapper {
        flex-direction: column;
    }
    
    .search-field-wrapper .search-field,
    .search-field-wrapper .search-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .job-details {
        padding: 15px;
        margin: 15px 0;
    }
    
    .job-summary {
        padding: 12px;
    }
    
    .job-search-form {
        padding: 15px;
    }
}

