/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    border-bottom: none;
}

.header-top {
    background: #003366;
    padding: 10px 0;
    font-size: 14px;
}

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

.accessibility-link {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.accessibility-link:hover {
    background: white;
    color: #003366;
}

.language-selector {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.header-main {
    background: #ffc107;
    padding: 15px 0;
}

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

.menu-toggle {
    color: #003366;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(0, 51, 102, 0.1);
}

.logo {
    flex: 1;
    text-align: center;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb span {
    color: #666;
}

.breadcrumb span.current {
    color: #0066cc;
    font-weight: 500;
}

.breadcrumb i {
    color: #999;
    font-size: 12px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #003366;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    background: #fff;
    min-height: 60vh;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 3px solid #003366;
    margin-bottom: 30px;
    background: #f8f9fa;
}

.tab-button {
    background: none;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    color: #003366;
    background: rgba(0, 51, 102, 0.05);
}

.tab-button.active {
    color: #003366;
    background: #003366;
    color: white;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffc107;
}

/* Tab Content */
.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Contest Header */
.contest-header {
    background: none;
    padding: 40px 0;
    text-align: center;
    color: #003366;
}

.contest-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contest-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

/* Contest Details */
.contest-details {
    background: white;
    padding: 0;
    margin-bottom: 30px;
}

.info-table {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    background: white;
    padding: 15px 20px;
    font-weight: 600;
    color: #333;
    width: 200px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.info-value {
    padding: 15px 20px;
    flex: 1;
    color: #333;
    background: white;
    font-size: 14px;
}

/* Observations */
.observations {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 40px;
}

.observations h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

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

.observations li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #333;
    font-size: 14px;
}

.observations li::before {
    content: '•';
    color: #003366;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CEP Consultation */
.cep-consultation {
    background: none;
    padding: 0;
    margin-top: 30px;
    display: block;
}

.consultation-box {
    background: white;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    text-align: left;
    max-width: 100%;
    width: 100%;
}

.consultation-box h2 {
    color: #003366;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: left;
}

.consultation-box p {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
}

.cep-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.input-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.input-group input.cep-error {
    border-color: #dc3545;
    background-color: #f8d7da;
}

.cep-error-message {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
}

.cep-error-message i {
    color: #dc3545;
    font-size: 16px;
}

.consult-btn {
    background: #ffc107;
    color: #333;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.consult-btn:hover {
    background: #ffb300;
    transform: translateY(-1px);
}

.security-note {
    color: #666;
    font-size: 11px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.security-note i {
    color: #28a745;
    font-size: 12px;
}

/* Schedule and Positions Tables */
.schedule-table,
.positions-table {
    width: 100%;
    margin-bottom: 20px;
}

.schedule-table table,
.positions-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.schedule-table thead,
.positions-table thead {
    background: #003366;
    color: white;
}

.schedule-table th,
.positions-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    border: none;
}

.schedule-table td,
.positions-table td {
    padding: 15px;
    font-size: 14px;
    border: 1px solid #eee;
}

.schedule-table tbody tr:nth-child(even),
.positions-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.schedule-table tbody tr:hover,
.positions-table tbody tr:hover {
    background: #e9ecef;
}

.status {
    font-weight: 600;
}

.status.ongoing {
    color: #28a745;
}

.status.waiting {
    color: #666;
}

.status.open {
    color: #28a745;
}

.status.soon {
    color: #666;
}

/* Result Page Styles */
.result-page {
    background: white;
    padding: 40px 20px;
    min-height: 600px;
}

.result-container {
    max-width: 800px;
    margin: 0 auto;
}

.result-title {
    color: #003366;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.result-message {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.result-message strong {
    color: #28a745;
    font-weight: 600;
}

.loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.loading-state i {
    font-size: 20px;
    color: #003366;
}

.result-content {
    animation: fadeIn 0.5s ease;
}

.result-section {
    margin-bottom: 30px;
}

.section-title {
    background: #003366;
    color: white;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    border-radius: 4px 4px 0 0;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.result-table tr {
    border-bottom: 1px solid #eee;
}

.result-table tr:nth-child(even) {
    background: #f8f9fa;
}

.result-table td {
    padding: 12px 15px;
    font-size: 14px;
}

.result-table .label {
    width: 30%;
    font-weight: 600;
    color: #333;
}

.result-table .value {
    width: 70%;
    color: #555;
}

.highlight-blue {
    color: #0066cc !important;
    font-weight: 600;
}

.highlight-red {
    color: #dc3545 !important;
    font-weight: 600;
}

.observacoes-section {
    margin-bottom: 30px;
}

.observacoes-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.observacoes-section ul {
    list-style: disc;
    padding-left: 20px;
}

.observacoes-section li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.inscricao-section {
    text-align: center;
    margin-bottom: 20px;
}

.btn-inscricao {
    background: #ffc107;
    color: #333;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-inscricao:hover {
    background: #ffb300;
    transform: translateY(-1px);
}

.inscricao-info {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.voltar-section {
    text-align: center;
}

.btn-voltar {
    background: none;
    border: 1px solid #ddd;
    color: #666;
    padding: 12px 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
}

.btn-voltar:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

/* Responsive Result Page */
@media (max-width: 768px) {
    .result-page {
        padding: 20px 15px;
    }
    
    .result-title {
        font-size: 20px;
    }
    
    .result-table .label {
        width: 40%;
    }
    
    .result-table .value {
        width: 60%;
    }
}

/* Footer */
.footer {
    background: hsl(220 80% 35%);
    color: white;
    padding: 40px 0 0;
    position: relative;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    /* margin-bottom: 30px; */
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffc107;
}

.footer-bottom {
    background: #ffc107;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    height: 30px;
}

.copyright p {
    font-size: 12px;
    color: #333;
    margin: 0;
    text-align: center;
}

.gov-br-btn {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: background 0.3s ease;
}

.gov-br-btn:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 8px;
    }
    
    .header-content {
        justify-content: center;
        gap: 20px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .contest-header h1 {
        font-size: 24px;
    }
    
    .contest-subtitle {
        font-size: 16px;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: left;
        border-bottom: 1px solid #eee;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .cep-consultation {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        margin: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .contest-info h1 {
        font-size: 24px;
    }
    
    .consultation-box h2 {
        font-size: 20px;
    }
    
    .consult-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane.active {
    animation: fadeIn 0.5s ease;
}

/* Focus styles for accessibility */
.tab-button:focus,
.consult-btn:focus,
.input-group input:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Verification Page Styles */
.verification-page {
    background: white;
    padding: 40px 20px;
    min-height: 400px;
}

.verification-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.verification-title {
    color: #003366;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.verification-description {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.verification-form {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    background: white;
}

.verification-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.verification-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.verification-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    color: #333;
    font-weight: 600;
    transition: border-color 0.3s ease;
}

.verification-form input:focus {
    border-color: #003366;
    outline: none;
}

.verification-form input::placeholder {
    color: #999;
    font-weight: 400;
}

.btn-verify {
    width: 100%;
    background: linear-gradient(135deg, #ffd966 0%, #ffc107 100%);
    color: #333;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-verify:hover {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.lgpd-text {
    font-size: 11px;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

/* Responsive Verification Page */
@media (max-width: 768px) {
    .verification-page {
        padding: 20px 15px;
    }
    
    .verification-title {
        font-size: 18px;
    }
    
    .verification-form {
        padding: 20px;
    }
    
    .verification-form input {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .btn-verify {
        font-size: 14px;
        padding: 15px;
    }
}

/* Confirmation Page Styles */
.confirmation-page {
    background: white;
    padding: 40px 20px;
    min-height: 400px;
}

.confirmation-container {
    max-width: 700px;
    margin: 0 auto;
}

.confirmation-title {
    color: #003366;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.confirmation-description {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #155724;
}

.success-message i {
    color: #28a745;
    font-size: 16px;
}

.success-message strong {
    font-weight: 600;
}

.confirmation-section {
    margin-bottom: 25px;
}

.confirmation-section .section-title {
    background: #003366;
    color: white;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    border-radius: 4px 4px 0 0;
}

.confirmation-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.confirmation-table tr {
    border-bottom: 1px solid #eee;
}

.confirmation-table tr:last-child {
    border-bottom: none;
}

.confirmation-table tr:nth-child(even) {
    background: #f8f9fa;
}

.confirmation-table td {
    padding: 12px 15px;
    font-size: 14px;
}

.confirmation-table .label {
    width: 35%;
    font-weight: 600;
    color: #333;
}

.confirmation-table .value {
    width: 65%;
    color: #555;
}

.confirmation-table .highlight-blue {
    color: #0066cc !important;
    font-weight: 600;
}

.confirmation-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-confirmar {
    width: 100%;
    background: #ffc107;
    color: #333;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-confirmar:hover {
    background: #ffb300;
    transform: translateY(-1px);
}

.btn-corrigir {
    width: 100%;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-corrigir:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

/* Responsive Confirmation Page */
@media (max-width: 768px) {
    .confirmation-page {
        padding: 20px 15px;
    }
    
    .confirmation-title {
        font-size: 18px;
    }
    
    .confirmation-description {
        font-size: 13px;
    }
    
    .confirmation-table .label {
        width: 40%;
    }
    
    .confirmation-table .value {
        width: 60%;
    }
    
    .btn-confirmar {
        font-size: 14px;
        padding: 15px;
    }
    
    .btn-corrigir {
        font-size: 13px;
        padding: 12px;
    }
}

/* Payment Page Styles */
.payment-page {
    background: white;
    padding: 40px 20px;
    min-height: 400px;
}

.payment-container {
    max-width: 800px;
    margin: 0 auto;
}

.payment-title {
    color: #003366;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.protocolo-box {
    background: #f8f9fa;
    border: 2px solid #003366;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
}

.protocolo-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.protocolo-value {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    font-family: monospace;
}

.protocolo-date {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

.alerta-pagamento {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alerta-pagamento i {
    color: #ffc107;
    font-size: 24px;
    margin-top: 2px;
}

.alerta-content strong {
    color: #856404;
    display: block;
    margin-bottom: 5px;
}

.alerta-content p {
    color: #856404;
    font-size: 13px;
    margin: 0;
}

.payment-section {
    margin-bottom: 25px;
}

.payment-section .section-title {
    background: #003366;
    color: white;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    border-radius: 4px 4px 0 0;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.payment-table tr {
    border-bottom: 1px solid #eee;
}

.payment-table tr:last-child {
    border-bottom: none;
}

.payment-table tr:nth-child(even) {
    background: #f8f9fa;
}

.payment-table td {
    padding: 12px 15px;
    font-size: 14px;
}

.payment-table .label {
    width: 35%;
    font-weight: 600;
    color: #333;
}

.payment-table .value {
    width: 65%;
    color: #555;
}

.payment-table .situacao-apto {
    color: #0066cc;
    font-weight: 600;
}

/* O que levar section */
.o-que-levar {
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    padding: 20px;
    background: #f8f9fa;
}

.item-levar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.item-levar i {
    color: #28a745;
    font-size: 16px;
    flex-shrink: 0;
}

.item-levar span {
    font-size: 14px;
    color: #333;
}

.payment-box {
    background: #f8f9fa;
    border: 2px solid #003366;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.payment-box-title {
    color: #003366;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-box-title i {
    font-size: 24px;
}

.valor-inscricao {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.pix-info {
    text-align: center;
    color: #17a2b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.pix-info i {
    margin-right: 5px;
}

.valor-label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.valor-amount {
    font-size: 32px;
    font-weight: bold;
    color: #003366;
}

.qr-code-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.qr-code {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    text-align: center;
    color: #999;
}

.qr-placeholder i {
    font-size: 64px;
    display: block;
    margin-bottom: 10px;
}

.qr-instructions {
    flex: 1;
}

.qr-instructions p {
    margin-bottom: 10px;
    color: #333;
}

.qr-instructions ol {
    padding-left: 20px;
    color: #555;
    font-size: 14px;
}

.qr-instructions li {
    margin-bottom: 5px;
}

.pix-code-box {
    margin-bottom: 20px;
}

.pix-code-box label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.pix-code-wrapper {
    display: flex;
    gap: 10px;
}

.pix-code-wrapper input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    font-family: monospace;
    background: white;
}

.btn-copy {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-copy:hover {
    background: #5a6268;
}

.btn-copy.copied {
    background: #28a745;
}

.btn-pago {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-pago:hover {
    background: #218838;
    transform: translateY(-1px);
}

.btn-pagar {
    width: 100%;
    background: #ffc107;
    color: #333;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 0;
}

.btn-pagar:hover {
    background: #ffb300;
    transform: translateY(-1px);
}

/* Payment Box Simple - Estilo igual à imagem */
.payment-box-simple {
    background: #fff8e1;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    margin: 30px 0 20px 0;
}

.taxa-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.taxa-valor {
    font-size: 42px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
    line-height: 1;
}

.taxa-info {
    font-size: 14px;
    color: #666;
}

.pagamento-seguro {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.pagamento-seguro i {
    color: #28a745;
    margin-right: 5px;
}

.pagamento-info {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.pagamento-info i {
    color: #17a2b8;
}

.payment-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.payment-actions .btn-voltar,
.payment-actions .btn-imprimir {
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-actions .btn-voltar {
    background: none;
    border: 1px solid #ddd;
    color: #666;
}

.payment-actions .btn-voltar:hover {
    background: #f8f9fa;
}

.payment-actions .btn-imprimir {
    background: #003366;
    color: white;
    border: none;
}

.payment-actions .btn-imprimir:hover {
    background: #002244;
}

/* Responsive Payment Page */
@media (max-width: 768px) {
    .payment-page {
        padding: 20px 15px;
    }
    
    .payment-title {
        font-size: 18px;
    }
    
    .protocolo-value {
        font-size: 20px;
    }
    
    .qr-code-container {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .qr-instructions {
        text-align: center;
    }
    
    .qr-instructions ol {
        text-align: left;
        display: inline-block;
    }
    
    .pix-code-wrapper {
        flex-direction: column;
    }
    
    .btn-copy {
        justify-content: center;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .valor-amount {
        font-size: 28px;
    }
}

