/* trabalhe_conosco-style.css */

.page-content {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: #e0e0e0;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: #84cc16;
    text-align: center;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #a0a0a0;
}

.content-section {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.content-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    color: #84cc16;
    margin-bottom: 25px;
    text-align: center;
}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.content-section ul li i {
    color: #84cc16;
    margin-right: 10px;
    font-size: 1.2em;
}

.option-card {
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid #84cc16;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(132, 204, 22, 0.2);
}

.option-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.option-card h3 i {
    color: #84cc16;
    margin-right: 10px;
}

.option-card p {
    color: #a0a0a0;
    margin-bottom: 15px;
}

.btn-cta-small {
    display: inline-block;
    background: linear-gradient(135deg, #84cc16 0%, #a3e635 100%);
    color: #0a0a0a;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-small:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(132, 204, 22, 0.4);
}

.cta-section-small {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.cta-section-small h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2em;
    }
    .page-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .content-section h2 {
        font-size: 1.8em;
    }
    .content-section ul li {
        font-size: 1em;
    }
    .option-card h3 {
        font-size: 1.3em;
    }
    .cta-section-small h3 {
        font-size: 1.5em;
    }
}