/* Agrega esto a tu CSS existente */
.propuesta-card {
    border-radius: 10px;
    overflow: hidden;
}

.candidato-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #e26f27;
    color: white;
    border: 2px solid #fb8e00;
}

.cta-btn.primary:hover {
    background: #3a5ce5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #4a6cf7;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(135deg, #4a6cf7 0%, #1e3c72 100%);
    color: white;
    padding: 80px 0;
}

.logo-display {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-orange {
    color: #fd7e14;
    border-color: #fd7e14;
    background-color: transparent;
}

.btn-outline-orange:hover {
    color: #fff;
    background-color: #fd7e14;
    border-color: #fd7e14;
}

.btn-outline-orange:focus {
    box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}

.btn-outline-orange:active,
.btn-outline-orange.active {
    color: #fff;
    background-color: #fd7e14;
    border-color: #fd7e14;
}

.btn-orange {
    color: #fff;
    background-color: #fd7e14;
    border-color: #fd7e14;
    cursor: pointer;
}

.btn-orange:hover {
    color: #fff;
    background-color: #e96c0a;
    border-color: #dd6709;
    cursor: pointer;
}

.btn-orange:focus {
    color: #fff;
    background-color: #e96c0a;
    border-color: #dd6709;
    box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.5);
}

.btn-orange:active,
.btn-orange.active {
    color: #fff;
    background-color: #dd6709;
    border-color: #d16209;
}

.text-orange {
    color: #fd7e14 !important;
}

.bg-orange {
    background-color: #fd7e14 !important;
}

.badge.bg-orange {
    background-color: #fd7e14 !important;
    color: #fff;
}

.btn-outline-orange-light {
    color: #ffb74d;
    border-color: #ffb74d;
    background-color: transparent;
}

.btn-outline-orange-light:hover {
    color: #212529;
    background-color: #ffb74d;
    border-color: #ffb74d;
}

.btn-orange-light {
    color: #212529;
    background-color: #ffb74d;
    border-color: #ffb74d;
}

.btn-orange-light:hover {
    color: #212529;
    background-color: #ffa726;
    border-color: #ffa020;
}

.text-orange-light {
    color: #ffb74d !important;
}

.bg-orange-light {
    background-color: #ffb74d !important;
}

.btn-orange-dark {
    color: #fff;
    background-color: #f57c00;
    border-color: #f57c00;
}

.btn-orange-dark:hover {
    color: #fff;
    background-color: #e66a00;
    border-color: #d96400;
}

.btn-orange-gradient {
    background: linear-gradient(45deg, #fd7e14, #ff9500);
    border: none;
    color: white;
}

.btn-orange-gradient:hover {
    background: linear-gradient(45deg, #e96c0a, #e68400);
    color: white;
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #fd7e14 0%, #ff9500 100%) !important;
}

.bg-gradient-orange-diagonal {
    background: linear-gradient(45deg, #fd7e14 0%, #ff9500 100%) !important;
}

.bg-gradient-orange-light {
    background: linear-gradient(135deg, #ffb74d 0%, #ffcc80 100%) !important;
}

.bg-gradient-orange-dark {
    background: linear-gradient(135deg, #e65100 0%, #f57c00 100%) !important;
}

.text-gradient-orange {
    background: linear-gradient(45deg, #fd7e14, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient-orange {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(45deg, #fd7e14, #ff9500) border-box;
}

.border-gradient-orange-light {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(45deg, #ffb74d, #ffcc80) border-box;
}

.shadow-orange {
    box-shadow: 0 0.5rem 1rem rgba(253, 126, 20, 0.15) !important;
}

.shadow-orange-lg {
    box-shadow: 0 1rem 3rem rgba(253, 126, 20, 0.175) !important;
}

.btn-outline-orange-gradient {
    background: transparent;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(45deg, #fd7e14, #ff9500) border-box;
    color: #fd7e14;
}

.btn-outline-orange-gradient:hover {
    background: linear-gradient(45deg, #fd7e14, #ff9500);
    color: white;
}

.orange-glow {
    box-shadow: 0 0 15px rgba(253, 126, 20, 0.4);
}

.orange-glow-lg {
    box-shadow: 0 0 25px rgba(253, 126, 20, 0.6);
}

.btn-orange-shadow {
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
}

.btn-orange-shadow:hover {
    box-shadow: 0 6px 20px rgba(253, 126, 20, 0.4);
}

.progress-bar-orange {
    background: linear-gradient(90deg, #fd7e14, #ff9500);
}

.alert-orange {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.1), rgba(255, 149, 0, 0.1));
    border-color: #fd7e14;
    color: #c45c00;
}

.card-orange-gradient {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.05), rgba(255, 149, 0, 0.05));
    border: 1px solid rgba(253, 126, 20, 0.2);
}