:root {
    --primary-color: #002f44;
    --secondary-color: #FE8201;
    --surface-color: #ffffff;
    --background-color: #f8f9fa;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --border-color: #d2d2d7;
    --success-color: #30d158;
    --warning-color: #ff9f0a;
    --error-color: #ff3b30;
    --info-color: #007aff;
}

.application {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.application-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.application-header {
    /*background: linear-gradient(135deg, #2c5aa0, #3d6bb3);*/
    /*color: white;*/
    /*padding: 30px;*/
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.application-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="3" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.step-number-badge {
    position: relative;
    z-index: 1;
    margin-right: 20px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgb(109 109 109 / 20%);
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.step-content-header {
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-description {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

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

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.required-asterisk {
    color: #dc3545;
    margin-left: 3px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.15);
    outline: none;
}

.form-text {
    color: #6c757d;
    font-size: 13px;
    margin-top: 5px;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.theme-btn {
    background: linear-gradient(135deg, #fd8100, #fd8100);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.theme-btn:hover {
    background: linear-gradient(135deg, #245086, #2c5aa0);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    color: white;
    text-decoration: none;
}

.theme-btn.btn-secondary {
    background: #6c757d;
    color: white;
}

.theme-btn.btn-secondary:hover {
    background: #5a6268;
    color: white;
}

.form-actions {
    padding: 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    /*margin: 0 -30px -15px -30px;*/
}

/* Sidebar Styles */
.application-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
}

.sidebar-title {
    color: #2c5aa0;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 22px;
}

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

.sidebar-info-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.sidebar-info-item i {
    color: #2c5aa0;
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
}

.info-value {
    display: block;
    color: #6c757d;
    font-size: 14px;
}

.sidebar-message {
    background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #2c5aa0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.message-icon {
    text-align: center;
    margin-bottom: 20px;
}

.message-icon i {
    font-size: 48px;
    color: #2c5aa0;
    opacity: 0.8;
}

.message-content h4 {
    color: #2c5aa0;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.message-content p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info {
    background: rgba(44, 90, 160, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 0;
}

.contact-item i {
    color: #2c5aa0;
    margin-right: 10px;
    font-size: 16px;
}

.contact-item a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.message-footer {
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin-bottom: 0;
    color: #6c757d;
}


.paso-header {
    transition: all 0.2s;
}

.paso-activo .step-title {
    font-size: 1.6rem; /* Grande y negrita */
    font-weight: bold;
    color: #012f45;
}

.paso-inactivo .step-title {
    font-size: 1.1rem; /* Más pequeño */
    font-weight: normal;
    color: #bbbbbb; /* Gris claro */
}

.paso-activo .step-number {
    color: #fff;
    background: #012f45;
    font-weight: bold;
}

.paso-inactivo .step-number-badge {
    color: #bbb;
}

.paso-header .step-title {
    margin-bottom: 0;
}

.card-title {
    font-size: 1.1rem;
}

.card-subtitle {
    font-size: 0.97em;
}

.custom-file-input {
    font-size: 1em;
}

.badge {
    font-size: 0.9em;
    vertical-align: middle;
}


.reqfile-input[type="file"] {
    background: #f7fafd;
    border-color: #dde6f4;
    font-size: 1em;
    color: #22375b;
    padding: .45rem .9rem;
    transition: border-color 0.15s;
}

.reqfile-input[type="file"]:focus {
    border-color: #22375b;
    background: #f0f4ff;
}

.reqfile-label {
    border-radius: 0 1.5rem 1.5rem 0 !important;
    background: #22375b !important;
    color: #fff !important;
    border-color: #22375b !important;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    min-width: 120px;
}

.reqfile-label:hover, .reqfile-label:focus {
    background: #304d81 !important;
    color: #fff !important;
}


/* Contenido de los pasos - inicialmente ocultos excepto el primero */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.next-step-header {
    opacity: .85;
}


/* Responsive Design */
@media (max-width: 768px) {
    .application-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .step-number-badge {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 24px;
    }

    .form-actions {
        padding: 20px;
    }

    .theme-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .sidebar-card, .sidebar-message {
        margin-bottom: 20px;
    }
}

/* Estados de validación */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.4.49c.1.12.26.12.37 0l4.07-4.16c.1-.12.1-.31 0-.43L6.7 2.3c-.1-.12-.26-.12-.37 0L3.7 4.92 2.3 3.52c-.1-.12-.26-.12-.37 0L1.5 3.9c-.1.12-.1.31 0 .43l.8.4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6-1.4 1.4M5.8 7.4l1.4-1.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}


input.form-control[readonly] {
    background-color: #f7fafd !important; /* Fondo ligeramente gris-azulado */
    color: #22375b !important; /* Texto un poco más oscuro */
    border-color: #dde6f4 !important; /* Borde más suave */
    opacity: 1; /* No lo opaca como por defecto Bootstrap */
    cursor: not-allowed;
    font-weight: 500;
}

input.form-control[readonly]:focus {
    background-color: #f0f4ff !important;
    border-color: #b6c5e6 !important;
    box-shadow: none;
}


.site-title {
    font-size: 40px !important;
}

.modalidad-card {
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.modalidad-card:hover {
    border-color: #007bff;
}

.modalidad-card.selected {
    border-color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
}

/* Animación shake para indicar error en modalidades */
@keyframes shake {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    10% {
        transform: translateX(-5px);
    }
    30% {
        transform: translateX(5px);
    }
    60% {
        transform: translateX(-3px);
    }
    90% {
        transform: translateX(3px);
    }
}

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

/* Estados de cabeceras de pasos */
.paso-inactivo {
    opacity: 0.6;
}

.paso-activo {
    opacity: 1;
}


.requisito-container {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.requisito-container:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.requisito-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.requisito-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.requisito-badges {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.estado-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    border: none;
}

.estado-badge.pendiente {
    background-color: rgba(255, 159, 10, 0.15);
    color: var(--warning-color);
}

.estado-badge.aprobado {
    background-color: rgba(48, 209, 88, 0.15);
    color: var(--success-color);
}

.estado-badge.rechazado {
    background-color: rgba(255, 59, 48, 0.15);
    color: var(--error-color);
}

.estado-badge.corregir {
    background-color: rgba(0, 122, 255, 0.15);
    color: var(--info-color);
}

.badge-tipo {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
}

.badge-obligatorio {
    background-color: rgba(255, 59, 48, 0.1);
    color: var(--error-color);
}

.badge-opcional {
    background-color: rgba(134, 134, 139, 0.15);
    color: var(--text-secondary);
}

.requisito-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.requisito-guides {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background-color: var(--background-color);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.guide-link:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
}

.archivo-actual {
    background: var(--background-color);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.archivo-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.archivo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.archivo-icon.pdf {
    background-color: rgba(255, 59, 48, 0.1);
    color: var(--error-color);
}

.archivo-icon.image {
    background-color: rgba(48, 209, 88, 0.1);
    color: var(--success-color);
}

.archivo-details h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.archivo-details small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.archivo-actions {
    margin-left: auto;
}

.btn-view {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-view:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    text-decoration: none;
    transform: scale(1.05);
}

.btn-view:active {
    transform: scale(0.95);
}

.observacion-container {
    background: rgba(255, 59, 48, 0.05);
    border: 1px solid rgba(255, 59, 48, 0.1);
    border-left: 3px solid var(--error-color);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.observacion-container.info {
    background: rgba(0, 122, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.1);
    border-left-color: var(--info-color);
}

.observacion-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.observacion-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.observacion-text {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    background: var(--surface-color);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upload-zone:hover {
    border-color: var(--secondary-color);
    background: rgba(254, 130, 1, 0.02);
}

.upload-zone.active {
    border-color: var(--secondary-color);
    background: rgba(254, 130, 1, 0.05);
}

.upload-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.upload-text {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.3;
}

.upload-subtext {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.status-indicator {
    text-align: center;
    padding: 2rem 1rem;
}

.status-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.status-icon.success {
    background: rgba(48, 209, 88, 0.15);
    color: var(--success-color);
}

.status-icon.warning {
    background: rgba(255, 159, 10, 0.15);
    color: var(--warning-color);
}

.status-icon.error {
    background: rgba(255, 59, 48, 0.15);
    color: var(--error-color);
}

.status-text {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.status-subtext {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.opcional-container {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
}

.opcional-container:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-1px);
}

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .requisito-container {
        padding: 1rem;
    }

    .requisito-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .requisito-badges {
        margin-left: 0;
    }

    .requisito-guides {
        flex-direction: column;
        gap: 0.5rem;
    }

    .archivo-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .archivo-actions {
        margin-left: 0;
        width: 100%;
    }

    .btn-view {
        width: 100%;
        text-align: center;
    }

    .progress-steps {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }

    .step::after {
        display: none;
    }
}

.validation-progress {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    position: relative;
}

.step-validation {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    max-width: 100px;
}

.step-validation:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #dee2e6;
    z-index: 0;
}

.step-validation.active::after,
.step-validation.completed::after {
    background: var(--primary-color);
}

.validation-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-validation.active .validation-circle {
    background: var(--secondary-color);
    color: white;
}

.step-validation.completed .validation-circle {
    background: var(--primary-color);
    color: white;
}

.validation-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.2;
    word-break: break-word;
    max-width: 80px;
}

.step-validation.active .validation-label {
    color: var(--secondary-color);
    font-weight: 600;
}

.step-validation.completed .validation-label {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .validation-progress {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
        align-items: center;
    }

    .step-validation {
        flex-direction: row;
        align-items: center;
        text-align: left;
        max-width: none;
        width: 100%;
        justify-content: flex-start;
    }

    .step-validation::after {
        display: none;
    }

    .validation-circle {
        margin-bottom: 0;
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .validation-label {
        max-width: none;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .validation-progress {
        gap: 1rem;
    }

    .validation-circle {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .validation-label {
        font-size: 0.8rem;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* DISENO ADICIONAL PARA FASES */

/* Estilos para el nuevo layout de fases */
.content-bottom {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Estilos para fases que ocupan el 100% del ancho */
.fases-timeline-full {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
}

.fases-timeline-full .fase-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    padding-left: 45px;
    /* Centrar el contenido dentro del contenedor */
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
}

.fases-timeline-full .fase-item:last-child {
    margin-bottom: 0;
}

.fases-timeline-full .fase-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 50px;
    bottom: -30px;
    width: 3px;
    background: var(--border-color);
}

.fases-timeline-full .fase-item.active:not(:last-child)::before {
    background: var(--primary-color);
}

.fases-timeline-full .fase-icon {
    position: absolute;
    left: 0;
    top: 8px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--border-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    z-index: 1;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fases-timeline-full .fase-item.active .fase-icon {
    background: var(--primary-color);
}

.fases-timeline-full .fase-item.completed .fase-icon {
    background: var(--success-color);
}

.fases-timeline-full .fase-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.fases-timeline-full .fase-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.fases-timeline-full .fase-item.active .fase-title {
    color: var(--primary-color);
}

.fases-timeline-full .fase-dates {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

.fases-timeline-full .fase-item.active .fase-dates {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive para fases full width */
@media (max-width: 768px) {
    .fases-timeline-full {
        max-width: 300px;
    }

    .fases-timeline-full .fase-item {
        padding-left: 40px;
        max-width: 250px;
    }

    .fases-timeline-full .fase-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .fases-timeline-full .fase-title {
        font-size: 1rem;
    }

    .fases-timeline-full .fase-dates {
        font-size: 0.85rem;
    }
}

/* Estilos para el brochure */
.brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color), #ff9500);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(254, 130, 1, 0.3);
}

.brochure-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 130, 1, 0.4);
    color: white;
    text-decoration: none;
}

.brochure-link i {
    margin-right: 0;
    width: auto;
}

/* Responsive para brochure */
@media (max-width: 768px) {
    .brochure-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}