/* Estilos principales del plugin DISC */
.disc-test-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Encabezado */
.disc-test-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}

.disc-test-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.disc-test-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Barra de progreso */
.disc-test-progress {
    max-width: 600px;
    margin: 0 auto;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: #10b981;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.progress-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Información de usuario */
.user-info-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    text-align: center;
}

.user-info-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.form-group {
    text-align: left;
}

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

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Sugerencias para el test */
.test-suggestions {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
}

.suggestions-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.suggestions-content h4 {
    margin: 0 0 12px 0;
    color: #1e40af;
    font-size: 1.1rem;
}

.suggestions-content ul {
    margin: 0;
    padding-left: 20px;
    color: #1e3a8a;
}

.suggestions-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Aviso de Privacidad */
.privacy-disclaimer {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.privacy-content h4 {
    margin: 0 0 15px 0;
    color: #92400e;
    font-size: 1.1rem;
}

.privacy-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #78350f;
}

.privacy-text p {
    margin: 0 0 12px 0;
    font-weight: 500;
}

.privacy-text ul {
    margin: 12px 0;
    padding-left: 20px;
}

.privacy-text li {
    margin-bottom: 8px;
}

.privacy-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #fbbf24;
    font-size: 0.85rem;
}

.privacy-consent {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #fbbf24;
}

.consent-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #78350f;
}

.consent-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #f59e0b;
}

.consent-text {
    flex: 1;
    font-weight: 500;
}

.required-asterisk {
    color: #dc2626;
    font-weight: bold;
    margin-left: 3px;
}

.consent-required-message {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
}

.button:disabled,
.button.button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Botones */
.button {
    display: inline-block;
    padding: 14px 32px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.button:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.2);
}

.button-primary {
    background: #4f46e5;
}

.button-secondary {
    background: #6b7280;
}

.button-success {
    background: #10b981;
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Secciones de preguntas */
.disc-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: none;
}

.disc-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.section-header h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.section-description {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Preguntas */
.question-item {
    margin-bottom: 35px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #4f46e5;
    transition: all 0.3s ease;
}

.question-item.unanswered {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.question-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.question-number {
    background: #4f46e5;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.question-text {
    font-size: 1.2rem;
    color: #1f2937;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Opciones */
.question-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.option-wrapper {
    position: relative;
}

.option-input {
    position: absolute;
    opacity: 0;
}

.option-label {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 70px;
}

.option-label:hover {
    border-color: #4f46e5;
    background: #f5f3ff;
    transform: translateX(5px);
}

.option-input:checked + .option-label {
    border-color: #4f46e5;
    background: #f5f3ff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.option-letter {
    background: #4f46e5;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-text {
    font-size: 16px;
    line-height: 1.5;
    color: #374151;
}

/* Navegación */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

/* Estado de carga */
.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #4f46e5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.loading-text {
    font-size: 1.2rem;
    color: #4b5563;
    font-weight: 600;
}

/* Reporte */
.disc-report-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.report-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.report-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.report-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.report-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meta-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Secciones del reporte */
.section-title {
    font-size: 1.8rem;
    color: #1f2937;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.profiles-comparison {
    padding: 0 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.profile-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.profile-header h3 {
    color: #1f2937;
    margin-bottom: 5px;
}

.profile-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
}

.profile-chart {
    height: 300px;
    margin: 20px 0;
}

.profile-scores {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.score-red { background: #fee2e2; color: #991b1b; }
.score-yellow { background: #fef3c7; color: #92400e; }
.score-green { background: #d1fae5; color: #065f46; }
.score-blue { background: #dbeafe; color: #1e40af; }

.score-label {
    font-weight: 600;
}

.score-value {
    font-weight: 700;
    font-size: 1rem;
    min-width: 50px;
    text-align: right;
}

/* Tabs */
.analysis-tabs {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid #e5e7eb;
}

.tabs-header {
    display: flex;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #f3f4f6;
    color: #4b5563;
}

.tab-button.active {
    background: white;
    color: #4f46e5;
    border-bottom: 3px solid #4f46e5;
}

.tabs-content {
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Recomendaciones */
.recommendations-list {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.recommendation-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f0f9ff;
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
}

.recommendation-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #0ea5e9;
}

.recommendation-text {
    flex: 1;
    color: #0369a1;
    line-height: 1.6;
}

/* Acciones del reporte */
.report-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.action-button {
    padding: 15px 25px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Pie del reporte */
.report-footer {
    padding: 30px 40px;
    background: #1f2937;
    color: white;
    text-align: center;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Mensajes de error */
.error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #ef4444;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #10b981;
}

/* Responsive */
@media (max-width: 768px) {
    .disc-test-container {
        padding: 10px;
    }
    
    .disc-test-title {
        font-size: 1.8rem;
    }
    
    .user-info-fields {
        grid-template-columns: 1fr;
    }
    
    .disc-section {
        padding: 20px;
    }
    
    .question-item {
        padding: 15px;
    }
    
    .option-label {
        padding: 15px;
    }
    
    .report-header {
        padding: 20px;
    }
    
    .report-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: left;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .report-actions {
        flex-direction: column;
    }
    
    .action-button {
        width: 100%;
        justify-content: center;
    }
}

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

.slide-in {
    animation: slideIn 0.6s ease;
}

/* Colores de perfiles */
.color-red {
    color: #dc2626;
}

.color-yellow {
    color: #fbbf24;
}

.color-green {
    color: #10b981;
}

.color-blue {
    color: #3b82f6;
}

.bg-red {
    background-color: #fee2e2;
}

.bg-yellow {
    background-color: #fef3c7;
}

.bg-green {
    background-color: #d1fae5;
}

.bg-blue {
    background-color: #dbeafe;
}

/* Estilos específicos para admin */
.disc-admin-wrap {
    padding: 20px;
}

.disc-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.disc-admin-actions {
    display: flex;
    gap: 10px;
}

.disc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid;
}

.stat-primary { border-left-color: #4f46e5; }
.stat-success { border-left-color: #10b981; }
.stat-warning { border-left-color: #f59e0b; }
.stat-info { border-left-color: #3b82f6; }

.stat-icon {
    font-size: 40px;
    margin-right: 20px;
    opacity: 0.8;
}

.stat-content h3 {
    font-size: 32px;
    margin: 0 0 5px 0;
    color: #1f2937;
}

.stat-content p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.disc-admin-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 1200px) {
    .disc-admin-main {
        grid-template-columns: 1fr;
    }
}

.metabox-holder {
    margin-bottom: 20px;
}

.postbox {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.postbox .hndle {
    background: #f9fafb;
    padding: 15px 20px;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    font-weight: 600;
}

.postbox .inside {
    padding: 20px;
}

.chart-container {
    height: 250px;
    margin-bottom: 20px;
    position: relative;
}

.distribution-list {
    margin-top: 20px;
}

.distribution-item {
    margin-bottom: 15px;
}

.distribution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.distribution-count {
    font-weight: 600;
    color: #1f2937;
}

.distribution-percentage {
    color: #6b7280;
    font-size: 14px;
}

.distribution-bar {
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
}

.distribution-fill {
    height: 100%;
    border-radius: 4px;
}

.profile-d { background: #dc2626; }
.profile-i { background: #fbbf24; }
.profile-s { background: #10b981; }
.profile-c { background: #3b82f6; }

.profile-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.profile-badge.profile-d { background: #dc2626; }
.profile-badge.profile-i { background: #fbbf24; }
.profile-badge.profile-s { background: #10b981; }
.profile-badge.profile-c { background: #3b82f6; }

.no-data {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    padding: 20px;
}

.system-info {
    width: 100%;
    border-collapse: collapse;
}

.system-info th,
.system-info td {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}

.system-info th {
    font-weight: 600;
    color: #4b5563;
    width: 40%;
}

.system-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.status-active {
    color: #10b981;
    font-weight: 600;
}

.table-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
    margin-top: 20px;
}

/* Modal */
.disc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.disc-modal-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.disc-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disc-modal-header h3 {
    margin: 0;
    color: #1f2937;
}

.disc-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.disc-modal-close:hover {
    color: #1f2937;
}

.disc-modal-body {
    padding: 30px;
}

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

.loading-admin .spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #4f46e5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

.error-notice {
    background: #fee2e2;
    color: #991b1b;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.loading-cell {
    text-align: center;
    padding: 40px !important;
}

.loading-cell .spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #4f46e5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}/* Estilos para el reporte */
.disc-report-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.report-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.report-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.report-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.report-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meta-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.section-title {
    font-size: 1.8rem;
    color: #1f2937;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.profiles-comparison {
    padding: 0 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.profile-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.profile-header h3 {
    color: #1f2937;
    margin-bottom: 5px;
}

.profile-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
}

.profile-scores {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 20px 0;
}

.score-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.score-red { background: #fee2e2; color: #991b1b; }
.score-yellow { background: #fef3c7; color: #92400e; }
.score-green { background: #d1fae5; color: #065f46; }
.score-blue { background: #dbeafe; color: #1e40af; }

.score-color {
    font-size: 16px;
    margin-right: 8px;
}

.score-label {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.score-value {
    font-weight: 700;
    font-size: 1rem;
    min-width: 50px;
    text-align: right;
}

.comparison-chart {
    margin: 40px 0;
    height: 400px;
}

/* Sección de perfil dominante */
.dominant-profile-section {
    padding: 0 40px;
}

.dominant-profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.dominant-color {
    font-size: 4rem;
    margin-bottom: 20px;
}

.dominant-color h3 {
    font-size: 2rem;
    margin-top: 10px;
    color: #1f2937;
}

.dominant-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

.strengths-weaknesses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .strengths-weaknesses {
        grid-template-columns: 1fr;
    }
}

.strengths, .weaknesses {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.strengths h4, .weaknesses h4 {
    color: #1f2937;
    margin-bottom: 15px;
}

.strengths ul, .weaknesses ul {
    list-style: none;
    padding: 0;
}

.strengths li, .weaknesses li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.strengths li:last-child, .weaknesses li:last-child {
    border-bottom: none;
}

.communication-tips {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid #0ea5e9;
}

.communication-tips h4 {
    color: #0369a1;
    margin-bottom: 20px;
}

.communication-tips ul {
    list-style: none;
    padding: 0;
}

.communication-tips li {
    padding: 10px 0;
    border-bottom: 1px solid #e0f2fe;
}

.communication-tips li:last-child {
    border-bottom: none;
}

/* Insights de comparación */
.comparison-insights {
    padding: 0 40px;
}

.insights-list {
    display: grid;
    gap: 20px;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    background: #fefce8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.insight-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #d97706;
}

.insight-text {
    flex: 1;
    color: #92400e;
    line-height: 1.6;
}

.no-differences {
    text-align: center;
    padding: 40px;
    background: #f9fafb;
    border-radius: 10px;
    color: #6b7280;
    font-style: italic;
}

/* Recomendaciones finales */
.final-recommendations {
    padding: 0 40px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.recommendation-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.recommendation-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.recommendation-card h4 {
    color: #1f2937;
    margin-bottom: 10px;
}

.recommendation-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Pie del reporte */
.report-footer {
    padding: 30px 40px;
    background: #1f2937;
    color: white;
    text-align: center;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}