
/* People Asset Diagnostic Styles */
.pad-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    font-family: -apple-system, BlinkMacSystemFont, "DM Sans", Roboto, sans-serif;
}

.pad-landing {
    text-align: center;
    background: linear-gradient(135deg, #29493a 0%, #213a2e 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.pad-landing h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.pad-landing p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.pad-btn-primary {
    background: white;
    color: #713E27;
    padding: 12px 32px;
    border: none;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pad-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #713E27;
    color: white;
}

.pad-info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 40px;
    margin: 30px 0;
    text-align: left;
}

.pad-info-card h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pad-info-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pad-benefits {
    background: #f5f4f1;
    border-radius: 16px;
    padding: 40px;
    margin: 30px 0;
}

.pad-benefits h3 {
    color: #683924;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.pad-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.pad-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pad-benefit-dot {
    width: 8px;
    height: 8px;
    background: #713E27;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.pad-form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.pad-form-header {
    background: linear-gradient(135deg, #29493a 0%, #213a2e 100%);
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.pad-form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.pad-progress-container {
    padding: 25px 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.pad-progress-bar {
    background: #e9ecef;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.pad-progress-fill {
    background: linear-gradient(135deg, #29493a 0%, #213a2e 100%);
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.pad-progress-text {
    text-align: center;
    color: #666;
    font-weight: 500;
}

.pad-form-content {
    padding: 40px;
}

.pad-block-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.pad-scale-labels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.pad-scale-label {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.pad-scale-number {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.pad-question {
    margin-bottom: 35px;
    padding: 25px;
    background: #fafafa;
    border-radius: 12px;
    border-left: 4px solid #713E27;
}

.pad-question h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.pad-radio-group {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.pad-radio-item {
    text-align: center;
}

.pad-radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-bottom: 0px;
    cursor: pointer;
    color: #29493a;
}

.pad-radio-item label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #713E27;
    cursor: pointer;
    margin-bottom: 9px;
}

.pad-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.pad-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.pad-btn-secondary:hover {
    background: #5a6268;
}

.pad-btn-primary-form {
    background: #713E27;
    color: white;
}

.pad-btn-primary-form:hover {
    background: #5a67d8;
}

.pad-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pad-results-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.pad-results-header {
    text-align: center;
    margin-bottom: 40px;
}

.pad-results-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.pad-overall-score {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.pad-score-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #29493a, #213a2e);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.pad-maturity-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.pad-maturity-evolutivo {
    background: #d4edda;
    color: #155724;
}

.pad-maturity-estrategico {
    background: #fff3cd;
    color: #856404;
}

.pad-maturity-tatico {
    background: #f8d7da;
    color: #721c24;
}

.pad-maturity-reativo {
    background: #f5c6cb;
    color: #721c24;
}

.pad-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.pad-block-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    padding: 30px;
}

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

.pad-block-title-small {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.pad-block-score {
    font-size: 1.8rem;
    font-weight: bold;
    color: #713E27;
}

.pad-progress-bar-small {
    background: #e9ecef;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pad-progress-fill-small {
    background: linear-gradient(90deg, #29493a, #213a2e);
    height: 100%;
    border-radius: 4px;
}

.pad-recommendation {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #713E27;
}

.pad-recommendation-status {
    font-size: 1.2rem;
    margin-right: 10px;
}

.pad-detailed-analysis {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.pad-analysis-block {
    border-left: 4px solid #713E27;
    padding-left: 20px;
    margin-bottom: 30px;
}

.pad-analysis-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.pad-questions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.pad-question-score {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.pad-score-high {
    background: #28a745;
}

.pad-score-medium {
    background: #ffc107;
}

.pad-score-low {
    background: #dc3545;
}

.pad-next-steps {
    background: #fafafa;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.pad-next-steps h3 {
    color: #29493a;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pad-contact-info {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.pad-user-form {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
}

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

.pad-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.pad-form-group input,
.pad-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.pad-form-group input:focus,
.pad-form-group select:focus {
    outline: none;
    border-color: #713E27;
}

.pad-form-group.required label::after {
    content: " *";
    color: #dc3545;
}

@media (max-width: 768px) {
    .pad-landing h1 {
        font-size: 2rem;
    }
    
    .pad-landing p {
        font-size: 1.1rem;
    }
    
    .pad-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pad-blocks-grid {
        grid-template-columns: 1fr;
    }
    
    .pad-radio-group {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .pad-scale-labels {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
        padding: 15px;
    }
    
    .pad-scale-label {
        font-size: 0.8rem;
    }
    
    .pad-form-content {
        padding: 20px;
    }
    
    .pad-form-navigation {
        padding: 20px;
    }
}

.pad-hidden {
    display: none !important;
}

.pad-loading {
    text-align: center;
    padding: 40px;
}

.pad-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #713E27;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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