/* PracaOdJutra - Morning Fresh Theme */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #7ED321;
    --accent-color: #F5A623;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --background-light: #F8F9FA;
    --background-white: #FFFFFF;
    --border-color: #E1E8ED;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #7ED321 100%);
    --gradient-secondary: linear-gradient(135deg, #F5A623 0%, #FF6B6B 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: var(--gradient-secondary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow-medium);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Job Listings */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.job {
    background: var(--background-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.job:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.job-header {
    margin-bottom: 1.5rem;
}

.job-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.company-link, .company-name {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.company-link:hover {
    text-decoration: underline;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job-details > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.icon {
    font-size: 1.1rem;
}

.job-contact {
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

.job-description {
    margin-bottom: 1.5rem;
}

.job-description p {
    color: var(--text-light);
    line-height: 1.6;
}

.job-actions {
    text-align: center;
}

.btn-details {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-details:hover {
    background: #3A7BC8;
    transform: translateY(-2px);
}

/* Partners Section */
.partners {
    background: var(--background-white);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.partners h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.partner-link {
    display: block;
    padding: 1rem;
    text-align: center;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.partner-link:hover {
    background: var(--background-light);
}

/* Tips Section */
.tips {
    background: var(--background-white);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.tips h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.tip-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.tip-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tip-content {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: #BDC3C7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 1rem;
    color: #BDC3C7;
}

/* Job Detail Page */
.job-detail {
    background: var(--background-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    margin: 2rem 0;
}

.job-detail-header {
    text-align: center;
    margin-bottom: 2rem;
}

.job-detail-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.job-detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item .label {
    font-weight: 500;
    color: var(--text-dark);
}

.meta-item .value {
    color: var(--text-light);
}

.job-detail-contact {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background: #6BCF1A;
}

.job-detail-description {
    margin-bottom: 2rem;
}

.job-detail-description h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.description-short {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.description-full {
    line-height: 1.8;
    color: var(--text-light);
}

.job-detail-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text-light);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background: var(--text-dark);
}

/* All Jobs Page */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jobs-list .job {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-details {
        grid-template-columns: 1fr;
    }
    
    .job-detail-actions {
        flex-direction: column;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job {
    animation: fadeInUp 0.6s ease forwards;
}

.job:nth-child(1) { animation-delay: 0.1s; }
.job:nth-child(2) { animation-delay: 0.2s; }
.job:nth-child(3) { animation-delay: 0.3s; }
.job:nth-child(4) { animation-delay: 0.4s; }
.job:nth-child(5) { animation-delay: 0.5s; }
.job:nth-child(6) { animation-delay: 0.6s; }
.job:nth-child(7) { animation-delay: 0.7s; }
.job:nth-child(8) { animation-delay: 0.8s; }
.job:nth-child(9) { animation-delay: 0.9s; }
.job:nth-child(10) { animation-delay: 1.0s; }
.job:nth-child(11) { animation-delay: 1.1s; }
.job:nth-child(12) { animation-delay: 1.2s; }
