/* ===== PÁGINA DE INICIO - DISEÑO LIMPIO ===== */
/* Fecha: 26 de Noviembre de 2024 */
/* Elimina borde oscuro y mantiene fondo blanco puro con radar destacado */

/* Sección de inicio sin borde, fondo blanco puro */
#inicio {
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

#inicio .section {
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

#inicio .container {
    background: #ffffff !important;
}

/* Hero section - fondo blanco puro sin gradiente */
#inicio .hero {
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 64px 20px;
}

/* Título y subtítulo sin cambios */
#inicio .hero-title {
    color: #000000;
    font-weight: 700;
}

#inicio .hero-subtitle {
    color: #555;
}

/* Radar section - destacado con sombra sutil */
#inicio .radar-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #ffffff;
}

/* Radar container - sin borde, solo con sombra muy sutil */
#inicio .radar-container {
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 30px;
    box-shadow: none;
    max-width: 550px;
    margin: 0 auto;
}

/* Canvas del radar */
#inicio #species-radar-chart {
    max-width: 450px !important;
    max-height: 450px !important;
}

/* Responsive */
@media (max-width: 768px) {
    #inicio .hero {
        padding: 48px 20px;
    }
    
    #inicio .radar-section {
        padding: 1.5rem 1rem;
    }
    
    #inicio .radar-container {
        max-width: 400px;
        padding: 20px;
    }
    
    #inicio #species-radar-chart {
        max-width: 350px !important;
        max-height: 350px !important;
    }
}

@media (max-width: 480px) {
    #inicio .hero {
        padding: 32px 15px;
    }
    
    #inicio .radar-section {
        padding: 1rem 0.5rem;
    }
    
    #inicio .radar-container {
        max-width: 320px;
        padding: 15px;
    }
    
    #inicio #species-radar-chart {
        max-width: 280px !important;
        max-height: 280px !important;
    }
}
