/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 20px;
    color: #333;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('images/header-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

/* Seção da imagem */
.image-section {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.header-image {
    max-width: 100%;
    max-height: 150px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    background: #ff5900;
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header > * {
    position: relative;
    z-index: 1;
}

.header h1 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Barra de progresso */
.progress-container {
    background: #f8f9fa;
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
}

.progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    display: block;
    height: 100%;
    background: #07b1ec;
    width: 20%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #ff5900;
    color: white;
    transform: scale(1.1);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Formulário */
.form-container {
    padding: 40px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step h2 {
    color: #ff5900 !important;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700 !important; /* Negrito para títulos principais */
    border-bottom: 3px solid #ff5900;
    padding-bottom: 12px;
    text-align: left;
}

.form-section h3 {
    color: #ff5900 !important;
    margin: 30px 0 20px 0;
    font-size: 1.3rem;
    font-weight: 400 !important; /* Normal para subtítulos */
    padding: 12px 18px;
    background: #fff5f0;
    border-left: 4px solid #ff5900;
    border-radius: 6px;
}

/* Grupos de campos */
.field-group {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #07b1ec;
    box-shadow: 0 0 0 3px rgba(7, 177, 236, 0.1);
    transform: translateY(-2px);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

/* Grupos de opções */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* aumenta largura mínima do card */
    gap: 12px;
    margin-bottom: 20px;
}

/* Destaque para perguntas dos grupos de opções */
.form-group > label:first-child {
    font-size: 1.1rem;
    font-weight: 400 !important; /* Normal para perguntas */
    color: #ff5900 !important;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: #fff5f0;
    border-left: 4px solid #ff5900;
    border-radius: 6px;
}

.radio-option {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    overflow: hidden; /* garante que nada saia do card */
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-content {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

.radio-content:hover {
    border-color: #07b1ec;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 177, 236, 0.2);
}

.radio-option input[type="radio"]:checked + .radio-content {
    background: #ff5900;
    color: white;
    border-color: #ff5900;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 89, 0, 0.3);
}

.radio-content i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.radio-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.radio-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    word-break: break-word;          /* evita estouro de palavras longas */
    overflow-wrap: anywhere;         /* permite quebra em qualquer ponto */
    white-space: normal;             /* garante quebra de linha */
    hyphens: auto;                   /* permite hifenização */
    line-height: 1.35;               /* espaçamento mais confortável */
}

/* Checkbox groups */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5px;
    margin-bottom: 15px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    background: #f8f9fa;
}

.checkbox-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4facfe;
}

.checkbox-option span {
    font-size: 0.95rem;
    color: #2c3e50;
}

/* Upload de arquivos - Novo modelo moderno e discreto */
.file-upload-area {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.file-upload-area:hover {
    border-color: #ff5900;
    background: #fff8f5;
    box-shadow: 0 4px 12px rgba(255, 89, 0, 0.1);
}

.file-upload-area.dragover {
    border-color: #28a745;
    background: #f8fff9;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
    transform: scale(1.01);
}

.file-upload-area.has-files {
    border-color: #28a745 !important;
    background: #f8fff9 !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1) !important;
}

.file-upload-area.uploading {
    border-color: #ffc107;
    background: #fffdf5;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.1);
}

.file-upload-area.error {
    border-color: #dc3545;
    background: #fff5f5;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
}

.file-upload-area i {
    font-size: 2.5rem;
    color: #6c757d;
    margin-bottom: 8px;
    display: block;
    transition: all 0.3s ease;
}

.file-upload-area.has-files i {
    color: #28a745 !important;
    font-size: 2rem !important;
}

.file-upload-area.uploading i {
    color: #ffc107 !important;
    animation: pulse 1.5s ease-in-out infinite;
}

.file-upload-area.error i {
    color: #dc3545 !important;
}

.file-upload-area p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.file-upload-area.has-files p {
    color: #6c757d !important;
    font-weight: 500 !important;
}

.file-upload-area.uploading p {
    color: #ffc107 !important;
    font-weight: 600 !important;
}

.file-upload-area.error p {
    color: #dc3545 !important;
    font-weight: 600 !important;
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Progress bar para upload */
.upload-progress {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 12px;
    display: none;
}

.upload-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff5900, #ff8c42);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.upload-progress.show {
    display: block;
}

/* Status do upload */
.upload-status {
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
    display: none;
}

.upload-status.show {
    display: block;
}

.upload-status.success {
    color: #28a745;
}

.upload-status.error {
    color: #dc3545;
}

.upload-status.uploading {
    color: #ffc107;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Melhorias no preview de arquivos */
.file-preview {
    margin-top: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

.file-preview:not(:empty) {
    display: block;
}

.file-preview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    animation: fadeInUp 0.3s ease-out;
}

.file-preview-item:last-child {
    margin-bottom: 0;
}

.file-preview-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.file-preview-info i {
    color: #28a745;
    font-size: 1.2rem;
}

.file-preview-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.file-preview-size {
    color: #6c757d;
    font-size: 0.8rem;
    margin-top: 2px;
}

.file-preview-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.file-preview-remove:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* Melhorias responsivas para upload */
@media (max-width: 768px) {
    .file-upload-area {
        padding: 20px 16px;
        min-height: 100px;
    }
    
    .file-upload-area i {
        font-size: 2rem;
    }
    
    .file-upload-area p {
        font-size: 0.9rem;
    }
    
    .file-preview-item {
        padding: 10px;
    }
    
    .file-preview-info {
        gap: 8px;
    }
}

.file-preview {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    display: none; /* Inicialmente escondido */
}

.file-preview:not(:empty) {
    display: block; /* Mostrar quando há conteúdo */
}

.file-preview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.file-preview-item:last-child {
    margin-bottom: 0;
}

.file-preview-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-preview-info i {
    color: #07b1ec;
    font-size: 1.2rem;
}

.file-preview-name {
    font-weight: 500;
    color: #2c3e50;
}

.file-preview-size {
    color: #6c757d;
    font-size: 0.9rem;
}

.file-preview-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.file-preview-remove:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* Navegação do formulário */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #07b1ec;
    color: white;
}

.btn-primary:hover {
    background: #0596c7;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-success {
    background: #ff5900;
    color: white;
}

.btn-success:hover {
    background: #e54d00;
}

/* Telas de sucesso e erro */
.success-screen,
.error-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}

.success-content,
.error-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.6s ease-out;
}

.success-icon,
.error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-icon {
    color: #28a745;
}

.error-icon {
    color: #dc3545;
}

.success-content h2,
.error-content h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.success-content p,
.error-content p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Revisão de dados */
.review-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #ff5900;
}

.review-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-item {
    display: flex;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-label {
    font-weight: 600;
    color: #495057;
    min-width: 150px;
    margin-right: 15px;
}

.review-value {
    color: #2c3e50;
    flex: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        border-radius: 15px;
    }
    
    .image-section {
        padding: 15px;
    }
    
    .header-image {
        max-height: 100px;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Radio cards em uma linha, SEM rolagem (2 cards lado a lado) */
    .radio-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        overflow: visible;
        padding-bottom: 0;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    /* Etapas do processo em uma única linha, sem rolagem */
    .progress-steps {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 8px;
        overflow: visible;
        padding-bottom: 0;
    }
    
    .step {
        flex-direction: row;
        gap: 10px;
    }
    
    .step-label {
        text-align: left;
    }

    /* Compactação para caber na largura */
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    .step-label { 
        font-size: 0.75rem; 
        white-space: nowrap;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .success-content,
    .error-content {
        padding: 30px 20px;
    }
    
    .review-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .review-label {
        min-width: auto;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .form-step h2 {
        font-size: 1.5rem;
        font-weight: 700 !important; /* Manter negrito em mobile */
        padding: 8px 0;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
        padding: 10px 15px;
        margin: 25px 0 15px 0;
    }
    
    .form-group > label:first-child {
        font-size: 1rem;
        padding: 8px 12px;
        margin-bottom: 12px;
    }
    
    .radio-content {
        padding: 15px;
    }
    
    .file-upload-area {
        padding: 30px 15px;
    }
    
    .file-upload-area i {
        font-size: 2.5rem;
    }
}

/* Animações adicionais */
.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
    color: #07b1ec;
    transform: translateY(-2px);
}

.radio-option input[type="radio"]:checked + .radio-content i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Estados de validação */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
}

/* Loading state */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   REGRAS DE FORÇA - MÁXIMA PRIORIDADE
   ======================================== */
.footer-credits {
    margin: 16px auto 0;
    max-width: 900px;
    text-align: center;
    font-size: 0.78rem;
    color: #6c757d; /* uma cor para todo o texto */
    padding: 10px 10px 24px;
    transition: color 0.2s ease;
}
.footer-credits a {
    color: inherit; /* mesma cor do texto */
    text-decoration: none;
    border-bottom: none;
    transition: color 0.2s ease;
}
.footer-credits:hover,
.footer-credits a:hover {
    color: #ff5900; /* muda de cor ao passar o mouse */
}

@media (max-width: 480px) {
    .footer-credits { font-size: 0.72rem; }
}
.container .form-step h2,
.form-step h2 {
    font-weight: 700 !important; /* NEGRITO OBRIGATÓRIO */
    color: #ff5900 !important;
}

/* REGRA DE TESTE ULTRA ESPECÍFICA */
div.form-step h2 {
    font-weight: 700 !important;
    color: #ff5900 !important;
    font-size: 1.8rem !important;
    border-bottom: 3px solid #ff5900 !important;
    padding-bottom: 12px !important;
}

.container .form-section h3,
.form-section h3 {
    font-weight: 400 !important; /* NORMAL OBRIGATÓRIO */
    color: #ff5900 !important;
}

.container .form-group > label:first-child,
.form-group > label:first-child {
    font-weight: 400 !important; /* NORMAL OBRIGATÓRIO */
    color: #ff5900 !important;
}

/* Forçar em todas as media queries */
@media (max-width: 768px) {
    .form-step h2 {
        font-weight: 700 !important;
    }
    .form-section h3 {
        font-weight: 400 !important;
    }
    .form-group > label:first-child {
        font-weight: 400 !important;
    }
}

@media (max-width: 480px) {
    .form-step h2 {
        font-weight: 700 !important;
    }
    .form-section h3 {
        font-weight: 400 !important;
    }
    .form-group > label:first-child {
        font-weight: 400 !important;
    }
}

/* Ajustes de tipografia para telas pequenas (mobile) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    .header h1 {
        font-size: 1.3rem !important;
    }
    /* Sobrescrever regra ultra-específica que força títulos grandes */
    .container div.form-step h2,
    div.form-step h2 {
        font-size: 1.3rem !important;
    }
    .form-section h3 {
        font-size: 1.05rem !important;
    }
    .form-group > label:first-child {
        font-size: 0.95rem !important;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    .step-label { 
        font-size: 0.85rem; 
    }
    .radio-content h3 { 
        font-size: 1rem; 
    }
    .radio-content p { 
        font-size: 0.85rem; 
    }
}
/ *   C a c h e   b u s t e r   -   0 9 / 1 8 / 2 0 2 5   1 7 : 1 6 : 3 0   * / 
 
 
