* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #3b4238;
    /* Fundo verde escuro para simular o print */
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    color: #444;
}

.wrapper {
    background-color: #ffffff;
    width: 100%;
    max-width: 414px;
    /* Largura de celular */
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow-x: hidden;
}

/* Header */
.header {
    background-color: #da291c;
    padding: 15px 20px;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 35px;
    filter: brightness(0) invert(1);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.notification-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #f05a5a;
    color: white;
    font-size: 9px;
    font-weight: bold;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.breadcrumb p {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Banner */
.banner {
    width: 100%;
}

.banner-img {
    width: 100%;
    display: block;
    height: auto;
}

/* Main Content */
.main-content {
    padding: 20px;
}

h1 {
    font-size: 24px;
    font-weight: 400;
    color: #222;
    margin-bottom: 15px;
}

.description {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.description strong {
    color: #444;
}

.highlight-text {
    color: #da291c;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Cards */
.card {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.card h3 {
    color: #da291c;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.card ul,
.card ol {
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.card li {
    margin-bottom: 10px;
}

.card li strong {
    color: #444;
}

.card-benefits {
    background-color: #fafafa;
    border: 1px solid #eaeaea;
}

.card-info {
    background-color: #f0f7ff;
    border: 1px solid #d6e8fa;
    color: #555;
    font-size: 13px;
    line-height: 1.8;
}

.card-info p {
    margin-bottom: 5px;
}

.card-info p:last-child {
    margin-bottom: 0;
}

.card-info strong {
    color: #444;
}

.card-why {
    background-color: #f5f4f6;
    border: 1px solid #e5e5e5;
}

.urgency-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 15px;
    margin-bottom: 20px;
}

.urgency-note i {
    color: #da291c;
    font-size: 12px;
    margin-top: 2px;
}

.urgency-note p {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

.urgency-note strong {
    color: #444;
}

.btn-primary {
    display: block;
    width: 100%;
    background-color: #da291c;
    color: white;
    text-align: center;
    padding: 14px 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(218, 41, 28, 0.3);
}

/* Footer */
.footer {
    background-color: #da291c;
    color: white;
}

.footer-container {
    padding: 20px 20px 10px 20px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
}

.socials-apps h4 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.app-links {
    display: flex;
    gap: 15px;
}

.app-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom {
    background-color: #cc2519;
    /* Ligeiramente mais escuro que o footer */
    padding: 15px 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    line-height: 1.4;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* Cadastro Page Styles */
.cadastro-main {
    padding: 0;
    background-color: #fff;
    padding-bottom: 40px;
}

.cadastro-header {
    background-color: #da291c;
    color: white;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.cadastro-header h2 {
    font-size: 18px;
    font-weight: 500;
}

.cadastro-title {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 25px;
}

.cadastro-title h2 {
    color: #da291c;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cadastro-title p {
    font-size: 14px;
    color: #888;
    line-height: 1.4;
}

.form-card {
    background-color: #f9f9fc;
    border: 1px solid #d8d8f0;
    border-radius: 8px;
    margin: 0 20px 20px 20px;
    padding: 20px;
}

.form-vaga {
    color: #da291c;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #da291c;
}


.success-message {
    color: #555;
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.success-message i {
    color: #666;
    font-size: 14px;
}

.escolaridade-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.escolaridade-btn {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.escolaridade-btn.selected {
    border-color: #da291c;
    color: #da291c;
    background-color: #fff5f5;
    font-weight: 500;
}

.btn-submit {
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

/* Teste de Aptidao Page Styles */
.test-card {
    margin: 20px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
}

.test-header {
    background-color: #da291c;
    color: white;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 400;
}

.test-body {
    padding: 20px 0 0 0;
}

.question-container {
    padding: 0 20px 20px 20px;
}

.question-step {
    margin-bottom: 0;
}

.question-title {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    margin-bottom: 25px;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.option-btn {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1.4;
}

.option-btn.selected {
    border-color: #da291c;
    background-color: #fcf5f5;
    color: #555;
}

.action-bar {
    display: flex;
    justify-content: flex-end;
}

.btn-next {
    background-color: #da291c;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(218, 41, 28, 0.3);
}

/* Result Page Styles */
.result-logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.result-title {
    color: #da291c;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}

.result-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.score-box {
    background-color: #f9f6f6;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.score-box p {
    color: #da291c;
    font-size: 15px;
    margin-bottom: 5px;
}

.score-number {
    font-size: 24px;
    color: #666;
}

.score-number span {
    font-size: 40px;
    font-weight: 700;
    color: #da291c;
}

.ranking-title {
    color: #da291c;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.ranking-table th, .ranking-table td {
    border: 1px solid #eee;
    padding: 10px 8px;
    text-align: left;
    font-size: 12px;
    color: #555;
}

.ranking-table th {
    background-color: #fdfdfd;
    font-weight: 600;
}

.ranking-table th:first-child, .ranking-table td:first-child {
    text-align: center;
    width: 40px;
}

.ranking-table th:last-child, .ranking-table td:last-child {
    text-align: center;
    width: 50px;
}

.highlight-row {
    color: #da291c !important;
    font-weight: 600;
}

.highlight-row td {
    color: #da291c;
}

.ranking-note {
    font-size: 11px;
    color: #999;
    text-align: center;
    font-style: italic;
}

/* Shift Selection Styles */
.shift-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.circle-img {
    width: 100px;
    height: 100px;
    background-color: #da291c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

.shift-main-title {
    color: #da291c;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.shift-info-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.shift-info-box h4 {
    color: #da291c;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.shift-info-box ul {
    list-style: none;
    padding-left: 0;
}

.shift-info-box ul li {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
}

.shift-info-box ul li::before {
    content: "•";
    color: #da291c;
    font-weight: bold;
    display: inline-block;
    width: 1em;
}

.shift-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.selected-card {
    background-color: #da291c;
    border: none;
    color: white;
    padding: 21px; /* Compensa a borda de 1px pra não pular */
    box-shadow: 0 8px 20px rgba(218, 41, 28, 0.3);
}

.selected-card h5,
.selected-card p,
.selected-card .vagas-disp {
    color: white !important;
}

.selected-card .shift-icon-circle {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.selected-card .shift-time {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.selected-card .adicional-noturno {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.selected-card hr {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.selected-card .btn-selecionar-turno {
    background-color: white;
    color: #da291c;
    border: none;
    font-weight: 700;
}

.shift-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 10px auto;
}

.shift-card h5 {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.shift-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
}

.shift-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.adicional-noturno {
    background-color: #ffeef2;
    color: #d81b60;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.shift-card hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.vagas-disp {
    font-size: 12px !important;
    color: #888 !important;
}

.btn-selecionar-turno {
    background-color: #f5f0ff;
    color: #da291c;
    border: 1px solid #e0d4ff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}



.btn-prosseguir-turno {
    background-color: #ccc;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

/* Contratacao Page Styles */
.contratacao-title {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
}

.contratacao-highlight {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 30px;
}

.contratacao-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.benefits-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.benefits-header {
    background-color: #fafafa;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.benefits-body {
    padding: 20px;
}

.benefits-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

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

.benefits-list li {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.icon-check {
    color: #198754;
    margin-right: 12px;
    font-size: 16px;
}

.next-step-title {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.next-step-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-carteira {
    background-color: #da291c;
    color: white;
    border: none;
    border-bottom: 5px solid #4a148c;
    border-radius: 6px;
    padding: 16px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
}