body {
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    color: #222;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#logo_nav {
    max-width: 65px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a:hover {
    color: #5b3ef0;
}

nav a::before {
    content: '←';
    font-size: 1.2rem;
    transition: transform 0.3s;
}

nav a:hover::before {
    transform: translateX(-5px);
}

.entrar {
    background-color: #5b3ef0;
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.entrar:hover {
    background-color: #fff;
    color: #5b3ef0;
    border-color: #5b3ef0;
    box-shadow: 0 5px 15px rgba(91, 62, 240, 0.2);
}

.careers-hero {
    background-color: #1a1a2e; 
    background-image: radial-gradient(circle at 80% 20%, #2a2a5c 0%, #111 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background-color: rgba(91, 62, 240, 0.2);
    color: #a389ff;
    border: 1px solid #5b3ef0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-hero {
    background-color: #5b3ef0;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-hero:hover {
    background-color: #4a30d1;
    transform: translateY(-3px);
}

.culture-section {
    padding: 80px 6%;
    background-color: #fff;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.culture-card {
    background: #f9f9ff;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s;
}

.culture-card:hover {
    transform: translateY(-5px);
}

.culture-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.culture-card h3 {
    color: #2a2a5c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.culture-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.jobs-section {
    padding: 80px 20px;
    background-color: #f4f4fa;
}

.jobs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2a2a5c;
    margin-bottom: 50px;
}

.jobs-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.2s;
    border: 1px solid transparent;
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #e0e0f5;
    transform: translateX(5px);
}

.job-info h3 {
    color: #2a2a5c;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.job-tags span {
    background-color: #ececfc;
    color: #5b3ef0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 8px;
}

.btn-apply {
    background-color: transparent;
    color: #5b3ef0;
    border: 2px solid #5b3ef0;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-apply:hover {
    background-color: #5b3ef0;
    color: white;
}

.cta-talent {
    text-align: center;
    padding: 80px 20px;
    background-color: #fff;
}

.cta-talent h2 {
    color: #2a2a5c;
    margin-bottom: 15px;
}

.cta-talent p {
    color: #666;
    margin-bottom: 30px;
}

.btn-outline {
    background-color: #fff;
    color: #2a2a5c;
    border: 2px solid #2a2a5c;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #2a2a5c;
    color: #fff;
}

@media (max-width: 600px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .btn-apply {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}