/* ===== SECCIÓN DE GRÁFICOS ===== */

.charts-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.chart-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5d31;
    margin-bottom: 2rem;
}

/* ===== RADAR CHART ===== */
.radar-section {
    margin-bottom: 0.5rem;
}

.radar-title {
    color: #000 !important;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Ajuste específico para reducir espacio con la siguiente sección */
#objetivos-motivaciones {
    padding-top: 0.5rem !important;
}

.radar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

#species-radar-chart {
    max-width: 500px;
    max-height: 500px;
}

/* Treemap styles removed - only radar chart visualization */

/* Estadísticas Resumen eliminadas - sólo radar chart */

/* Responsive para charts */
@media (max-width: 768px) {
    .radar-container {
        padding: 1rem;
    }
    
    #species-radar-chart {
        max-width: 350px;
        max-height: 350px;
    }
    
    .chart-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    /* Treemap responsive styles removed */
    
    /* Summary stats responsive styles removed */
}

@media (max-width: 480px) {
    .radar-container {
        padding: 0.5rem;
    }
    
    #species-radar-chart {
        max-width: 300px;
        max-height: 300px;
    }
    
    .chart-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Treemap mobile responsive styles removed */
}