.s6a3-game-container{
    margin-top: 50px;
}
.s6a3-activity-intro h2 {
    color: white;
    margin-top: 0;
    font-size: 28px;
}
.s6a3-activity-intro .intro-text{
    background:#fff;
    color:#000;
    padding:0;
}
.intro-text p{
    margin:0;
    padding:0;
}
.game-progress {
    display: flex;
    justify-content: space-between;
    margin: 80px 0 50px;
    position: relative;
}
.s6a3-game-container p:not(.has-background):last-of-type {
    text-align: left;
}
.game-progress:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
}
.game-progress .progress-step.active {
    background: #F47600;
    color: white;
    border-color: #F47600;
}

.game-progress .progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.game-progress .step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #e0e0e0;
    color: #666;
    border-radius: 50%;
    margin-bottom: 10px;
    font-weight: bold;
}

.game-progress .s6a4-progress-step.active .step-number {
    background:#F47600;
    color: white;
}

.step-label {
    display: block;
    font-size: 14px;
    color: #666choice-point-image-section
}

.game-section {
    margin-bottom: 20px;
    display: none;
}

.game-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
   
}
.form-p-e{
    display:block;
    margin:50px 0 0 50px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.afasta-options .option-card,
.aproxima-options .action-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display:flex;
    justify-content: space-between;
    align-items:center;
}
.afasta-options .option-card:hover,
.aproxima-options .action-card:hover {
    border-color: #4CAF50;
    background: #f8fff8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.afasta-options input[type="radio"] {
    margin-right: 10px;
}

.afasta-options label {
    cursor: pointer;
    font-size: 16px;
    margin: 0;
    display: inline;
}
.action-card h4{
    margin:0;
    padding:0;
}
.s6a3-btn {
    width:auto!important;
    border: 0;
    border-radius: 12px;
    background: #F47600;
    display: inline-block;
    height: 56px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #F7FAFC;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: all 0.3s ease;
}

.s6a3-btn:hover {
    background: #CD6300;
    transform: scale(1.05);
}

.s6a3-btn.small {
    padding: 8px 20px;
    font-size: 14px!important;
    min-width: 120px;
}

.s6a3-btn.secondary, .back-btn {
    width:auto!important;
    border: 0;
    border-radius: 12px;
    background: #eee;
    display: inline-block;
    height: 56px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #333;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: all 0.3s ease;
    margin-left:24px;
}
.back-btn {margin-left:0px;}
/* Modal de feedback */
#s6a3-feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h4 {
    margin: 0;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal-body {
    margin-bottom: 25px;
}

.modal-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Estilos para o formulário */
.form-part {
    background: white;
    margin-top: 20px;
}

.question {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.question:last-child {
    border-bottom: none;
}

.question p {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.likert-scale {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.likert-scale label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}
.likert-scale input[type="radio"] {
    margin-bottom: 5px;
}

.scale-labels {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.no-options {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

.no-options p {
    color: #666;
    margin-bottom: 10px;
}

/* Seção final */
.s6a3-final-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    border-radius: 15px;
    margin: 30px 0;
}

.s6a3-final-section h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 20px;
}

.final-message {
    max-width: 700px;
    margin: 0 auto;
}

.download-section {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.next-steps {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

/* Estilos para o formulário de planeamento */
.form-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.form-header h4 {
    color: #333;
    margin: 10px 0 5px 0;
}

.action-title {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.form-part {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-part.active {
    display: block;
}

.s6a3-game-container .form-group {
    border:0!important;
    margin:0!important;
}

.s6a3-game-container .form-group label {
    display: block;
    font-weight: 600;
    color: #333;
}

.likert-scale {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    flex-wrap: wrap;
}

.likert-scale label {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    min-width: 50px;
}

.likert-scale input[type="radio"] {
    margin-bottom: 8px;
    width: 20px;
    height: 20px;
}

.scale-labels {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    padding-left:10px;
}

/* Checkbox groups */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.checkbox-item:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.checkbox-item .checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark:after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Textareas */
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s;
}

textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Form actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.s6a3-btn.success {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

/* Feedback messages */
.feedback-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    animation: slideIn 0.3s ease;
}

.feedback-message.warning {
    background: #fff3cd;
    border-color: #ffeaa7;
}

.feedback-message p {
    margin: 0 0 10px 0;
    color: #856404;
}

/* Toast notifications */
.s6a3-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    max-width: 300px;
    display: none;
}

/* Selected point display */
.selected-point {
    margin-top: 50px;
    margin-bottom: 20px;
}

.selected-point p b {
    color: #F47600;
}

.selected-point p {
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .likert-scale {
        flex-wrap: wrap;
    }
    
    .likert-scale label {
        min-width: 40px;
        padding: 8px 5px;
        margin: 3px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .s6a3-btn {
        width: 100%;
        margin: 5px 0;
    }
}
/* Estilos para radio buttons circulares laranja */
.likert-scale {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0;
    flex-wrap: nowrap;
}

.likert-scale label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 50px;
}

.likert-scale input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.likert-scale .radio-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #666;
    background: white;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.likert-scale label:hover .radio-circle {
    border-color: #ff9800;
    background: #fff3e0;
}

.likert-scale input[type="radio"]:checked + .radio-circle {
    background: #ff9800 !important;
    border-color: #ff9800 !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

.scale-labels {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    font-size: 12px;
    color: #666;
    padding: 0 5px;
}

/* Estilos para checkboxes/radio buttons da Parte 2 */
.checkbox-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    position: relative;
}

.checkbox-item:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.checkbox-item input[type="radio"],
.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item .checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-right: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
    margin-top: 3px;
}

.checkbox-item:hover .checkmark {
    border-color: #ff9800;
}

.checkbox-item input[type="radio"]:checked + .checkmark,
.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #ff9800;
    border-color: #ff9800;
}

.checkbox-item input[type="radio"]:checked + .checkmark:after,
.checkbox-item input[type="checkbox"]:checked + .checkmark:after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-item .checkbox-text {
    flex: 1;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

/* Mensagem de retorno para cada checkbox (Parte 2) */
.checkbox-item .feedback-message {
    display: none;
    width: 100%;
    margin-top: 10px;
    padding: 12px 15px;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
    font-size: 14px;
    color: #1565c0;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

/* Quando a checkbox está selecionada (Parte 2 - apenas uma seleção) */
.checkbox-item.checked {
    background: #fff3e0;
    border-color: #ff9800;
}

.checkbox-item.checked .checkbox-text {
    color: #e65100;
    font-weight: 500;
}

.checkbox-item.checked .feedback-message {
    display: block;
}

/* Para checkboxes múltiplas (Parte 3) */
.checkbox-item.multiple.checked {
    background: #e8f5e9;
    border-color: #4CAF50;
}

.checkbox-item.multiple.checked .checkbox-text {
    color: #2e7d32;
}

/* Animação para aparecer as mensagens */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .likert-scale {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .likert-scale label {
        width: 45px;
        height: 45px;
    }
    
    .likert-scale .radio-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .scale-labels {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}
/* ========== ESTILOS PARA PARTE 2 (RADIO BUTTONS) ========== */

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.radio-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    background: white;
}

.radio-option:hover {
    border-color: #ff9800;
    background: #fff8e1;
}

.radio-option.selected {
    border-color: #ff9800;
    background: #fff3e0;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.radio-label {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-right: 12px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.radio-label:hover .radio-custom {
    border-color: #ff9800;
    background: #fff3e0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    background: #ff9800;
    border-color: #ff9800;
}

.radio-label input[type="radio"]:checked + .radio-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    flex: 1;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.radio-option.selected .radio-text {
    color: #000;
    font-weight: 500;
}

/* Mensagem de feedback (FORA da label) */
.radio-feedback {
    display: none;
    padding: 15px;
    margin: 0 16px 16px 16px;
    background: #fff;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
    margin-top: -5px;
}

.radio-option.selected .radio-feedback {
    display: block;
}

/* Animação para a mensagem de feedback */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
}

/* ========== ESTILOS PARA PARTE 3 (CHECKBOXES MÚLTIPLAS) ========== */

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-item.multiple {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.checkbox-item.multiple:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.checkbox-item.multiple input[type="checkbox"] {
    display: none;
}

.checkbox-item.multiple .checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-right: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
    margin-top: 2px;
}

.checkbox-item.multiple:hover .checkmark {
    border-color: #4CAF50;
}

.checkbox-item.multiple input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-item.multiple input[type="checkbox"]:checked + .checkmark:after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-item.multiple .checkbox-text {
    flex: 1;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

.checkbox-item.multiple.checked {
    background: #e8f5e9;
    border-color: #4CAF50;
}

.checkbox-item.multiple.checked .checkbox-text {
    color: #2e7d32;
    font-weight: 500;
}

/* ========== AJUSTES RESPONSIVOS ========== */

@media (max-width: 768px) {
    .radio-label {
        padding: 12px;
    }
    
    .radio-feedback {
        padding: 12px;
        margin: 0 12px 12px 12px;
        font-size: 13px;
    }
    
    .radio-text {
        font-size: 14px;
    }
    
    .checkbox-item.multiple {
        padding: 12px;
    }
    
    .checkbox-item.multiple .checkbox-text {
        font-size: 14px;
    }
}

/* Remove os estilos antigos da Parte 2 que não são mais necessários */
.checkbox-item:not(.multiple) {
    display: none;
}
/* ========== ESTILOS PARA SELEÇÃO DE PONTO DE ESCOLHA ========== */

.pontos-escolha {
    margin: 25px 0 30px 0;
}

.ponto-opcao {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 12px;
}

.ponto-opcao:last-child {
    margin-bottom: 0;
}

.ponto-opcao:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.ponto-opcao.selected {
    border-color: #667eea;
    background: #f0f3ff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.ponto-opcao .radio-label {
    display: flex;
    align-items: flex-start;
    padding: 18px 20px;
    cursor: pointer;
    margin: 0;
    position: relative;
    width: 100%;
}

.ponto-opcao .radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ponto-opcao .radio-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 15px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
    margin-top: 0;
    background: white;
}

.ponto-opcao:hover .radio-custom {
    border-color: #667eea;
    background: #f0f3ff;
}

.ponto-opcao.selected .radio-custom {
    background: #667eea;
    border-color: #667eea;
}

.ponto-opcao.selected .radio-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.ponto-opcao .radio-text {
    flex: 1;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.ponto-opcao:hover .radio-text {
    color: #5a67d8;
}

.ponto-opcao.selected .radio-text {
    color: #4c51bf;
    font-weight: 600;
}

/* ========== ESTILOS PARA PARTE 2 (RADIO BUTTONS) ========== */

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 20px 0;
}

.radio-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    background: white;
}

.radio-option:hover {
    border-color: #ff9800;
    background: #fff8e1;
}

.radio-option.selected {
    border-color: #ff9800;
    background: #fff3e0;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.radio-label {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-right: 12px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
    margin-top: 2px;
}

.radio-label:hover .radio-custom {
    border-color: #ff9800;
    background: #fff3e0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    background: #ff9800;
    border-color: #ff9800;
}

.radio-label input[type="radio"]:checked + .radio-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    flex: 1;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.radio-option.selected .radio-text {
    color: #000;
    font-weight: 600;
}

/* Mensagem de feedback (FORA da label) */
.radio-feedback {
    display: none;
    padding: 15px;
    margin: 0 16px 16px 16px;
    background: #fff;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
    margin-top: -5px;
}

.radio-option.selected .radio-feedback {
    display: block;
}

/* Animação para a mensagem de feedback */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
}

/* ========== ESTILOS PARA PARTE 3 (CHECKBOXES MÚLTIPLAS) ========== */

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-item.multiple {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.checkbox-item.multiple:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.checkbox-item.multiple input[type="checkbox"] {
    display: none;
}

.checkbox-item.multiple .checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-right: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
    margin-top: 2px;
}

.checkbox-item.multiple:hover .checkmark {
    border-color: #4CAF50;
}

.checkbox-item.multiple input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-item.multiple input[type="checkbox"]:checked + .checkmark:after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-item.multiple .checkbox-text {
    flex: 1;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

.checkbox-item.multiple.checked {
    background: #e8f5e9;
    border-color: #4CAF50;
}

.checkbox-item.multiple.checked .checkbox-text {
    color: #2e7d32;
    font-weight: 500;
}

/* ========== ESTILOS PARA AÇÕES NA SEÇÃO 2 ========== */

.aproxima-options .action-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 5px 0;
    transition: all 0.3s ease;
    background: white;
}

.aproxima-options .action-card:hover {
    border-color: #ddd;
    background: #eee;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.aproxima-options .action-card h5 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.aproxima-options .action-card p {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
}

/* ========== AJUSTES RESPONSIVOS ========== */

@media (max-width: 768px) {
    .ponto-opcao .radio-label {
        padding: 15px;
    }
    
    .ponto-opcao .radio-text {
        font-size: 15px;
    }
    
    .ponto-opcao .radio-custom {
        width: 22px;
        height: 22px;
        margin-right: 12px;
    }
    
    .ponto-opcao.selected:before {
        font-size: 10px;
        padding: 2px 8px;
        right: 10px;
    }
    
    .radio-label {
        padding: 12px;
    }
    
    .radio-feedback {
        padding: 12px;
        margin: 0 12px 12px 12px;
        font-size: 13px;
    }
    
    .radio-text {
        font-size: 14px;
    }
    
    .checkbox-item.multiple {
        padding: 12px;
    }
    
    .checkbox-item.multiple .checkbox-text {
        font-size: 14px;
    }
    
    .aproxima-options .action-card {
        padding: 15px;
    }
}

/* Remove estilos antigos não utilizados */
.afasta-options .option-card {
    display: none;
}
/* ========== ESTILOS PARA IMAGENS DAS PARTES ========== */

.form-part-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.form-image {
    flex: 0 0 500px;
}

.form-image .parte-image {
    width: 100%;
    height: auto;
}

.form-questions {
    flex: 1;
    min-width: 300px;
}

/* Estilos para botões dentro do feedback */
.feedback-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feedback-actions .s6a3-btn.small {
    padding: 6px 12px;
    font-size: 13px;
    min-width: auto;
}

/* ========== AJUSTES RESPONSIVOS PARA IMAGENS ========== */

@media (max-width: 992px) {
    .form-part-content {
        flex-direction: column;
    }
    
    .form-image {
        flex: 0 0 auto;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .form-image {
        max-width: 250px;
    }
    
    .form-questions {
        min-width: auto;
    }
}
/* ========== ESTILOS PARA IMAGEM DO PONTO DE ESCOLHA ========== */
.titulo{display:flex;width:100%;}
.duas-colunas{
    display:flex;
}
.choice-point-image-section {
    margin: 40px 0;
}

.choice-point-image-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto 5px auto;
    background: white;
    overflow: hidden;
}

.choice-point-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.choice-point-instruction {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 6px solid #FF9800;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.1);
}

.choice-point-instruction p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    color: #343a40;
}

.image-controls {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

#choicePointImageContainer {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-message {
    position: absolute;
    color: #6c757d;
    font-style: italic;
    font-size: 18px;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.error {
    color: #dc3545;
    padding: 25px;
    text-align: center;
    font-size: 16px;
    background: #f8d7da;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
}


/* Responsividade */
@media (max-width: 768px) {
    .choice-point-image-section {
        padding: 20px;
        margin: 25px 0;
    }
    
    .choice-point-image-wrapper {
        padding: 15px;
    }
    
    .choice-point-instruction p {
        font-size: 18px;
    }
    
    
    #choicePointImageContainer {
        min-height: 300px;
        padding: 15px;
    }
    
    .image-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .image-controls .s6a3-btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .choice-point-image-section {
        padding: 15px;
    }
    
    .choice-point-instruction p {
        font-size: 16px;
    }
}
/* ========== ESTILOS PARA MODAL DE CARTAS DE VALOR ========== */

.valor-cards-modal .modal-content {
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.valor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Estilos para impressão das cartas */
@media print {
    .valor-cards-modal,
    .modal-overlay {
        display: none !important;
    }
    
    body * {
        visibility: hidden;
    }
    
    .print-section,
    .print-section * {
        visibility: visible;
    }
    
    .print-section {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}

/* Botão de download das cartas no feedback */
.feedback-actions .s6a3-btn.small {
    padding: 8px 16px;
    font-size: 14px;
    min-width: 140px;
    margin: 5px;
}

.feedback-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}
/* ========== ESTILOS PARA MODAL DE CARTAS DE VALOR ========== */

.valor-cards-modal .modal-content {
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.valor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-long {
    display: inline-flex;
    flex-direction: column;
   width: 100%;
    height: auto;
    padding: 24px;
    border: 2px solid #35967D;
    border-radius: 10px;
    margin-bottom: 25px;
    cursor: pointer;
    background: #ecf0f1 url(https://plataforma.act2parenteens.pt/wp-content/uploads/2025/card-fundo.png) no-repeat;
    background-size: cover;
    align-items: center;
    text-align: center;
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    line-height: 120%;
}
.card-long .card-text {
    font-size: 20px !important;
}
.card-description {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: auto !important;
    color: #333 !important;
    padding: 8px !important;
    margin-top: 5px !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: normal !important;
}
/* Estilos para impressão das cartas */
@media print {
    .valor-cards-modal,
    .modal-overlay {
        display: none !important;
    }
}

/* Botão de download das cartas no feedback */
.feedback-actions .s6a3-btn.small {
    padding: 8px 16px;
    font-size: 14px;
    min-width: 140px;
    margin: 5px;
}

.feedback-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Spinner para loading */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #FF9800;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Estilos para impressão da modal */
@media print {
    .valor-cards-modal .modal-content {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        width: 100% !important;
        max-width: 100% !important;
        max-height: none !important;
        padding: 20px !important;
        margin: 0 !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
    
    .valor-card {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    
    .modal-overlay, .modal-actions, .modal-close, .modal-footer button {
        display: none !important;
    }
}

/* Estilos para o conteúdo do PDF */


.pdf-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #FF9800;
    padding-bottom: 15px;
}

.pdf-header h1 {
    color: #FF9800;
    font-size: 28px;
    margin-bottom: 5px;
}
.pdf-content .card-long .card-text {
    font-size: 20px !important;
}
.pdf-content .card-long {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 24px;
    border: 2px solid #35967D;
    border-radius: 10px;
    margin-bottom: 25px;
    cursor: pointer;
    background: #ecf0f1;
    background-size: cover;
    align-items: center;
    text-align: center;
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    line-height: 120%;
    break-inside: avoid;
}

.pdf-content .card-description {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: auto !important;
    color: #333 !important;
    padding: 8px !important;
    margin-top: 5px !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: normal !important;
}
/* Estilos para checkboxes */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-option {
    margin-bottom: 15px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.checkbox-option.selected {
    border-color: #4CAF50;
    background-color: #e8f5e9;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    border: 2px solid #757575;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.checkbox-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.checkbox-feedback {
    margin-top: 10px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 6px;
    border-left: 4px solid #2196F3;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.checkbox-feedback .feedback-actions {
    margin-top: 10px;
}
/* Estilos para múltiplos pontos de escolha */
.multiple-choice-points-section {
    margin: 30px 0;
}

.choice-points-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.choice-point-item {
    background: #fff;
    border-radius: 10px;
    padding-top:20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.choice-point-item:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.choice-point-title {
    text-align: center;
    color: #333;
    padding:0!important;
    margin:0!important;
}

.choice-point-image-wrapper {
    position: relative;
}

.choice-point-image {
    width: 100%;
    height: auto;
}

.loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    color: #666;
    font-style: italic;
}

.choice-point-summary {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.choice-point-summary p {
    margin: 5px 0;
}

.choice-point-summary strong {
    color: #333;
}

.error {
    background: #ffebee;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #f44336;
    color: #c62828;
}

/* Estilos para checkboxes */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-option {
    margin-bottom: 15px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.checkbox-option.selected {
    border-color: #4CAF50;
    background-color: #e8f5e9;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    border: 2px solid #757575;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.checkbox-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.checkbox-feedback {
    margin-top: 10px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 6px;
    border-left: 4px solid #2196F3;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.checkbox-feedback .feedback-actions {
    margin-top: 10px;
}

/* Estilo para as 3 ações */
.aproxima-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.action-card {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.action-card h4, .action-card h5 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.action-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.action-card .s6a3-btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .choice-points-container {
        grid-template-columns: 1fr;
    }
    .aproxima-options {
        grid-template-columns: 1fr;
    }
}
/* Estilos para cards de pontos de escolha com radio buttons */
.choice-point-select {
    margin-bottom: 15px;
    text-align: center;
}

.choice-point-radio-label {
    display: inline-flex;
    cursor: pointer;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.choice-point-radio-label input[type="radio"] {
    display: none;
}

.choice-point-radio-label .radio-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid #757575;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.choice-point-radio-label input[type="radio"]:checked + .radio-custom {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.choice-point-radio-label input[type="radio"]:checked + .radio-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.choice-point-radio-label .radio-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Estilo para card selecionado */
.choice-point-item.selected {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.choice-point-item.selected .choice-point-title {
    color: #4CAF50;
}

/* Animação de shake para erro */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake-animation {
    animation: shake 0.5s ease-in-out;
}

/* Mensagem de erro */
.choice-point-error {
    margin-top: 20px;
    padding: 15px;
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    border-radius: 5px;
    color: #c62828;
    text-align: center;
    font-weight: 500;
}
/* Estilos para loading de ações */
.loading-actions {
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #e0e0e0;
}

.loading-actions .spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-actions {
    text-align: center;
    padding: 40px;
    background-color: #fff8e1;
    border-radius: 10px;
    border: 2px solid #ff9800;
}

.error {
    text-align: center;
    padding: 30px;
    background-color: #ffebee;
    border-radius: 10px;
    border: 2px solid #f44336;
    color: #c62828;
}

.error p {
    margin-bottom: 20px;
}
/* Estilos para o plano de ação */
.plan-data-display {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #F47600;
}

.plan-data-display h3 {
    color: #F47600;
    margin-top: 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.plan-section {
    margin-bottom: 25px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.plan-section-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-item {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.plan-item:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #F47600;
    font-weight: bold;
}

.plan-rating {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 10px;
}

/* Modal de visualização do plano */
.plan-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
}

.plan-modal-header {
    background: #F47600;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-modal-header h2 {
    margin: 0;
    font-size: 20px;
}

.plan-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.plan-modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 60vh;
}

.download-options {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.download-options .s6a3-btn {
    flex: 1;
    min-width: 180px;
}

@media (max-width: 768px) {
    .download-options {
        flex-direction: column;
    }
    
    .download-options .s6a3-btn {
        width: 100%;
    }
}
