#canal-denuncias-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.canal-denuncias-header {
    background: #050e5b;
    color: #ffffff;
    padding: 40px 30px 50px 30px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    text-align: center;
}

/* Logo RNPN */
.header-logo {
    margin-bottom: 30px;
}

.logo-image {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.logo-subtitle {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 15px 0 0 0;
    color: #ffffff;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Contenedor del título y descripción */
.header-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 1000px;
    margin: 0 auto;
}


.header-content h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
}

.header-content p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.95;
}

.form-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #dadee7;
    border-radius: 8px;
    background: #ffffff;
}

.form-section h3 {
    color: #050e5b;
    border-bottom: 2px solid #050e5b;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #050e5b;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dadee7;
    border-radius: 6px;
    font-size: 17px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    outline: none;
    border-color: #050e5b;
    box-shadow: 0 0 0 2px rgba(5, 14, 91, 0.15);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.radio-group label:hover {
    background-color: #dadee7;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
}

/* Checkbox especial para anonimato */
.checkbox-anonimo {
    background: #e8eaf6;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #c5cae9;
    margin-top: 10px;
}

.checkbox-anonimo label {
    margin-bottom: 0;
    color: #050e5b;
    font-weight: 500;
}

.character-count {
    display: block;
    text-align: right;
    color: #6c757d;
    font-size: 12px;
    margin-top: 5px;
}

.character-count.warning {
    color: #ffc107;
}

.character-count.danger {
    color: #dc3545;
}

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

.btn {
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #050e5b;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #03093d;
}

.btn-secondary {
    background-color: #dadee7;
    color: #050e5b;
}

.btn-secondary:hover {
    background-color: #c5cad6;
}

.btn:disabled,
.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #dadee7 !important;
    color: #050e5b !important;
    pointer-events: none;
}

#file-preview {
    margin-top: 10px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: #dadee7;
    border-radius: 4px;
    margin-bottom: 5px;
}

.file-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.consulta-section {
    margin-top: 30px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.consulta-section h3 {
    color: #050e5b;
    margin-bottom: 15px;
}

.consulta-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.consulta-form input {
    flex: 1;
}

.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #dadee7;
    border-top: 2px solid #050e5b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.required-field::after {
    content: ' *';
    color: #dc3545;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }

    .consulta-form {
        flex-direction: column;
    }

    .radio-group {
        gap: 5px;
    }

    /* Header responsive */
    .logo-image {
        max-width: 180px;
    }

    .logo-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .header-content {
        padding: 20px 25px;
    }

    .header-content h2 {
        font-size: 22px;
    }

    .header-content p {
        font-size: 14px;
    }

    .canal-denuncias-header {
        padding: 30px 20px 40px 20px;
    }
}

/* ===== STEP WIZARD STYLES ===== */

/* Step Progress Indicator */
.step-progress {
    background: #ffffff;
    border-radius: 0;
    padding: 30px 20px;
    margin-bottom: 0;
    box-shadow: none;
    border-bottom: 1px solid #dadee7;
}

.step-indicator {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    padding: 0 10px;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 70px;
    right: 70px;
    height: 3px;
    background: #dadee7;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 1 auto;
    z-index: 2;
    max-width: 100px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #dadee7;
    color: #050e5b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: #6c757d;
    transition: all 0.3s ease;
    max-width: 100px;
    line-height: 1.3;
    word-wrap: break-word;
}

.step.active .step-number {
    background: #050e5b;
    color: #ffffff;
    transform: scale(1.1);
}

.step.active .step-title {
    color: #050e5b;
    font-weight: 600;
}

.step.completed .step-number {
    background: #95a5fb;
    color: white;
}

.step.completed .step-title {
    color: #95a5fb;
}

/* Step Content */
.step-content {
    display: none;
    background: #ffffff;
    border-radius: 0;
    padding: 40px;
    margin-bottom: 0;
    box-shadow: none;
    min-height: 500px;
}

.step-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.step-header {
    margin-bottom: 30px;
    text-align: center;
}

.step-header h3 {
    color: #050e5b;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.step-description {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

/* Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: none;
    border-top: 1px solid #dadee7;
    margin-bottom: 30px;
}

.btn-success {
    background-color: #95a5fb;
    color: white;
}

.btn-success:hover {
    background-color: #95a5fb;
}

/* Summary Section */
#denuncia-summary {
    background: #dadee7;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid #050e5b;
}

#denuncia-summary h4 {
    color: #050e5b;
    margin-bottom: 20px;
    font-size: 18px;
}

.summary-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff;
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-section strong {
    display: block;
    color: #495057;
    font-weight: 600;
    margin-bottom: 5px;
}

.summary-section div {
    color: #6c757d;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Wizard Responsive */
@media (max-width: 768px) {
    .step-progress {
        padding: 20px 10px;
    }

    .step-indicator {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 5px;
        padding: 0 5px;
    }

    .step-indicator::before {
        display: none;
    }

    .step {
        flex: 0 0 auto;
        max-width: 70px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin-bottom: 6px;
    }

    .step-title {
        max-width: 70px;
        font-size: 9px;
        line-height: 1.2;
    }

    .step-content {
        padding: 25px 20px;
        min-height: 400px;
    }

    .step-header h3 {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }

    .form-navigation {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    #denuncia-summary {
        padding: 20px;
    }
}

/* Para pantallas muy pequeñas (móviles en vertical) */
@media (max-width: 480px) {
    .step-progress {
        padding: 15px 5px;
    }

    .step-indicator {
        gap: 12px 3px;
    }

    .step {
        max-width: 60px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .step-title {
        font-size: 8px;
        max-width: 60px;
        line-height: 1.1;
    }
}